kep-hack/data/pokemon/base_stats/moltres.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
702 B
NASM

db DEX_MOLTRES ; pokedex id
db 90, 100, 90, 90, 125
; hp atk def spd spc
db FIRE, FLYING ; type
db 3 ; catch rate
db 217 ; base exp
INCBIN "gfx/pokemon/front/moltres.pic", 0, 1 ; sprite dimensions
dw MoltresPicFront, MoltresPicBack
db PECK, FIRE_SPIN, LEER, NO_MOVE ; level 1 learnset
db GROWTH_SLOW ; growth rate
; tm/hm learnset
tmhm RAZOR_WIND, WHIRLWIND, TOXIC, TAKE_DOWN, DOUBLE_EDGE, \
HYPER_BEAM, RAGE, MIMIC, DOUBLE_TEAM, REFLECT, \
BIDE, FIRE_BLAST, SWIFT, SKY_ATTACK, REST, \
SUBSTITUTE, FLY
; end
db BANK(MoltresPicFront)
assert BANK(MoltresPicFront) == BANK(MoltresPicBack)