Pokemon Emerald: Change Ho-Oh capitalization (#3069)
This commit is contained in:
parent
c534cb79b5
commit
cf59cfaad0
|
@ -98,7 +98,7 @@ LEGENDARY_NAMES = {
|
||||||
"Registeel": "REGISTEEL",
|
"Registeel": "REGISTEEL",
|
||||||
"Mew": "MEW",
|
"Mew": "MEW",
|
||||||
"Deoxys": "DEOXYS",
|
"Deoxys": "DEOXYS",
|
||||||
"Ho-oh": "HO_OH",
|
"Ho-Oh": "HO_OH",
|
||||||
"Lugia": "LUGIA",
|
"Lugia": "LUGIA",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -741,7 +741,7 @@ def _init() -> None:
|
||||||
("SPECIES_PUPITAR", "Pupitar", 247),
|
("SPECIES_PUPITAR", "Pupitar", 247),
|
||||||
("SPECIES_TYRANITAR", "Tyranitar", 248),
|
("SPECIES_TYRANITAR", "Tyranitar", 248),
|
||||||
("SPECIES_LUGIA", "Lugia", 249),
|
("SPECIES_LUGIA", "Lugia", 249),
|
||||||
("SPECIES_HO_OH", "Ho-oh", 250),
|
("SPECIES_HO_OH", "Ho-Oh", 250),
|
||||||
("SPECIES_CELEBI", "Celebi", 251),
|
("SPECIES_CELEBI", "Celebi", 251),
|
||||||
("SPECIES_TREECKO", "Treecko", 252),
|
("SPECIES_TREECKO", "Treecko", 252),
|
||||||
("SPECIES_GROVYLE", "Grovyle", 253),
|
("SPECIES_GROVYLE", "Grovyle", 253),
|
||||||
|
|
|
@ -2877,7 +2877,7 @@
|
||||||
"tags": ["Pokedex"]
|
"tags": ["Pokedex"]
|
||||||
},
|
},
|
||||||
"POKEDEX_REWARD_250": {
|
"POKEDEX_REWARD_250": {
|
||||||
"label": "Pokedex - Ho-oh",
|
"label": "Pokedex - Ho-Oh",
|
||||||
"tags": ["Pokedex"]
|
"tags": ["Pokedex"]
|
||||||
},
|
},
|
||||||
"POKEDEX_REWARD_251": {
|
"POKEDEX_REWARD_251": {
|
||||||
|
|
|
@ -246,7 +246,7 @@ class AllowedLegendaryHuntEncounters(OptionSet):
|
||||||
"Regirock"
|
"Regirock"
|
||||||
"Registeel"
|
"Registeel"
|
||||||
"Regice"
|
"Regice"
|
||||||
"Ho-oh"
|
"Ho-Oh"
|
||||||
"Lugia"
|
"Lugia"
|
||||||
"Deoxys"
|
"Deoxys"
|
||||||
"Mew"
|
"Mew"
|
||||||
|
@ -261,7 +261,7 @@ class AllowedLegendaryHuntEncounters(OptionSet):
|
||||||
"Regirock",
|
"Regirock",
|
||||||
"Registeel",
|
"Registeel",
|
||||||
"Regice",
|
"Regice",
|
||||||
"Ho-oh",
|
"Ho-Oh",
|
||||||
"Lugia",
|
"Lugia",
|
||||||
"Deoxys",
|
"Deoxys",
|
||||||
"Mew",
|
"Mew",
|
||||||
|
|
|
@ -56,7 +56,7 @@ def set_rules(world: "PokemonEmeraldWorld") -> None:
|
||||||
"Registeel": "REGISTEEL",
|
"Registeel": "REGISTEEL",
|
||||||
"Mew": "MEW",
|
"Mew": "MEW",
|
||||||
"Deoxys": "DEOXYS",
|
"Deoxys": "DEOXYS",
|
||||||
"Ho-oh": "HO_OH",
|
"Ho-Oh": "HO_OH",
|
||||||
"Lugia": "LUGIA",
|
"Lugia": "LUGIA",
|
||||||
}.items()
|
}.items()
|
||||||
if name in world.options.allowed_legendary_hunt_encounters.value
|
if name in world.options.allowed_legendary_hunt_encounters.value
|
||||||
|
|
Loading…
Reference in New Issue