mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-16 12:06:25 +13:00

- All of the new Pokemon have been given their Nob Ogasawara-localised names, where applicable. Skimper, Bawligua, and Cryithan have completely new names, (Squeamata, Ministare and Iguanarch), made by me with a lot of help from Plague Von Karma! - Squeamata and Ministare have new sprites courtesy of Albatross. Crobat and the Alolan forms of Golem, Persian, Sandslash and Raticate have also been updated. - Sandy Shocks can no longer learn Metal Sound. - Luxwan and Sirfetch'd can no longer learn Hyper Beam. - A handful of Pokedex entries have been rewritten or altered slightly.
26 lines
799 B
NASM
26 lines
799 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, \
|
|
FLY
|
|
; end
|
|
|
|
db BANK(SirfetchdPicFront)
|
|
assert BANK(SirfetchdPicFront) == BANK(SirfetchdPicBack)
|