kep-hack/data/pokemon/base_stats/steelix.asm
emaskyesmogon b4804ae629 New Mons
Adds Blissey, Hitmontop, Steelix, Crobat, Politoed and Slowking. Remnants for Porygon2, Lickilicky, Kingdra and Magnezone can be seen but are currently non functional due to wram space.
2022-09-01 16:32:37 -06:00

25 lines
714 B
NASM

db DEX_STEELIX ; pokedex id
db 35, 45, 160, 70, 30
; hp atk def spd spc
db ROCK, GROUND ; type
db 45 ; catch rate
db 108 ; base exp
INCBIN "gfx/pokemon/front/onix.pic", 0, 1 ; sprite dimensions
dw OnixPicFront, OnixPicBack
db TACKLE, SCREECH, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, RAGE, \
EARTHQUAKE, FISSURE, DIG, MIMIC, DOUBLE_TEAM, \
BIDE, SELFDESTRUCT, SKULL_BASH, REST, EXPLOSION, \
ROCK_SLIDE, SUBSTITUTE, STRENGTH
; end
db BANK(OnixPicFront)
assert BANK(OnixPicFront) == BANK(OnixPicBack)