kep-hack/data/pokemon/base_stats/toedscruel.asm
MementoMartha 602a7386d4 Toedscools and Toedscruels and Wigletts, oh my!
Also reworded some of the dex entries a bit.
2022-12-11 23:21:03 +00:00

25 lines
756 B
NASM

db DEX_TOEDSCRUEL ; pokedex id
db 80, 70, 65, 100, 120
; hp atk def spd spc
db GROUND, GRASS ; type
db 60 ; catch rate
db 205 ; base exp
INCBIN "gfx/pokemon/front/toedscruel.pic", 0, 1 ; sprite dimensions
dw ToedscruelPicFront, ToedscruelPicBack
db ABSORB, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_SLOW ; growth rate
; tm/hm learnset
tmhm SWORDS_DANCE, TOXIC, TAKE_DOWN, DOUBLE_EDGE, HYPER_BEAM, \
RAGE, MEGA_DRAIN, SOLARBEAM, EARTHQUAKE, FISSURE, \
DIG, MIMIC, DOUBLE_TEAM, REFLECT, BIDE, \
SKULL_BASH, REST, SUBSTITUTE, CUT
; end
db BANK(ToedscruelPicFront)
assert BANK(ToedscruelPicFront) == BANK(ToedscruelPicBack)