kep-hack/data/pokemon/base_stats/leafeon.asm
Llinos Evans 1a68db3227 Post-Playtest Hotfixes
- Eevee and Pikachu family's growth rates are changed to Medium Slow. This gives them a much better early-game power spike that tapers off momentarily. They will level up faster until Level 68.
- Yujirou's levels and one pre-gym trainer are slightly nerfed, being easier for players starting out.
- Caterpie and Weedle in Viridian Forest have level deviation, and Pikachu is tapped on the wrist to not make the starter too redundant; change here is pending.
- Debug uses Pikachu and Eevee starters for future starter-based testing.
2023-06-05 02:17:54 +01:00

25 lines
728 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/leafeon.pic", 0, 1 ; sprite dimensions
dw LeafeonPicFront, LeafeonPicBack
db TACKLE, SAND_ATTACK, QUICK_ATTACK, ABSORB ; level 1 learnset
db GROWTH_MEDIUM_SLOW ; growth rate
; tm/hm learnset
tmhm TOXIC, BODY_SLAM, SWORDS_DANCE, TAKE_DOWN, DOUBLE_EDGE, \
HYPER_BEAM, RAGE, MEGA_DRAIN, SOLARBEAM, MIMIC, \
DOUBLE_TEAM, REFLECT, BIDE, SWIFT, SKULL_BASH, \
REST, SUBSTITUTE
; end
db BANK(LeafeonPicFront)
assert BANK(LeafeonPicFront) == BANK(LeafeonPicBack)