kep-hack/data/pokemon/base_stats/moltresg.asm
MementoMartha c8656b19f5 If you can't fix 'em, add the gauntlet.
Adding the maps for Silph's Gauntlet, along with Albatross's Galarian Bird sprites. Also fixing Blottle's typing, and temporarily replacing the effects of the recover moves.
2022-10-12 23:25:59 +01:00

24 lines
658 B
NASM

db DEX_MOLTRES_G ; pokedex id
db 90, 85, 90, 90, 125
; hp atk def spd spc
db DARK, FLYING ; type
db 3 ; catch rate
db 217 ; base exp
INCBIN "gfx/pokemon/front/moltresg.pic", 0, 1 ; sprite dimensions
dw MoltresGPicFront, MoltresGPicBack
db GUST, LEER, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_SLOW ; growth rate
; tm/hm learnset
tmhm WHIRLWIND, TOXIC, TAKE_DOWN, DOUBLE_EDGE, HYPER_BEAM, \
RAGE, MIMIC, DOUBLE_TEAM, BIDE, SWIFT, \
SKY_ATTACK, REST, SUBSTITUTE, FLY
; end
db BANK(MoltresGPicFront)
assert BANK(MoltresGPicFront) == BANK(MoltresGPicBack)