kep-hack/data/pokemon/base_stats/poliwhirl.asm
Llinos Evans 02df5d3abf Prototype level-up move restorations
Geodude and Squirtle require some restructuring to implement adequately, some other issues.

This adds level-up moves learned in the RG prototype that are learned only via TM in the final to various Kanto Pokemon. Significantly buffs some underwhelming Pokemon and adds utility to moves like Take Down.
2023-12-13 12:53:30 +00:00

27 lines
889 B
NASM

db DEX_POLIWHIRL ; pokedex id
db 65, 65, 65, 90, 50
; hp atk def spd spc
db WATER, WATER ; type
db 120 ; catch rate
db 131 ; base exp
INCBIN "gfx/pokemon/front/poliwhirl.pic", 0, 1 ; sprite dimensions
dw PoliwhirlPicFront, PoliwhirlPicBack
db BUBBLE, HYPNOSIS, WATER_GUN, BIDE ; level 1 learnset
db GROWTH_MEDIUM_SLOW ; growth rate
; tm/hm learnset
tmhm MEGA_PUNCH, MEGA_KICK, TOXIC, BODY_SLAM, TAKE_DOWN, \
DOUBLE_EDGE, BUBBLEBEAM, WATER_GUN, ICE_BEAM, BLIZZARD, \
SUBMISSION, COUNTER, SEISMIC_TOSS, RAGE, EARTHQUAKE, \
FISSURE, PSYCHIC_M, MIMIC, DOUBLE_TEAM, BIDE, \
METRONOME, SKULL_BASH, REST, PSYWAVE, SUBSTITUTE, \
SURF, STRENGTH
; end
db BANK(PoliwhirlPicFront)
assert BANK(PoliwhirlPicFront) == BANK(PoliwhirlPicBack)