kep-hack/data/pokemon/base_stats/seaking.asm
Martha Schilling 62fb13c3b3 why do the goldeen and psyduck lines not learn water gun by level up what is wrong with the learnsets in this game
Also relocated the aforementioned items and made Celeste Hill look a bit nicer.
2023-12-11 14:14:49 +00:00

25 lines
733 B
NASM

db DEX_SEAKING ; pokedex id
db 80, 92, 65, 68, 80
; hp atk def spd spc
db WATER, WATER ; type
db 60 ; catch rate
db 170 ; base exp
INCBIN "gfx/pokemon/front/seaking.pic", 0, 1 ; sprite dimensions
dw SeakingPicFront, SeakingPicBack
db PECK, TAIL_WHIP, WATER_GUN, SUPERSONIC ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm TOXIC, HORN_DRILL, TAKE_DOWN, DOUBLE_EDGE, BUBBLEBEAM, \
WATER_GUN, ICE_BEAM, BLIZZARD, HYPER_BEAM, RAGE, \
MIMIC, DOUBLE_TEAM, BIDE, SWIFT, SKULL_BASH, \
REST, SUBSTITUTE, SURF
; end
db BANK(SeakingPicFront)
assert BANK(SeakingPicFront) == BANK(SeakingPicBack)