mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-16 12:06:25 +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.
27 lines
902 B
NASM
27 lines
902 B
NASM
db DEX_POLITOED ; pokedex id
|
|
|
|
db 90, 75, 75, 70, 90
|
|
; hp atk def spd spc
|
|
|
|
db WATER, WATER ; type
|
|
db 45 ; catch rate
|
|
db 185 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/politoed.pic", 0, 1 ; sprite dimensions
|
|
dw PolitoedPicFront, PolitoedPicBack
|
|
|
|
db HYPNOSIS, WATER_GUN, DOUBLESLAP, NO_MOVE ; level 1 learnset
|
|
db GROWTH_MEDIUM_SLOW ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm MEGA_PUNCH, MEGA_KICK, TOXIC, BODY_SLAM, TAKE_DOWN, \
|
|
DOUBLE_EDGE, BUBBLEBEAM, WATER_GUN, ICE_BEAM, BLIZZARD, \
|
|
HYPER_BEAM, SUBMISSION, COUNTER, SEISMIC_TOSS, RAGE, \
|
|
EARTHQUAKE, FISSURE, PSYCHIC_M, MIMIC, DOUBLE_TEAM, \
|
|
BIDE, METRONOME, SKULL_BASH, REST, PSYWAVE, \
|
|
SUBSTITUTE, SURF, STRENGTH
|
|
; end
|
|
|
|
db BANK(PolitoedPicFront)
|
|
assert BANK(PolitoedPicFront) == BANK(PolitoedPicBack)
|