Skip to content

Instantly share code, notes, and snippets.

@andrewschultz
Created December 22, 2015 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewschultz/31e625c18f31a6dd1f7d to your computer and use it in GitHub Desktop.
Save andrewschultz/31e625c18f31a6dd1f7d to your computer and use it in GitHub Desktop.
comparison of I6 export for French names vs how it should look (thanks again to Hugo Labrande)
Constant Story "diesel";
Constant Headline "^By A Trizbort User^^^";
Include "Parser";
Include "VerbLib";
Object generateuradiesel "générateur à diesel"
with description
"générateur à diesel",
s_to Cave,
has light;
Object -> generateuradiesel2 "générateur à diesel"
! ideally, no accents in the name, because a lot of players don't write them in their commands - but that's very minor :)
with name 'generateur' 'a//' 'diesel';
Object Cave "Cave"
with description
"",
n_to generateuradiesel,
has light;
Object Thisdochasdifferentfontsforgenerateuradieselacrossthecanvas "This doc has different fonts for générateur à diesel across the canvas."
with description
"",
has light;
[ Initialise;
location = generateuradiesel;
! "^^Your opening paragraph here...^^";
];
Include "Grammar";
Constant Story "diesel";
Constant Headline "^By A Trizbort User^^^";
Include "Parser";
Include "VerbLib";
Object gnrateurdiesel "générateur à diesel"
with description
"générateur à diesel",
s_to Cave,
has light;
Object -> gnrateurdiesel2 "gnrateur diesel"
with name 'gnrateur' 'diesel';
Object Cave "Cave"
with description
"",
n_to gnrateurdiesel,
has light;
Object Thisdochasdifferentfontsforgnrateurdieselacrossthecanvas "This doc has different fonts for générateur à diesel across the canvas."
with description
"",
has light;
[ Initialise;
location = gnrateurdiesel;
! "^^Your opening paragraph here...^^";
];
Include "Grammar";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment