mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-22 06:47:58 +13:00

Adds the five eeveelutions we don't have, evo items for Glaceon and Sylveon, fixes Rhyperior's dex entry, renamed the Super Rod to Fishing Rod, and commented out the OW Crocky/Kabutops for now
24 lines
695 B
NASM
24 lines
695 B
NASM
db DEX_LEAFEON ; pokedex id
|
|
|
|
db 65, 110, 130, 95, 65
|
|
; hp atk def spd spc
|
|
|
|
db GRASS, GRASS ; type
|
|
db 45 ; catch rate
|
|
db 196 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/vaporeon.pic", 0, 1 ; sprite dimensions
|
|
dw VaporeonPicFront, VaporeonPicBack
|
|
|
|
db TACKLE, SAND_ATTACK, QUICK_ATTACK, ABSORB ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, HYPER_BEAM, \
|
|
RAGE, MEGA_DRAIN, MIMIC, DOUBLE_TEAM, REFLECT, \
|
|
BIDE, SWIFT, SKULL_BASH, REST, SUBSTITUTE
|
|
; end
|
|
|
|
db BANK(VaporeonPicFront)
|
|
assert BANK(VaporeonPicFront) == BANK(VaporeonPicBack)
|