kep-hack/data/pokemon/base_stats/weirduck.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

26 lines
851 B
NASM

db DEX_WEIRDUCK ; pokedex id
db 65, 67, 63, 70, 65
; hp atk def spd spc
db WATER, WATER ; type
db 120 ; catch rate
db 122 ; base exp
INCBIN "gfx/pokemon/front/weirduck.pic", 0, 1 ; sprite dimensions
dw WeirduckPicFront, WeirduckPicBack
db SCRATCH, WATER_GUN, TAIL_WHIP, AMNESIA ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm MEGA_PUNCH, MEGA_KICK, TOXIC, BODY_SLAM, TAKE_DOWN, \
DOUBLE_EDGE, BUBBLEBEAM, WATER_GUN, ICE_BEAM, BLIZZARD, \
PAY_DAY, SUBMISSION, COUNTER, SEISMIC_TOSS, RAGE, \
DIG, MIMIC, DOUBLE_TEAM, BIDE, SWIFT, \
SKULL_BASH, REST, SUBSTITUTE, SURF, STRENGTH
; end
db BANK(WeirduckPicFront)
assert BANK(WeirduckPicFront) == BANK(WeirduckPicBack)