Rearrangement of the currencies in randomizer.cpp

This commit is contained in:
Extloga 2025-04-07 16:51:57 +02:00 committed by GitHub
commit 6ef2cc8594
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -65,7 +65,7 @@ const std::string Randomizer::NaviRandoMessageTableID = "RandomizerNavi";
const std::string Randomizer::IceTrapRandoMessageTableID = "RandomizerIceTrap";
const std::string Randomizer::randoMiscHintsTableID = "RandomizerMiscHints";
static const char* englishRupeeNames[175] = {
static const char* englishRupeeNames[180] = {
"[P]",
"Bad RNG Rolls",
"Bananas",
@ -114,7 +114,9 @@ static const char* englishRupeeNames[175] = {
"Dollarydoos",
"Dosh",
"Doubloons",
"Drakes",
"Dwarfbucks",
"ECU",
"Elexit",
"Emeralds",
"Energon",
@ -178,6 +180,7 @@ static const char* englishRupeeNames[175] = {
"Nuyen",
"Orbs",
"Ore",
"Pence",
"Pix",
"Pixels",
"Plastyks",
@ -190,6 +193,7 @@ static const char* englishRupeeNames[175] = {
"Pounds",
"Power Pellets",
"Primogems",
"Rand",
"Réals",
"Refined Metal",
"Remote Mines",
@ -203,6 +207,7 @@ static const char* englishRupeeNames[175] = {
"Runite Ore",
"Rupees",
"Saint Quartz",
"Sapphires",
"Septims",
"Shekels",
"Shillings",
@ -243,24 +248,120 @@ static const char* englishRupeeNames[175] = {
"Zorkmids",
};
static const char* germanRupeeNames[65] = {
"Bananen", "Bitcoin", "Bonbons", "Bratwürste", "Brause UFOs", "Brötchen", "Cent", "Diamanten",
"Diridari", "Dogecoin", "ECU", "Elexit", "Erz", "Erzbrocken", "Euro", "EXP",
"Forint", "Franken", "Freunde", "Gil", "Gold", "Groschen", "Gulden", "Gummibären",
"Heller", "Juwelen", "Karolin", "Kartoffeln", "Kies", "Knete", "Knochen", "Kohle",
"Kraniche", "Kreuzer", "Kronen", "Kronkorken", "Kröten", "Mark", "Mäuse", "Monde",
"Moorhühner", "Moos", "Münzen", "Penunze", "Pesa", "Pfandflaschen", "Pfennig", "Pfund",
"Pilze", "Plastiks", "Pokédollar", "Radieschen", "Rappen", "Rubine", "Saphire", "Schilling",
"Seelen", "Smaragde", "Steine", "Sterne", "Sternis", "Tael", "Taler", "Wagenchips",
static const char* germanRupeeNames[70] = {
"Bananen",
"Bitcoin",
"Bonbons",
"Bratwürste",
"Brause UFOs",
"Brötchen",
"Cent",
"Diamanten",
"Diridari",
"Dogecoin",
"Dollar",
"Draken",
"ECU",
"Elexit",
"Erz",
"Erzbrocken",
"Euro",
"EXP",
"Forint",
"Franken",
"Freunde",
"Gil",
"Gold",
"Groschen",
"Gulden",
"Gummibären",
"Heller",
"Juwelen",
"Karolin",
"Kartoffeln",
"Kies",
"Knete",
"Knochen",
"Kohle",
"Kraniche",
"Kreuzer",
"Kronen",
"Kronkorken",
"Kröten",
"Mark",
"Mäuse",
"Monde",
"Moorhühner",
"Moos",
"Münzen",
"Penunze",
"Pesa",
"Pfandflaschen",
"Pfennig",
"Pfund",
"Pilze",
"Plastiks",
"Pokédollar",
"Radieschen",
"Rand",
"Rappen",
"Rubine",
"Saphire",
"Schilling",
"Seelen",
"Septime",
"Smaragde",
"Steine",
"Sterne",
"Sternis",
"Tael",
"Taler",
"Wagenchips",
"Yen",
"Zenny"
};
static const char* frenchRupeeNames[40] = {
"Anneaux", "Baguettes", "Balles", "Bananes", "Bitcoin", "Blés", "Bling", "Capsules",
"Centimes", "Champignons", "Clochettes", "Crédits", "Croissants", "Diamants", "Dogecoin", "Dollars",
"Émeraudes", "Éthers", "Étoiles", "Euros", "Florens", "Francs", "Galds", "Gils",
"Grouses", "Halos", "Joyaux", "Lunes", "Mailles", "Munnies", "Orbes", "Orens",
"Pépètes", "Pièces", "Plastyks", "Pokédollars", "Pokémon", "Radis", "Rubis", "Zennies"
"Anneaux",
"Baguettes",
"Balles",
"Bananes",
"Bitcoin",
"Blés",
"Bling",
"Capsules",
"Centimes",
"Champignons",
"Clochettes",
"Crédits",
"Croissants",
"Diamants",
"Dogecoin",
"Dollars",
"Émeraudes",
"Éthers",
"Étoiles",
"Euros",
"Florens",
"Francs",
"Galds",
"Gils",
"Grouses",
"Halos",
"Joyaux",
"Lunes",
"Mailles",
"Munnies",
"Orbes",
"Orens",
"Pépètes",
"Pièces",
"Plastyks",
"Pokédollars",
"Pokémon",
"Radis",
"Rubis",
"Zennies"
};
Randomizer::Randomizer() {