mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Pokemon Emerald: Fix possible dexsanity/legendary hunt softlock (#3443)
* Pokemon Emerald: Remove mirage tower from allowed dexsanity maps * Pokemon Emerald: Prevent placing wailord/relicanth in out of logic maps * Pokemon Emerald: Clarify docstring Co-authored-by: Exempt-Medic <60412657+Exempt-Medic@users.noreply.github.com> * Pokemon Emerald: Update changelog --------- Co-authored-by: Exempt-Medic <60412657+Exempt-Medic@users.noreply.github.com>
This commit is contained in:
@@ -25,13 +25,20 @@ IGNORABLE_MAPS = {
|
||||
}
|
||||
"""These maps exist but don't show up in the rando or are unused, and so should be discarded"""
|
||||
|
||||
POSTGAME_MAPS = {
|
||||
OUT_OF_LOGIC_MAPS = {
|
||||
"MAP_DESERT_UNDERPASS",
|
||||
"MAP_SAFARI_ZONE_NORTHEAST",
|
||||
"MAP_SAFARI_ZONE_SOUTHEAST",
|
||||
"MAP_METEOR_FALLS_STEVENS_CAVE",
|
||||
"MAP_MIRAGE_TOWER_1F",
|
||||
"MAP_MIRAGE_TOWER_2F",
|
||||
"MAP_MIRAGE_TOWER_3F",
|
||||
"MAP_MIRAGE_TOWER_4F",
|
||||
}
|
||||
"""These maps have encounters and are locked behind beating the champion. Those encounter slots should be ignored for logical access to a species."""
|
||||
"""
|
||||
These maps have encounters and are locked behind beating the champion or are missable.
|
||||
Those encounter slots should be ignored for logical access to a species.
|
||||
"""
|
||||
|
||||
NUM_REAL_SPECIES = 386
|
||||
|
||||
|
Reference in New Issue
Block a user