kep-hack/data/pokemon/base_stats/meltan.asm
MementoMartha c9b01f2c64 A few minor changes
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!)
2023-03-29 11:35:41 +01:00

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)