mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00

- Added LuciShrimp's amazing demake of the Area Zero theme! Plays in Mt. Moon Crater. - Lickilicky now has access to Explosion and Selfdestruct. - Sirfetch'd forgot how to Fly. - Steelix is now even more susceptible to getting BubbleBeamed to death since it now has 10 less base Special. - Small changes to a handful of trainer parties. - Changed some encounter tables, mainly making Ramoose more scarce and Tangela more common. - Blissey, Magmortar and Rhyperior all receieved updated sprites by Albatross! - Jynx also receieved an updated sprite, giving it the purple skin it has in later generations. - Minor level changes. - Updated README.
26 lines
778 B
NASM
26 lines
778 B
NASM
db DEX_STEELIX ; pokedex id
|
|
|
|
db 75, 85, 200, 30, 55
|
|
; hp atk def spd spc
|
|
|
|
db STEEL, GROUND ; type
|
|
db 25 ; catch rate
|
|
db 196 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/steelix.pic", 0, 1 ; sprite dimensions
|
|
dw SteelixPicFront, SteelixPicBack
|
|
|
|
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, HYPER_BEAM, \
|
|
RAGE, DRAGON_RAGE, EARTHQUAKE, FISSURE, DIG, \
|
|
MIMIC, DOUBLE_TEAM, BIDE, SELFDESTRUCT, SKULL_BASH, \
|
|
REST, EXPLOSION, ROCK_SLIDE, SUBSTITUTE, CUT, \
|
|
STRENGTH
|
|
; end
|
|
|
|
db BANK(SteelixPicFront)
|
|
assert BANK(SteelixPicFront) == BANK(SteelixPicBack)
|