kep-hack/data/pokemon/base_stats/sirfetchd.asm
Martha Schilling 3464abd75f New sprites and new names
- 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.
2023-08-09 23:10:18 +01:00

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)