kep-hack/data/pokemon/base_stats/arcanineh.asm
May Evans 243afabb19 Base stat files for regional formes
Done up to Mime G, just needs Tauros breeds and it's done.

Obviously need to do the rest of the stuff that comes with them...
2023-03-06 13:22:36 +00:00

23 lines
721 B
NASM

db DEX_ARCANINE_H ; pokedex id
db 95, 115, 80, 90, 80
; hp atk def spd spc
db FIRE, ROCK ; type
db 75 ; catch rate
db 213 ; base exp
INCBIN "gfx/pokemon/front/arcanineh.pic", 0, 1 ; sprite dimensions
dw ArcanineHPicFront, ArcanineHPicBack
db FIRE_BLAST, ROCK_SLIDE, EARTHQUAKE, AGILITY ; level 1 learnset, trainer consistency with arc
db GROWTH_SLOW ; growth rate
; tm/hm learnset
tmhm TOXIC, BODY_SLAM, DOUBLE_EDGE, RAGE, DRAGON_RAGE, \
DIG, MIMIC, DOUBLE_TEAM, REFLECT, BIDE, \
FIRE_BLAST, SWIFT, SKULL_BASH, REST, SUBSTITUTE
; end
db BANK(ArcanineHPicFront)
assert BANK(ArcanineHPicFront) == BANK(ArcanineHPicBack)