kep-hack/data/pokemon/base_stats/sylveon.asm
Martha Schilling 5c18ca9f75 Initial Citrine City music
- Citrine City uses its own music track, being a revamped version of the unused trading music that was thought to be a town theme for several years. Could still use some work though.

- Improved Crocky's sprite a little, giving it the proper dimensions and improving the hairstyle a tiny bit

- Fixed an issue with Sylveon's Level 1 learnet
2023-07-11 00:38:22 +01:00

24 lines
687 B
NASM

db DEX_SYLVEON ; pokedex id
db 95, 65, 65, 60, 130
; hp atk def spd spc
db FAIRY, FAIRY ; type
db 45 ; catch rate
db 196 ; base exp
INCBIN "gfx/pokemon/front/sylveon.pic", 0, 1 ; sprite dimensions
dw SylveonPicFront, SylveonPicBack
db TACKLE, SAND_ATTACK, QUICK_ATTACK, DISARMING_VOICE ; level 1 learnset
db GROWTH_MEDIUM_SLOW ; growth rate
; tm/hm learnset
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, HYPER_BEAM, \
RAGE, MIMIC, DOUBLE_TEAM, REFLECT, BIDE, \
SWIFT, SKULL_BASH, REST, SUBSTITUTE
; end
db BANK(SylveonPicFront)
assert BANK(SylveonPicFront) == BANK(SylveonPicBack)