mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-11-23 13:25:32 +13:00
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!)
24 lines
779 B
NASM
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) |