kep-hack/data/pokemon/base_stats/pupal.asm
Martha Schilling 2b2c95e52b Actually working postgame warps!
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.
2023-12-08 17:37:41 +00:00

22 lines
443 B
NASM

db DEX_PUPAL ; pokedex id
db 45, 20, 50, 40, 30
; hp atk def spd spc
db BUG, BUG ; type
db 120 ; catch rate
db 73 ; base exp
INCBIN "gfx/pokemon/front/pupal.pic", 0, 1 ; sprite dimensions
dw PupalPicFront, PupalPicBack
db HARDEN, NO_MOVE, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm
; end
db BANK(PupalPicFront)
assert BANK(PupalPicFront) == BANK(PupalPicBack)