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.
25 lines
724 B
NASM
25 lines
724 B
NASM
db DEX_VILEPLUME ; pokedex id
|
|
|
|
db 75, 80, 85, 50, 100
|
|
; hp atk def spd spc
|
|
|
|
db GRASS, POISON ; type
|
|
db 45 ; catch rate
|
|
db 184 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/vileplume.pic", 0, 1 ; sprite dimensions
|
|
dw VileplumePicFront, VileplumePicBack
|
|
|
|
db STUN_SPORE, SLEEP_POWDER, ACID, PETAL_DANCE ; level 1 learnset
|
|
db GROWTH_MEDIUM_SLOW ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm SWORDS_DANCE, TOXIC, BODY_SLAM, TAKE_DOWN, DOUBLE_EDGE, \
|
|
HYPER_BEAM, RAGE, MEGA_DRAIN, SOLARBEAM, MIMIC, \
|
|
DOUBLE_TEAM, REFLECT, BIDE, REST, SUBSTITUTE, \
|
|
CUT
|
|
; end
|
|
|
|
db BANK(VileplumePicFront)
|
|
assert BANK(VileplumePicFront) == BANK(VileplumePicBack)
|