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

- Marowak has Tail Whip to ensure it gets its entire learnset - currently can't, as Yellow creates a weird incompatibility if caught the way it currently is. - Gyarados is given its Yellow learnset, as chances are it's being made fishable and thus needs it to be of an appropriate power level. - Stone Evolutions I changed are nerfed to balance the Move Relearner properly.
26 lines
928 B
NASM
26 lines
928 B
NASM
db DEX_RAICHU_A ; pokedex id
|
|
|
|
db 60, 85, 50, 100, 95
|
|
; hp atk def spd spc
|
|
|
|
db ELECTRIC, PSYCHIC ; 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_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm MEGA_PUNCH, MEGA_KICK, TOXIC, BODY_SLAM, TAKE_DOWN, \
|
|
DOUBLE_EDGE, HYPER_BEAM, PAY_DAY, SUBMISSION, SEISMIC_TOSS, \
|
|
RAGE, THUNDERBOLT, THUNDER, MIMIC, DOUBLE_TEAM, \
|
|
REFLECT, BIDE, SWIFT, SKULL_BASH, REST, \
|
|
THUNDER_WAVE, SUBSTITUTE, FLY, SURF, FLASH, \
|
|
PSYCHIC_M, PSYWAVE, TELEPORT, COUNTER ; I forgot why it got this ngl
|
|
; end
|
|
|
|
db BANK(RaichuAPicFront)
|
|
assert BANK(RaichuAPicFront) == BANK(RaichuAPicBack) |