mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-20 05:56:24 +13: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.
28 lines
976 B
NASM
28 lines
976 B
NASM
db DEX_LICKILICKY ; pokedex id
|
|
|
|
db 110, 85, 95, 50, 80
|
|
; hp atk def spd spc
|
|
|
|
db NORMAL, NORMAL ; type
|
|
db 30 ; catch rate
|
|
db 193 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/lickilicky.pic", 0, 1 ; sprite dimensions
|
|
dw LickilickyPicFront, LickilickyPicBack
|
|
|
|
db WRAP, SUPERSONIC, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm MEGA_PUNCH, SWORDS_DANCE, MEGA_KICK, TOXIC, BODY_SLAM, \
|
|
TAKE_DOWN, DOUBLE_EDGE, BUBBLEBEAM, WATER_GUN, ICE_BEAM, \
|
|
BLIZZARD, HYPER_BEAM, SUBMISSION, COUNTER, SEISMIC_TOSS, \
|
|
RAGE, THUNDERBOLT, THUNDER, EARTHQUAKE, FISSURE, \
|
|
MIMIC, DOUBLE_TEAM, BIDE, SELFDESTRUCT, FIRE_BLAST, \
|
|
SKULL_BASH, REST, EXPLOSION, SUBSTITUTE, CUT, \
|
|
SURF, STRENGTH
|
|
; end
|
|
|
|
db BANK(LickilickyPicFront)
|
|
assert BANK(LickilickyPicFront) == BANK(LickilickyPicBack)
|