[Pokémon Red and Blue] more improvements (#1208)

* Generated patch includes base patch

* location ID range start match item ID start

* remove unused import

* Change Oak's Aides defaults to be more sync-friendly
This commit is contained in:
Alchav
2022-11-06 03:07:41 -05:00
committed by GitHub
parent 61232ca756
commit d10bb3c6c1
5 changed files with 19 additions and 36 deletions

View File

@@ -151,7 +151,8 @@ class FreeFlyLocation(Toggle):
class OaksAidRt2(Range):
"""Number of Pokemon registered in the Pokedex required to receive the item from Oak's Aide on Route 2"""
"""Number of Pokemon registered in the Pokedex required to receive the item from Oak's Aide on Route 2.
Vanilla is 10."""
display_name = "Oak's Aide Route 2"
range_start = 0
range_end = 80
@@ -159,19 +160,21 @@ class OaksAidRt2(Range):
class OaksAidRt11(Range):
"""Number of Pokemon registered in the Pokedex required to receive the item from Oak's Aide on Route 11"""
"""Number of Pokemon registered in the Pokedex required to receive the item from Oak's Aide on Route 11.
Vanilla is 30."""
display_name = "Oak's Aide Route 11"
range_start = 0
range_end = 80
default = 30
default = 20
class OaksAidRt15(Range):
"""Number of Pokemon registered in the Pokedex required to receive the item from Oak's Aide on Route 15"""
"""Number of Pokemon registered in the Pokedex required to receive the item from Oak's Aide on Route 15.
Vanilla is 50."""
display_name = "Oak's Aide Route 15"
range_start = 0
range_end = 80
default = 50
default = 30
class ExpModifier(SpecialRange):