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.
25 lines
834 B
NASM
25 lines
834 B
NASM
db DEX_EXEGGUTOR_A ; pokedex id
|
|
|
|
db 95, 105, 85, 45, 125
|
|
; hp atk def spd spc
|
|
|
|
db GRASS, DRAGON ; type
|
|
db 45 ; catch rate
|
|
db 212 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/exeggutora.pic", 0, 1 ; sprite dimensions
|
|
dw ExeggutorAPicFront, ExeggutorAPicBack
|
|
|
|
db HYPNOSIS, BARRAGE, NO_MOVE, NO_MOVE ; level 1 learnset
|
|
db GROWTH_SLOW ; growth rate
|
|
|
|
; tm/hm learnset
|
|
tmhm TOXIC, TAKE_DOWN, DOUBLE_EDGE, HYPER_BEAM, RAGE, \
|
|
MEGA_DRAIN, SOLARBEAM, PSYCHIC_M, TELEPORT, MIMIC, \
|
|
DOUBLE_TEAM, REFLECT, BIDE, SELFDESTRUCT, EGG_BOMB, \
|
|
REST, PSYWAVE, EXPLOSION, SUBSTITUTE, STRENGTH, \
|
|
DRAGON_RAGE, EARTHQUAKE, FISSURE, SWORDS_DANCE
|
|
; end
|
|
|
|
db BANK(ExeggutorAPicFront)
|
|
assert BANK(ExeggutorAPicFront) == BANK(ExeggutorAPicBack) |