kep-hack/data/pokemon/base_stats/cactus.asm
Llinos Evans c3bb00b865 Cactus should have Barrage
While never having a full learnsetset, Barrage is listed as Cactus's signature move in some sources. Pendraken had "Squid-Ink" but that never made it.
2023-04-24 14:27:18 +01:00

26 lines
797 B
NASM

db DEX_CACTUS ; pokedex id
db 60, 95, 100, 90, 75
; hp atk def spd spc
db GRASS, GROUND ; type
db 45 ; catch rate
db 177 ; base exp
INCBIN "gfx/pokemon/front/cactus.pic", 0, 1 ; sprite dimensions
dw CactusPicFront, CactusPicBack
db BARRAGE, SAND_ATTACK, NO_MOVE, NO_MOVE ; level 1 learnset
db GROWTH_MEDIUM_FAST ; growth rate
; tm/hm learnset
tmhm WHIRLWIND, MEGA_KICK, TOXIC, HORN_DRILL, BODY_SLAM, \
TAKE_DOWN, DOUBLE_EDGE, HYPER_BEAM, RAGE, MEGA_DRAIN, \
SOLARBEAM, EARTHQUAKE, FISSURE, MIMIC, DOUBLE_TEAM, \
BIDE, SELFDESTRUCT, SWIFT, REST, EXPLOSION, \
TRI_ATTACK, SUBSTITUTE
; end
db BANK(CactusPicFront)
assert BANK(CactusPicFront) == BANK(CactusPicBack)