kep-hack/data/pokemon/base_stats/ivysaur.asm
Martha Schilling e76cb8c9e8 Starter moveset updates!
Made the Bulbasaur and Charmander line's movesets better, more closely matching Squirtle's updated moveset.
2023-12-17 18:25:34 +00:00

24 lines
678 B
NASM

db DEX_IVYSAUR ; pokedex id
db 60, 62, 63, 60, 80
; hp atk def spd spc
db GRASS, POISON ; type
db 45 ; catch rate
db 141 ; base exp
INCBIN "gfx/pokemon/front/ivysaur.pic", 0, 1 ; sprite dimensions
dw IvysaurPicFront, IvysaurPicBack
db TACKLE, GROWL, VINE_WHIP, NO_MOVE ; level 1 learnset
db GROWTH_MEDIUM_SLOW ; growth rate
; tm/hm learnset
tmhm SWORDS_DANCE, TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, \
RAGE, MEGA_DRAIN, SOLARBEAM, MIMIC, DOUBLE_TEAM, \
REFLECT, BIDE, REST, SUBSTITUTE, CUT
; end
db BANK(IvysaurPicFront)
assert BANK(IvysaurPicFront) == BANK(IvysaurPicBack)