Pokémon RB: Route 3 Guard fix (#2077)
* Pokémon RB: Route 3 Guard fix * Change dexsanity option names * Diglett's Cave warp fix
This commit is contained in:
parent
ca06a4b836
commit
7a494d637b
Binary file not shown.
Binary file not shown.
|
@ -297,8 +297,8 @@ class DexSanity(SpecialRange):
|
|||
range_start = 0
|
||||
range_end = 100
|
||||
special_range_names = {
|
||||
"false": 0,
|
||||
"true": 100
|
||||
"disabled": 0,
|
||||
"full": 100
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -353,9 +353,9 @@ def generate_output(self, output_directory: str):
|
|||
if self.multiworld.old_man[self.player] == "open_viridian_city":
|
||||
data[rom_addresses['Option_Old_Man']] = 0x11
|
||||
data[rom_addresses['Option_Old_Man_Lying']] = 0x15
|
||||
data[rom_addresses['Option_Route3_Guard_A']] = self.multiworld.route_3_condition[self.player].value
|
||||
data[rom_addresses['Option_Route3_Guard_B']] = self.multiworld.route_3_condition[self.player].value
|
||||
if self.multiworld.route_3_condition[self.player] == "open":
|
||||
data[rom_addresses['Option_Route3_Guard_B']] = 0x11
|
||||
data[rom_addresses['Option_Route3_Guard_A']] = 0x11
|
||||
if not self.multiworld.robbed_house_officer[self.player]:
|
||||
data[rom_addresses['Option_Trashed_House_Guard_A']] = 0x15
|
||||
data[rom_addresses['Option_Trashed_House_Guard_B']] = 0x11
|
||||
|
|
Loading…
Reference in New Issue