kep-hack/data/pokemon/base_stats/magnetite.asm
Martha Schilling 5bb500d044 Rejoice! Bittybat is back!
(oh and also Magnetite too i guess)

- Finally updated Oak's Pokedex rating checks to accommodate the higher number of Pokemon.

- Albatross strikes again, bringing updated sprites for Alolan Ninetales and Exeggutor, plus Aqua and Blaze Breed Paldean Tauros! Combat Breed is still the same.

Please note that the game is still unfinished, I'm hoping I can have the proper time and motivation to knock out the last few bugs and unimplemented features. Doing my best, okay? :3
~ MM
2023-11-08 17:25:44 +00:00

25 lines
721 B
NASM

db DEX_MAGNETITE ; pokedex id
db 30, 40, 75, 50, 100
; hp atk def spd spc
db ELECTRIC, ELECTRIC ; type
db 90 ; catch rate
db 118 ; base exp
INCBIN "gfx/pokemon/front/magnetite.pic", 0, 1 ; sprite dimensions
dw MagnetitePicFront, MagnetitePicBack
db TACKLE, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm TOXIC, TAKE_DOWN, DOUBLE_EDGE, RAGE, THUNDERBOLT, \
THUNDER, TELEPORT, MIMIC, DOUBLE_TEAM, REFLECT, \
BIDE, SWIFT, REST, THUNDER_WAVE, SUBSTITUTE, \
FLASH
; end
db BANK(MagnetitePicFront)
assert BANK(MagnetitePicFront) == BANK(MagnetitePicBack)