mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12: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
453 B
NASM
22 lines
453 B
NASM
db DEX_KAKUNA ; pokedex id
|
|
|
|
db 45, 25, 50, 35, 25
|
|
; hp atk def spd spc
|
|
|
|
db BUG, POISON ; type
|
|
db 120 ; catch rate
|
|
db 71 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/kakuna.pic", 0, 1 ; sprite dimensions
|
|
dw KakunaPicFront, KakunaPicBack
|
|
|
|
db HARDEN, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm
|
|
; end
|
|
|
|
db BANK(KakunaPicFront)
|
|
assert BANK(KakunaPicFront) == BANK(KakunaPicBack)
|