kep-hack/data/pokemon/base_stats/rapidashg.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

24 lines
765 B
NASM

db DEX_RAPIDASH_G ; pokedex id
db 65, 100, 70, 105, 80
; hp atk def spd spc
db PSYCHIC_TYPE, FAIRY ; type
db 60 ; catch rate
db 192 ; base exp
INCBIN "gfx/pokemon/front/rapidashg.pic", 0, 1 ; sprite dimensions
dw RapidashGPicFront, RapidashGPicBack
db CONFUSION, TAIL_WHIP, STOMP, FAIRY_WIND ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm TOXIC, HORN_DRILL, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, \
HYPER_BEAM, PAY_DAY, RAGE, MIMIC, DOUBLE_TEAM, \
REFLECT, BIDE, PSYCHIC_M, SWIFT, SKULL_BASH, \
REST, SUBSTITUTE, PSYWAVE, TELEPORT
; end
db BANK(RapidashGPicFront)
assert BANK(RapidashGPicFront) == BANK(RapidashGPicBack)