mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00

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.
24 lines
658 B
NASM
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)
|