Pokemon Emerald: Clarify death link and start inventory descriptions (#4517)

This commit is contained in:
Bryce Wilson
2025-01-27 07:24:26 -08:00
committed by GitHub
parent 57a571cc11
commit c43233120a
2 changed files with 27 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ from .locations import (PokemonEmeraldLocation, create_location_label_to_id_map,
set_free_fly, set_legendary_cave_entrances)
from .opponents import randomize_opponent_parties
from .options import (Goal, DarkCavesRequireFlash, HmRequirements, ItemPoolType, PokemonEmeraldOptions,
RandomizeWildPokemon, RandomizeBadges, RandomizeHms, NormanRequirement)
RandomizeWildPokemon, RandomizeBadges, RandomizeHms, NormanRequirement, OPTION_GROUPS)
from .pokemon import (get_random_move, get_species_id_by_label, randomize_abilities, randomize_learnsets,
randomize_legendary_encounters, randomize_misc_pokemon, randomize_starters,
randomize_tm_hm_compatibility,randomize_types, randomize_wild_encounters)
@@ -63,6 +63,7 @@ class PokemonEmeraldWebWorld(WebWorld):
)
tutorials = [setup_en, setup_es, setup_sv]
option_groups = OPTION_GROUPS
class PokemonEmeraldSettings(settings.Group):