mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-09-16 18:20:50 +12:00

This gives Sepia City all of its locations. The pagoda uses references to the Five-Story Pagoda story from 1891, with Sages using various 成语 translated into English. This also adds the Elder class, assigning it to Li and (now) Roen. The Elder in the pagoda is not yet battle-able as I haven't really fit anything into the story. No cutscenes, etc, it's all too early.
100 lines
4 KiB
NASM
100 lines
4 KiB
NASM
; What music plays when a trainer notices you
|
|
|
|
TrainerEncounterMusic::
|
|
; entries correspond to trainer classes (see constants/trainer_constants.asm)
|
|
table_width 1, TrainerEncounterMusic
|
|
db MUSIC_HIKER_ENCOUNTER ; none
|
|
db MUSIC_YOUNGSTER_ENCOUNTER ; falkner
|
|
db MUSIC_LASS_ENCOUNTER ; whitney
|
|
db MUSIC_YOUNGSTER_ENCOUNTER ; bugsy
|
|
db MUSIC_OFFICER_ENCOUNTER ; morty
|
|
db MUSIC_OFFICER_ENCOUNTER ; pryce
|
|
db MUSIC_LASS_ENCOUNTER ; jasmine
|
|
db MUSIC_OFFICER_ENCOUNTER ; chuck
|
|
db MUSIC_BEAUTY_ENCOUNTER ; clair
|
|
db MUSIC_RIVAL_ENCOUNTER ; rival1
|
|
db MUSIC_HIKER_ENCOUNTER ; pokemon_prof
|
|
db MUSIC_HIKER_ENCOUNTER ; will
|
|
db MUSIC_HIKER_ENCOUNTER ; cal
|
|
db MUSIC_OFFICER_ENCOUNTER ; bruno
|
|
db MUSIC_HIKER_ENCOUNTER ; karen
|
|
db MUSIC_HIKER_ENCOUNTER ; koga
|
|
db MUSIC_OFFICER_ENCOUNTER ; champion
|
|
db MUSIC_YOUNGSTER_ENCOUNTER ; brock
|
|
db MUSIC_LASS_ENCOUNTER ; misty
|
|
db MUSIC_OFFICER_ENCOUNTER ; lt_surge
|
|
db MUSIC_ROCKET_ENCOUNTER ; scientist
|
|
db MUSIC_OFFICER_ENCOUNTER ; erika
|
|
db MUSIC_YOUNGSTER_ENCOUNTER ; youngster
|
|
db MUSIC_YOUNGSTER_ENCOUNTER ; schoolboy
|
|
db MUSIC_YOUNGSTER_ENCOUNTER ; bird_keeper
|
|
db MUSIC_LASS_ENCOUNTER ; lass
|
|
db MUSIC_LASS_ENCOUNTER ; janine
|
|
db MUSIC_HIKER_ENCOUNTER ; cooltrainerm
|
|
db MUSIC_BEAUTY_ENCOUNTER ; cooltrainerf
|
|
db MUSIC_BEAUTY_ENCOUNTER ; beauty
|
|
db MUSIC_POKEMANIAC_ENCOUNTER ; pokemaniac
|
|
db MUSIC_ROCKET_ENCOUNTER ; gruntm
|
|
db MUSIC_HIKER_ENCOUNTER ; gentleman
|
|
db MUSIC_BEAUTY_ENCOUNTER ; skier
|
|
db MUSIC_BEAUTY_ENCOUNTER ; teacher
|
|
db MUSIC_BEAUTY_ENCOUNTER ; sabrina
|
|
db MUSIC_YOUNGSTER_ENCOUNTER ; bug_catcher
|
|
db MUSIC_HIKER_ENCOUNTER ; fisher
|
|
db MUSIC_HIKER_ENCOUNTER ; swimmerm
|
|
db MUSIC_BEAUTY_ENCOUNTER ; swimmerf
|
|
db MUSIC_HIKER_ENCOUNTER ; sailor
|
|
db MUSIC_POKEMANIAC_ENCOUNTER ; super_nerd
|
|
db MUSIC_RIVAL_ENCOUNTER ; rival2
|
|
db MUSIC_HIKER_ENCOUNTER ; guitarist
|
|
db MUSIC_HIKER_ENCOUNTER ; hiker
|
|
db MUSIC_HIKER_ENCOUNTER ; biker
|
|
db MUSIC_OFFICER_ENCOUNTER ; blaine
|
|
db MUSIC_POKEMANIAC_ENCOUNTER ; burglar
|
|
db MUSIC_HIKER_ENCOUNTER ; firebreather
|
|
db MUSIC_POKEMANIAC_ENCOUNTER ; juggler
|
|
db MUSIC_HIKER_ENCOUNTER ; blackbelt_t
|
|
db MUSIC_ROCKET_ENCOUNTER ; executivem
|
|
db MUSIC_YOUNGSTER_ENCOUNTER ; psychic_t
|
|
db MUSIC_LASS_ENCOUNTER ; picnicker
|
|
db MUSIC_YOUNGSTER_ENCOUNTER ; camper
|
|
db MUSIC_ROCKET_ENCOUNTER ; executivef
|
|
db MUSIC_SAGE_ENCOUNTER ; sage
|
|
db MUSIC_SAGE_ENCOUNTER ; medium
|
|
db MUSIC_HIKER_ENCOUNTER ; boarder
|
|
db MUSIC_HIKER_ENCOUNTER ; pokefanm
|
|
db MUSIC_KIMONO_ENCOUNTER ; kimono_girl
|
|
db MUSIC_LASS_ENCOUNTER ; twins
|
|
db MUSIC_BEAUTY_ENCOUNTER ; pokefanf
|
|
db MUSIC_HIKER_ENCOUNTER ; red
|
|
db MUSIC_RIVAL_ENCOUNTER ; blue
|
|
db MUSIC_HIKER_ENCOUNTER ; officer
|
|
db MUSIC_ROCKET_ENCOUNTER ; gruntf
|
|
db MUSIC_HIKER_ENCOUNTER ; mysticalman
|
|
db MUSIC_SAGE_ENCOUNTER ; channeler
|
|
db MUSIC_HIKER_ENCOUNTER ; cue ball
|
|
db MUSIC_HIKER_ENCOUNTER ; engineer
|
|
db MUSIC_HIKER_ENCOUNTER ; rocker
|
|
db MUSIC_HIKER_ENCOUNTER ; tamer
|
|
db MUSIC_HIKER_ENCOUNTER ; firefighter
|
|
db MUSIC_HIKER_ENCOUNTER ; teacherm
|
|
db MUSIC_LASS_ENCOUNTER ; painter
|
|
db MUSIC_HIKER_ENCOUNTER ; soldier
|
|
db MUSIC_HIKER_ENCOUNTER ; sportsman
|
|
db MUSIC_ROCKET_ENCOUNTER ; fossil1
|
|
db MUSIC_ROCKET_ENCOUNTER ; fossil2
|
|
db MUSIC_OFFICER_ENCOUNTER ; WALKER
|
|
db MUSIC_BEAUTY_ENCOUNTER ; LORELEI
|
|
db MUSIC_OFFICER_ENCOUNTER ; South Guy
|
|
db MUSIC_POKEMANIAC_ENCOUNTER ; IMPOSTOROAK
|
|
db MUSIC_SAGE_ENCOUNTER ; AGATHA
|
|
db MUSIC_ROCKET_ENCOUNTER ; GIOVANNI1
|
|
db MUSIC_ROCKET_ENCOUNTER ; GIOVANNI3
|
|
db MUSIC_OFFICER_ENCOUNTER ; GREEN
|
|
db MUSIC_OFFICER_ENCOUNTER ; KURT
|
|
db MUSIC_ROCKET_ENCOUNTER ; ARIANA
|
|
db MUSIC_ROCKET_ENCOUNTER ; ARCHER
|
|
db MUSIC_OFFICER_ENCOUNTER ; PROF.BLUE
|
|
db MUSIC_SAGE_ENCOUNTER ; ELDER
|
|
assert_table_length NUM_TRAINER_CLASSES + 1
|