DEVTOOLS: Add more strings to create_titanic

This commit is contained in:
Paul Gilbert 2017-01-16 07:01:52 -05:00
parent c0047274f0
commit 4a14a56a5c

View file

@ -416,7 +416,7 @@ static const BedheadEntry OFF_RESTING_D_WRONG[1] = {
{ "Any", "Any", "Any", "ClosedWrong", 59, 70 } { "Any", "Any", "Any", "ClosedWrong", 59, 70 }
}; };
static const char *const STRINGS_EN[138] = { static const char *const STRINGS_EN[140] = {
"", "",
"You are standing outside the Pellerator.", "You are standing outside the Pellerator.",
"I'm sorry, you cannot enter this pellerator at present as a bot is in the way.", "I'm sorry, you cannot enter this pellerator at present as a bot is in the way.",
@ -559,10 +559,12 @@ static const char *const STRINGS_EN[138] = {
"Your assigned room: ", "Your assigned room: ",
"A previously assigned room: ", "A previously assigned room: ",
"Saved Chevron: ", "Saved Chevron: ",
"Current location: " "Current location: ",
"A hot",
"A cold"
}; };
static const char *const STRINGS_DE[183] = { static const char *const STRINGS_DE[185] = {
// TODO: Still many strings to translate to German // TODO: Still many strings to translate to German
"", "",
"Sie befinden sich vor dem Pellerator.", "Sie befinden sich vor dem Pellerator.",
@ -723,6 +725,8 @@ static const char *const STRINGS_DE[183] = {
"A previously assigned room: ", "A previously assigned room: ",
"Saved Chevron: ", "Saved Chevron: ",
"Current location: ", "Current location: ",
"A hot",
"A cold",
"Sommer", "Sommer",
"Herbst", "Herbst",
@ -1253,8 +1257,8 @@ void writeData() {
writeStringArray("TEXT/ITEM_NAMES", ITEM_NAMES, 46); writeStringArray("TEXT/ITEM_NAMES", ITEM_NAMES, 46);
writeStringArray("TEXT/ITEM_IDS", ITEM_IDS, 40); writeStringArray("TEXT/ITEM_IDS", ITEM_IDS, 40);
writeStringArray("TEXT/ROOM_NAMES", ROOM_NAMES, 34); writeStringArray("TEXT/ROOM_NAMES", ROOM_NAMES, 34);
writeStringArray("TEXT/STRINGS", STRINGS_EN, 138); writeStringArray("TEXT/STRINGS", STRINGS_EN, 140);
writeStringArray("TEXT/STRINGS/DE", STRINGS_DE, 183); writeStringArray("TEXT/STRINGS/DE", STRINGS_DE, 185);
const int TEXT_PHRASES[3] = { 0x61D3C8, 0x618340, 0x61B1E0 }; const int TEXT_PHRASES[3] = { 0x61D3C8, 0x618340, 0x61B1E0 };
const int TEXT_REPLACEMENTS1[3] = { 0x61D9B0, 0x61C788, 0x61B7C8 }; const int TEXT_REPLACEMENTS1[3] = { 0x61D9B0, 0x61C788, 0x61B7C8 };
const int TEXT_REPLACEMENTS2[3] = { 0x61DD20, 0x61CAF8, 0x61BB38 }; const int TEXT_REPLACEMENTS2[3] = { 0x61DD20, 0x61CAF8, 0x61BB38 };