kep-hack/data/pokemon/base_stats/arcanineh.asm
MementoMartha c9b01f2c64 A few minor changes
Reworks the Pokedex to accommodate for the regional forms, changes a title screen graphic, and cleans up a few base stat files (will do the rest later). Also revised a few dex entries (special thanks to my girlfriend for Gyopin's!)
2023-03-29 11:35:41 +01:00

24 lines
779 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, TAKE_DOWN, DOUBLE_EDGE, HYPER_BEAM, \
RAGE, DRAGON_RAGE, DIG, MIMIC, DOUBLE_TEAM, \
REFLECT, BIDE, FIRE_BLAST, SWIFT, SKULL_BASH, \
REST, ROCK_SLIDE, SUBSTITUTE
; end
db BANK(ArcanineHPicFront)
assert BANK(ArcanineHPicFront) == BANK(ArcanineHPicBack)