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

- Marowak has Tail Whip to ensure it gets its entire learnset - currently can't, as Yellow creates a weird incompatibility if caught the way it currently is. - Gyarados is given its Yellow learnset, as chances are it's being made fishable and thus needs it to be of an appropriate power level. - Stone Evolutions I changed are nerfed to balance the Move Relearner properly.
26 lines
783 B
NASM
26 lines
783 B
NASM
db DEX_CLOYSTER ; pokedex id
|
|
|
|
db 50, 95, 180, 70, 85
|
|
; hp atk def spd spc
|
|
|
|
db WATER, ICE ; type
|
|
db 60 ; catch rate
|
|
db 203 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/cloyster.pic", 0, 1 ; sprite dimensions
|
|
dw CloysterPicFront, CloysterPicBack
|
|
|
|
db WITHDRAW, SUPERSONIC, CLAMP, AURORA_BEAM ; level 1 learnset
|
|
db GROWTH_SLOW ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, TAKE_DOWN, DOUBLE_EDGE, BUBBLEBEAM, WATER_GUN, \
|
|
ICE_BEAM, BLIZZARD, HYPER_BEAM, RAGE, TELEPORT, \
|
|
MIMIC, DOUBLE_TEAM, REFLECT, BIDE, SELFDESTRUCT, \
|
|
SWIFT, REST, EXPLOSION, TRI_ATTACK, SUBSTITUTE, \
|
|
SURF
|
|
; end
|
|
|
|
db BANK(CloysterPicFront)
|
|
assert BANK(CloysterPicFront) == BANK(CloysterPicBack)
|