mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-10-16 20:16:29 +13:00

This adds the four new trainer classes as discussed before and updates the leader file while we're at it. Uther is also finally named properly. Lorelei gets her new trainersprite from the CBB scratchpads.
41 lines
632 B
NASM
41 lines
632 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
|
|
; For now Nihon bosses will be here.
|
|
db WALKER
|
|
db KUYE
|
|
db UTHER
|
|
db IMPOSTEROAK
|
|
db AGATHA
|
|
db SIGAL
|
|
db GREEN
|
|
; fallthrough
|
|
KantoGymLeaders:
|
|
db BROCK
|
|
db MISTY
|
|
db LT_SURGE
|
|
db ERIKA
|
|
db JANINE
|
|
db SABRINA
|
|
db BLAINE
|
|
db BLUE
|
|
db -1
|