mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00

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.
25 lines
725 B
NASM
25 lines
725 B
NASM
db DEX_POLIWAG ; pokedex id
|
|
|
|
db 40, 50, 40, 90, 40
|
|
; hp atk def spd spc
|
|
|
|
db WATER, WATER ; type
|
|
db 255 ; catch rate
|
|
db 77 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/poliwag.pic", 0, 1 ; sprite dimensions
|
|
dw PoliwagPicFront, PoliwagPicBack
|
|
|
|
db BUBBLE, BIDE, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_MEDIUM_SLOW ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, BUBBLEBEAM, \
|
|
WATER_GUN, ICE_BEAM, BLIZZARD, RAGE, PSYCHIC_M, \
|
|
MIMIC, DOUBLE_TEAM, BIDE, SKULL_BASH, REST, \
|
|
PSYWAVE, SUBSTITUTE, SURF
|
|
; end
|
|
|
|
db BANK(PoliwagPicFront)
|
|
assert BANK(PoliwagPicFront) == BANK(PoliwagPicBack)
|