kep-hack/data/pokemon/base_stats/gentlarva.asm
Martha Schilling 4f9c581eeb New back sprites!
Updated back sprites have been added for Galarian Rapidash and Weezing, Alolan Dugtrio and Muk, and Tangrowth!

Also fixed an issue where Omegadge had 3 less base speed than it should, putting it just below Gawarhed in terms of BST. Oops.
2023-09-20 20:12:29 +01:00

22 lines
479 B
NASM

db DEX_GENTLARVA ; pokedex id
db 40, 35, 30, 45, 25
; hp atk def spd spc
db BUG, BUG ; type
db 255 ; catch rate
db 54 ; base exp
INCBIN "gfx/pokemon/front/gentlarva.pic", 0, 1 ; sprite dimensions
dw GentlarvaPicFront, GentlarvaPicBack
db LEECH_LIFE, STRING_SHOT, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm
; end
db BANK(GentlarvaPicFront)
assert BANK(GentlarvaPicFront) == BANK(GentlarvaPicBack)