kep-hack/data/pokemon/base_stats/sandslasha.asm
Llinos Evans afa5b76639 Add Powder Snow, fix Moltres
- Adds Powder Snow; GSC stats, was cut from RBY.
- Articuno, Jynx, Buu, Glaceon, Alolan Sandslash, and Alolan Ninetales get Powder Snow at L1.
- Glaceon also gets Powder Snow over Aurora Beam at L1; a nerf that makes it more accurate to its PLA learnset. Glaceon doesn't normally get this move.
- Moltres now gets Flamethrower at L51, fixing an error that GSC fixed. Leer is off by exactly 10 spaces. Leer has been made an L1 move, making it consistent with Articuno's Powder Snow. Does not affect legality, given the Tradeback Tutor.
- Because I'm pedantic, Zapdos gets Thunderbolt as an L1 move like Articuno's Ice Beam, so they all stay the same. Does not affect legality.
2023-11-25 18:28:36 +00:00

25 lines
852 B
NASM

db DEX_SANDSLASH_A ; pokedex id
db 75, 100, 120, 65, 65
; hp atk def spd spc
db ICE, STEEL ; type
db 90 ; catch rate
db 163 ; base exp
INCBIN "gfx/pokemon/front/sandslasha.pic", 0, 1 ; sprite dimensions
dw SandslashAPicFront, SandslashAPicBack
db SCRATCH, SAND_ATTACK, POWDER_SNOW, NO_MOVE ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm SWORDS_DANCE, TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, \
ICE_BEAM, BLIZZARD, HYPER_BEAM, SUBMISSION, SEISMIC_TOSS, \
RAGE, EARTHQUAKE, FISSURE, DIG, MIMIC, \
DOUBLE_TEAM, BIDE, SWIFT, SKULL_BASH, REST, \
ROCK_SLIDE, SUBSTITUTE, CUT, STRENGTH
; end
db BANK(SandslashAPicFront)
assert BANK(SandslashAPicFront) == BANK(SandslashAPicBack)