kep-hack/data/pokemon/base_stats/raichua.asm
May Evans 243afabb19 Base stat files for regional formes
Done up to Mime G, just needs Tauros breeds and it's done.

Obviously need to do the rest of the stuff that comes with them...
2023-03-06 13:22:36 +00:00

26 lines
926 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, NO_MOVE ; 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)