mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
[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:
@@ -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):
|
||||
|
Reference in New Issue
Block a user