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.
25 lines
777 B
NASM
25 lines
777 B
NASM
db DEX_SIRFETCHD ; pokedex id
|
|
|
|
db 62, 135, 95, 65, 68
|
|
; hp atk def spd spc
|
|
|
|
db FIGHTING, FIGHTING ; type
|
|
db 25 ; catch rate
|
|
db 196 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/sirfetchd.pic", 0, 1 ; sprite dimensions
|
|
dw SirfetchdPicFront, SirfetchdPicBack
|
|
|
|
db PECK, SAND_ATTACK, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm RAZOR_WIND, SWORDS_DANCE, WHIRLWIND, TOXIC, BODY_SLAM, \
|
|
TAKE_DOWN, DOUBLE_EDGE, SUBMISSION, COUNTER, SEISMIC_TOSS, \
|
|
RAGE, MIMIC, DOUBLE_TEAM, REFLECT, BIDE, \
|
|
SWIFT, SKULL_BASH, REST, SUBSTITUTE, CUT
|
|
; end
|
|
|
|
db BANK(SirfetchdPicFront)
|
|
assert BANK(SirfetchdPicFront) == BANK(SirfetchdPicBack)
|