mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-22 14:57:57 +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
25 lines
718 B
NASM
25 lines
718 B
NASM
db DEX_GLACEON ; pokedex id
|
|
|
|
db 65, 60, 110, 65, 130
|
|
; hp atk def spd spc
|
|
|
|
db ICE, ICE ; 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, AURORA_BEAM ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, ICE_BEAM, \
|
|
BLIZZARD, HYPER_BEAM, RAGE, MIMIC, DOUBLE_TEAM, \
|
|
REFLECT, BIDE, SWIFT, SKULL_BASH, REST, \
|
|
SUBSTITUTE
|
|
; end
|
|
|
|
db BANK(VaporeonPicFront)
|
|
assert BANK(VaporeonPicFront) == BANK(VaporeonPicBack)
|