Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrochu committed Jan 2, 2025
1 parent 9343cb2 commit 4e3ce16
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions worlds/keymasters_keep/games/pokemon_rse_game.py
Original file line number Diff line number Diff line change
Expand Up @@ -1134,11 +1134,11 @@ def encounter_locations_e() -> List[str]:
# "Trainer Hill", # No encounters
]


# Archipelago Options
class PokemonRSEOwnedGames(OptionSet):
"""
Indicates which versions of the games the player owns between Pokémon Ruby/Sapphire/Emerald.
Possible values: 'Ruby', 'Sapphire', 'Emerald'
"""

display_name = "Pokémon Ruby/Sapphire/Emerald Owned Games"
Expand All @@ -1154,7 +1154,6 @@ class PokemonRSEOwnedGames(OptionSet):
class PokemonRSEObjectives(OptionSet):
"""
Indicates which types of trial objectives the player would like to engage in for Pokémon Ruby/Sapphire/Emerald.
Possible values: 'Catching', 'Contests', 'Battles', 'Battle Frontier', 'Shiny Hunting'
"""

display_name = "Pokémon Ruby/Sapphire/Emerald Objective Types"
Expand All @@ -1166,9 +1165,4 @@ class PokemonRSEObjectives(OptionSet):
"Shiny Hunting"
]

default = [
"Catching",
"Contests",
"Battles",
"Battle Frontier",
]
default = valid_keys

0 comments on commit 4e3ce16

Please sign in to comment.