kep-hack/data/pokemon/base_stats/leafeon.asm
emaskyesmogon 5944210393 Eevees and More
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
2022-09-01 08:37:35 -06:00

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)