mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-17 04:26:28 +13:00

Because these Pokemon cannot be captured in the wild, this exclusively buffs the trainers, and by a significant amount too. I left Starmie out to balance out the early-game given how powerful it can be. Ninetales should be at least L42 in each encounter to account for Fire Spin. Vileplume and Bellossom should be at least L38, but I think Erika puts Mega Drain over Petal Dance so she should be fine..? Tsubomitto should be L40+ to account for Lovely Kiss. Exeggutor should be at least L48+ to account for Sleep Powder. Cloyster should be at least L23 to account for Clamp. To nerf it, increase its level to 50, where Spike Cannon replaces Explosion. I have also done a few fixes and stuff; - Magnezone is part-Steel - Leafeon gets Swords Dance - Added Silph Gauntlet Team for the Channeler, assuming L65 is what will be used.
25 lines
728 B
NASM
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_FAST ; 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)
|