diff options
author | entrpntr <entrpntr@gmail.com> | 2020-04-19 21:36:23 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-04-19 21:36:23 -0400 |
commit | 0def3b67fa0a64bc2e2778c99c53e1a77cbf302c (patch) | |
tree | c70beb8a39f122cad0753a2f4974ac6d1712e3f6 /data/trainers | |
parent | 7b63a9c032a130a08fc554b9b6790fe47d170530 (diff) |
Start adding engine/battle/core.asm.
Diffstat (limited to 'data/trainers')
-rw-r--r-- | data/trainers/leaders.asm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/data/trainers/leaders.asm b/data/trainers/leaders.asm new file mode 100644 index 00000000..a41f641e --- /dev/null +++ b/data/trainers/leaders.asm @@ -0,0 +1,32 @@ +; 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 |