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

(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
24 lines
669 B
NASM
24 lines
669 B
NASM
db DEX_BITTYBAT ; pokedex id
|
|
|
|
db 35, 40, 30, 50, 35
|
|
; hp atk def spd spc
|
|
|
|
db POISON, FLYING ; type
|
|
db 255 ; catch rate
|
|
db 44 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/bittybat.pic", 0, 1 ; sprite dimensions
|
|
dw BittybatPicFront, BittybatPicBack
|
|
|
|
db LEECH_LIFE, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm RAZOR_WIND, WHIRLWIND, TOXIC, TAKE_DOWN, DOUBLE_EDGE, \
|
|
RAGE, MEGA_DRAIN, MIMIC, DOUBLE_TEAM, BIDE, \
|
|
SWIFT, REST, SUBSTITUTE
|
|
; end
|
|
|
|
db BANK(BittybatPicFront)
|
|
assert BANK(BittybatPicFront) == BANK(BittybatPicBack)
|