kep-hack/data/pokemon/base_stats/golema.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
881 B
NASM

db DEX_GOLEM_A ; pokedex id
db 80, 110, 130, 45, 55
; hp atk def spd spc
db ROCK, GROUND ; type
db 45 ; catch rate
db 177 ; base exp
INCBIN "gfx/pokemon/front/golema.pic", 0, 1 ; sprite dimensions
dw GolemAPicFront, GolemAPicBack
db TACKLE, DEFENSE_CURL, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_MEDIUM_SLOW ; growth rate
; tm/hm learnset
tmhm MEGA_PUNCH, MEGA_KICK, TOXIC, BODY_SLAM, TAKE_DOWN, \
DOUBLE_EDGE, HYPER_BEAM, SUBMISSION, COUNTER, SEISMIC_TOSS, \
RAGE, EARTHQUAKE, FISSURE, DIG, MIMIC, \
DOUBLE_TEAM, BIDE, METRONOME, SELFDESTRUCT, FIRE_BLAST, \
REST, EXPLOSION, ROCK_SLIDE, SUBSTITUTE, STRENGTH, \
THUNDERBOLT, THUNDER, THUNDER_WAVE
; end
db BANK(GolemAPicFront)
assert BANK(GolemAPicFront) == BANK(GolemAPicBack)