Skip to content

Commit e391506

Browse files
ZunaweEmilyV99
authored andcommitted
Pokemon Emerald: Change Ho-Oh capitalization (ArchipelagoMW#3069)
1 parent fb2eeb4 commit e391506

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

worlds/pokemon_emerald/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"Registeel": "REGISTEEL",
9999
"Mew": "MEW",
100100
"Deoxys": "DEOXYS",
101-
"Ho-oh": "HO_OH",
101+
"Ho-Oh": "HO_OH",
102102
"Lugia": "LUGIA",
103103
}
104104

worlds/pokemon_emerald/data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ def _init() -> None:
741741
("SPECIES_PUPITAR", "Pupitar", 247),
742742
("SPECIES_TYRANITAR", "Tyranitar", 248),
743743
("SPECIES_LUGIA", "Lugia", 249),
744-
("SPECIES_HO_OH", "Ho-oh", 250),
744+
("SPECIES_HO_OH", "Ho-Oh", 250),
745745
("SPECIES_CELEBI", "Celebi", 251),
746746
("SPECIES_TREECKO", "Treecko", 252),
747747
("SPECIES_GROVYLE", "Grovyle", 253),

worlds/pokemon_emerald/data/locations.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2877,7 +2877,7 @@
28772877
"tags": ["Pokedex"]
28782878
},
28792879
"POKEDEX_REWARD_250": {
2880-
"label": "Pokedex - Ho-oh",
2880+
"label": "Pokedex - Ho-Oh",
28812881
"tags": ["Pokedex"]
28822882
},
28832883
"POKEDEX_REWARD_251": {

worlds/pokemon_emerald/options.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ class AllowedLegendaryHuntEncounters(OptionSet):
246246
"Regirock"
247247
"Registeel"
248248
"Regice"
249-
"Ho-oh"
249+
"Ho-Oh"
250250
"Lugia"
251251
"Deoxys"
252252
"Mew"
@@ -261,7 +261,7 @@ class AllowedLegendaryHuntEncounters(OptionSet):
261261
"Regirock",
262262
"Registeel",
263263
"Regice",
264-
"Ho-oh",
264+
"Ho-Oh",
265265
"Lugia",
266266
"Deoxys",
267267
"Mew",

worlds/pokemon_emerald/rules.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def defeated_n_gym_leaders(state: CollectionState, n: int) -> bool:
5656
"Registeel": "REGISTEEL",
5757
"Mew": "MEW",
5858
"Deoxys": "DEOXYS",
59-
"Ho-oh": "HO_OH",
59+
"Ho-Oh": "HO_OH",
6060
"Lugia": "LUGIA",
6161
}.items()
6262
if name in world.options.allowed_legendary_hunt_encounters.value

0 commit comments

Comments
 (0)