mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00

- 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.
26 lines
920 B
NASM
26 lines
920 B
NASM
db DEX_RAICHU_A ; pokedex id
|
|
|
|
db 60, 85, 50, 100, 95
|
|
; hp atk def spd spc
|
|
|
|
db ELECTRIC, PSYCHIC_TYPE ; type
|
|
db 75 ; catch rate
|
|
db 122 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/raichua.pic", 0, 1 ; sprite dimensions
|
|
dw RaichuAPicFront, RaichuAPicBack
|
|
|
|
db THUNDERSHOCK, GROWL, THUNDER_WAVE, CONFUSION ; level 1 learnset
|
|
db GROWTH_MEDIUM_SLOW ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm MEGA_PUNCH, MEGA_KICK, TOXIC, BODY_SLAM, TAKE_DOWN, \
|
|
DOUBLE_EDGE, HYPER_BEAM, PAY_DAY, SUBMISSION, COUNTER, \
|
|
SEISMIC_TOSS, RAGE, THUNDERBOLT, THUNDER, PSYCHIC_M, \
|
|
TELEPORT, MIMIC, DOUBLE_TEAM, REFLECT, BIDE, \
|
|
SWIFT, SKULL_BASH, REST, THUNDER_WAVE, PSYWAVE, \
|
|
SUBSTITUTE, FLY, SURF, FLASH
|
|
; end
|
|
|
|
db BANK(RaichuAPicFront)
|
|
assert BANK(RaichuAPicFront) == BANK(RaichuAPicBack) |