mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-17 20:46:24 +13:00

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...
23 lines
721 B
NASM
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) |