mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-16 20:16:26 +13:00

FINALLY managed to get this working. The bugged warps are now working and the jank ones are less jank. Also removed the cocoon's pre-evolved moves again.
22 lines
457 B
NASM
22 lines
457 B
NASM
db DEX_METAPOD ; pokedex id
|
|
|
|
db 50, 20, 55, 30, 25
|
|
; hp atk def spd spc
|
|
|
|
db BUG, BUG ; type
|
|
db 120 ; catch rate
|
|
db 72 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/metapod.pic", 0, 1 ; sprite dimensions
|
|
dw MetapodPicFront, MetapodPicBack
|
|
|
|
db HARDEN, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm
|
|
; end
|
|
|
|
db BANK(MetapodPicFront)
|
|
assert BANK(MetapodPicFront) == BANK(MetapodPicBack)
|