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

23 lines
665 B
NASM

db DEX_MUK_A ; pokedex id
db 105, 105, 75, 50, 65
; hp atk def spd spc
db POISON, DARK ; type
db 75 ; catch rate
db 157 ; base exp
INCBIN "gfx/pokemon/front/muka.pic", 0, 1 ; sprite dimensions
dw MukAPicFront, MukAPicBack
db POUND, DISABLE, POISON_GAS, NO_MOVE ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm TOXIC, BODY_SLAM, HYPER_BEAM, RAGE, MEGA_DRAIN, \
THUNDERBOLT, THUNDER, MIMIC, DOUBLE_TEAM, BIDE, \
SELFDESTRUCT, FIRE_BLAST, REST, EXPLOSION, SUBSTITUTE
; end
db BANK(MukAPicFront)
assert BANK(MukAPicFront) == BANK(MukAPicBack)