kep-hack/data/pokemon/base_stats/hitmontop.asm
MementoMartha 8ee7e59d47 finishing some more pokemon
plus a few minor tweaks as well
2022-09-03 16:19:29 +01:00

25 lines
786 B
NASM

db DEX_HITMONTOP ; pokedex id
db 50, 95, 95, 70, 35
; hp atk def spd spc
db FIGHTING, FIGHTING ; type
db 45 ; catch rate
db 138 ; base exp
INCBIN "gfx/pokemon/front/hitmontop.pic", 0, 1 ; sprite dimensions
dw HitmontopPicFront, HitmontopPicBack
db ROLLING_KICK, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm MEGA_PUNCH, MEGA_KICK, TOXIC, BODY_SLAM, TAKE_DOWN, \
DOUBLE_EDGE, SUBMISSION, COUNTER, SEISMIC_TOSS, RAGE, \
DIG, MIMIC, DOUBLE_TEAM, BIDE, METRONOME, \
SWIFT, SKULL_BASH, REST, SUBSTITUTE, STRENGTH
; end
db BANK(HitmontopPicFront)
assert BANK(HitmontopPicFront) == BANK(HitmontopPicBack)