mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
5a73a62d9b
IsJohtoGymLeader → IsGymLeader
32 lines
392 B
NASM
32 lines
392 B
NASM
; 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
|