You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
Move battle engine data into data/
IsJohtoGymLeader → IsGymLeader
This commit is contained in:
9
data/moves/effects_priorities.asm
Normal file
9
data/moves/effects_priorities.asm
Normal file
@@ -0,0 +1,9 @@
|
||||
MoveEffectPriorities: ; 3c5df
|
||||
db EFFECT_PROTECT, 3
|
||||
db EFFECT_ENDURE, 3
|
||||
db EFFECT_PRIORITY_HIT, 2
|
||||
db EFFECT_FORCE_SWITCH, 0
|
||||
db EFFECT_COUNTER, 0
|
||||
db EFFECT_MIRROR_COAT, 0
|
||||
db -1
|
||||
; 3c5ec
|
32
data/trainers/leaders.asm
Normal file
32
data/trainers/leaders.asm
Normal file
@@ -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
|
31
data/wild/treemons_asleep.asm
Normal file
31
data/wild/treemons_asleep.asm
Normal file
@@ -0,0 +1,31 @@
|
||||
; Used by CheckSleepingTreeMon
|
||||
|
||||
AsleepTreeMonsNite:
|
||||
db CATERPIE
|
||||
db METAPOD
|
||||
db BUTTERFREE
|
||||
db WEEDLE
|
||||
db KAKUNA
|
||||
db BEEDRILL
|
||||
db SPEAROW
|
||||
db EKANS
|
||||
db EXEGGCUTE
|
||||
db LEDYBA
|
||||
db AIPOM
|
||||
db -1 ; end
|
||||
|
||||
AsleepTreeMonsDay:
|
||||
db VENONAT
|
||||
db HOOTHOOT
|
||||
db NOCTOWL
|
||||
db SPINARAK
|
||||
db HERACROSS
|
||||
db -1 ; end
|
||||
|
||||
AsleepTreeMonsMorn:
|
||||
db VENONAT
|
||||
db HOOTHOOT
|
||||
db NOCTOWL
|
||||
db SPINARAK
|
||||
db HERACROSS
|
||||
db -1 ; end
|
Reference in New Issue
Block a user