mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
5a73a62d9b
IsJohtoGymLeader → IsGymLeader
33 lines
516 B
NASM
33 lines
516 B
NASM
; These lists determine the battle music and victory music, and whether to
|
|
; award HAPPINESS_GYMBATTLE for winning.
|
|
|
|
; Note: CHAMPION and RED are unused for battle music checks, since they are
|
|
; accounted for prior to the list check.
|
|
|
|
GymLeaders:
|
|
db FALKNER
|
|
db WHITNEY
|
|
db BUGSY
|
|
db MORTY
|
|
db PRYCE
|
|
db JASMINE
|
|
db CHUCK
|
|
db CLAIR
|
|
db WILL
|
|
db BRUNO
|
|
db KAREN
|
|
db KOGA
|
|
db CHAMPION
|
|
db RED
|
|
; fallthrough
|
|
KantoGymLeaders:
|
|
db BROCK
|
|
db MISTY
|
|
db LT_SURGE
|
|
db ERIKA
|
|
db JANINE
|
|
db SABRINA
|
|
db BLAINE
|
|
db BLUE
|
|
db -1
|