kep-hack/data/pokemon/base_stats/ninetalesa.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

24 lines
775 B
NASM

db DEX_NINETALES_A ; pokedex id
db 73, 67, 75, 109, 100
; hp atk def spd spc
db ICE, FAIRY ; type
db 75 ; catch rate
db 178 ; base exp
INCBIN "gfx/pokemon/front/ninetalesa.pic", 0, 1 ; sprite dimensions
dw NinetalesAPicFront, NinetalesAPicBack
db FAIRY_WIND, TAIL_WHIP, QUICK_ATTACK, POWDER_SNOW ; level 1 learnset - used for trainers
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, ICE_BEAM, \
BLIZZARD, HYPER_BEAM, RAGE, DIG, MIMIC, \
DOUBLE_TEAM, REFLECT, BIDE, SWIFT, SKULL_BASH, \
REST, SUBSTITUTE
; end
db BANK(NinetalesAPicFront)
assert BANK(NinetalesAPicFront) == BANK(NinetalesAPicBack)