kep-hack/data/pokemon/base_stats/meltan.asm
May Evans 476d0f356b More dex entries, Meltan/Melmetal base stats and dex
This finishes the regional form dex entries and adds Meltan and Melmetal to the framework since they aren't in yet.

The following needs to be done:
- Name entry
- Dex placement
- Cries
- Palettes
- Sprites adjusted for KEP itself (greyscale, 56x56, whitening)
- Sizes
- probably a bit more
2023-03-08 01:32:28 +00:00

21 lines
520 B
NASM

db DEX_MELTAN ; pokedex id
db 46, 65, 55, 34, 35
; hp atk def spd spc
db STEEL, STEEL ; type
db 75 ; catch rate
db 213 ; base exp
INCBIN "gfx/pokemon/front/meltan.pic", 0, 1 ; sprite dimensions
dw MeltanPicFront, MeltanPicBack
db THUNDERSHOCK, HARDEN, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_SLOW ; growth rate
; tm/hm learnset
tmhm TOXIC, RAGE, MIMIC, DOUBLE_TEAM, BIDE, REST, SUBSTITUTE, THUNDER_WAVE
; end
db BANK(MeltanPicFront)
assert BANK(MeltanPicFront) == BANK(MeltanPicBack)