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

25 lines
734 B
NASM

db DEX_PERSIAN ; pokedex id
db 65, 60, 60, 115, 75
; hp atk def spd spc
db DARK, DARK ; type
db 90 ; catch rate
db 148 ; base exp
INCBIN "gfx/pokemon/front/persiana.pic", 0, 1 ; sprite dimensions
dw PersianAPicFront, PersianAPicBack
db SCRATCH, GROWL, BITE, SCREECH ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, BUBBLEBEAM, \
WATER_GUN, HYPER_BEAM, PAY_DAY, RAGE, THUNDERBOLT, \
THUNDER, MIMIC, DOUBLE_TEAM, BIDE, SWIFT, \
SKULL_BASH, REST, SUBSTITUTE
; end
db BANK(PersianAPicFront)
assert BANK(PersianAPicFront) == BANK(PersianAPicBack)