mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-16 12:06:25 +13:00

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.
26 lines
797 B
NASM
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)
|