mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-16 12:06:25 +13:00
25 lines
721 B
NASM
25 lines
721 B
NASM
db DEX_EXEGGCUTE ; pokedex id
|
|
|
|
db 60, 40, 80, 40, 60
|
|
; hp atk def spd spc
|
|
|
|
db GRASS, PSYCHIC_TYPE ; type
|
|
db 90 ; catch rate
|
|
db 98 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/exeggcute.pic", 0, 1 ; sprite dimensions
|
|
dw ExeggcutePicFront, ExeggcutePicBack
|
|
|
|
db BARRAGE, HYPNOSIS, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_SLOW ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, TAKE_DOWN, DOUBLE_EDGE, RAGE, PSYCHIC_M, \
|
|
TELEPORT, MIMIC, DOUBLE_TEAM, REFLECT, BIDE, \
|
|
SELFDESTRUCT, EGG_BOMB, REST, PSYWAVE, EXPLOSION, \
|
|
SUBSTITUTE
|
|
; end
|
|
|
|
db BANK(ExeggcutePicFront)
|
|
assert BANK(ExeggcutePicFront) == BANK(ExeggcutePicBack)
|