Skip to content

Commit

Permalink
Pokemon RB: Add new options to slot_data (ArchipelagoMW#3538)
Browse files Browse the repository at this point in the history
Added require_pokedex, blind_trainers, and area_1_to_1 mapping, which would be helpful to the poptracker packs to accurately reflect the checks available to players.
  • Loading branch information
coveleski authored and GameWyrm committed Jul 4, 2024
1 parent ad3a2aa commit e2cf679
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions worlds/pokemon_rb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -661,6 +661,9 @@ def fill_slot_data(self) -> dict:
"dark_rock_tunnel_logic": self.multiworld.dark_rock_tunnel_logic[self.player].value,
"split_card_key": self.multiworld.split_card_key[self.player].value,
"all_elevators_locked": self.multiworld.all_elevators_locked[self.player].value,
"require_pokedex": self.multiworld.require_pokedex[self.player].value,
"area_1_to_1_mapping": self.multiworld.area_1_to_1_mapping[self.player].value,
"blind_trainers": self.multiworld.blind_trainers[self.player].value,

}

Expand Down

0 comments on commit e2cf679

Please sign in to comment.