mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-16 20:16:26 +13: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.
24 lines
683 B
NASM
24 lines
683 B
NASM
db DEX_KLEAVOR ; pokedex id
|
|
|
|
db 70, 135, 95, 85, 45
|
|
; hp atk def spd spc
|
|
|
|
db BUG, ROCK ; type
|
|
db 45 ; catch rate
|
|
db 204 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/kleavor.pic", 0, 1 ; sprite dimensions
|
|
dw KleavorPicFront, KleavorPicBack
|
|
|
|
db QUICK_ATTACK, ROCK_THROW, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_MEDIUM_FAST ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm SWORDS_DANCE, TOXIC, TAKE_DOWN, DOUBLE_EDGE, HYPER_BEAM, \
|
|
RAGE, MIMIC, DOUBLE_TEAM, BIDE, SWIFT, \
|
|
SKULL_BASH, REST, ROCK_SLIDE, SUBSTITUTE, CUT
|
|
; end
|
|
|
|
db BANK(KleavorPicFront)
|
|
assert BANK(KleavorPicFront) == BANK(KleavorPicBack)
|