kep-hack/data/pokemon/base_stats/nidoking.asm
May Evans 63ea628392 Stone Evolution L1 Learnset Improvements
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.
2022-09-30 14:33:29 +01:00

28 lines
992 B
NASM

db DEX_NIDOKING ; pokedex id
db 81, 92, 77, 85, 75
; hp atk def spd spc
db POISON, GROUND ; type
db 45 ; catch rate
db 195 ; base exp
INCBIN "gfx/pokemon/front/nidoking.pic", 0, 1 ; sprite dimensions
dw NidokingPicFront, NidokingPicBack
db EARTHQUAKE, BODY_SLAM, BLIZZARD, THUNDERBOLT ; level 1 learnset - used for trainers
db GROWTH_MEDIUM_SLOW ; growth rate
; tm/hm learnset
tmhm MEGA_PUNCH, MEGA_KICK, TOXIC, HORN_DRILL, BODY_SLAM, \
TAKE_DOWN, DOUBLE_EDGE, BUBBLEBEAM, WATER_GUN, ICE_BEAM, \
BLIZZARD, HYPER_BEAM, PAY_DAY, SUBMISSION, COUNTER, \
SEISMIC_TOSS, RAGE, THUNDERBOLT, THUNDER, EARTHQUAKE, \
FISSURE, MIMIC, DOUBLE_TEAM, REFLECT, BIDE, \
FIRE_BLAST, SKULL_BASH, REST, ROCK_SLIDE, SUBSTITUTE, \
SURF, STRENGTH
; end
db BANK(NidokingPicFront)
assert BANK(NidokingPicFront) == BANK(NidokingPicBack)