mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-11-29 00:00:30 +13:00
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
21 lines
520 B
NASM
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) |