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

Reworks the Pokedex to accommodate for the regional forms, changes a title screen graphic, and cleans up a few base stat files (will do the rest later). Also revised a few dex entries (special thanks to my girlfriend for Gyopin's!)
22 lines
552 B
NASM
22 lines
552 B
NASM
db DEX_MELTAN ; pokedex id
|
|
|
|
db 46, 65, 55, 34, 35
|
|
; hp atk def spd spc
|
|
|
|
db STEEL, STEEL ; type
|
|
db 3 ; catch rate
|
|
db 131 ; 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, THUNDER_WAVE, SUBSTITUTE
|
|
; end
|
|
|
|
db BANK(MeltanPicFront)
|
|
assert BANK(MeltanPicFront) == BANK(MeltanPicBack) |