mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-16 12:06:25 +13:00

If Exeggutor passes L28, it'll be forced to learn Stomp no matter what, making it an illegal set with Powders and thus unfair for the player. To account for this, the Exeggutor set will be a Stomp-based one instead.
25 lines
798 B
NASM
25 lines
798 B
NASM
db DEX_EXEGGUTOR ; pokedex id
|
|
|
|
db 95, 95, 85, 55, 125
|
|
; hp atk def spd spc
|
|
|
|
db GRASS, PSYCHIC_TYPE ; type
|
|
db 45 ; catch rate
|
|
db 212 ; base exp
|
|
|
|
INCBIN "gfx/pokemon/front/exeggutor.pic", 0, 1 ; sprite dimensions
|
|
dw ExeggutorPicFront, ExeggutorPicBack
|
|
|
|
db HYPNOSIS, STOMP, PSYCHIC_M, EXPLOSION ; level 1 learnset - used for trainers
|
|
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
|
|
; end
|
|
|
|
db BANK(ExeggutorPicFront)
|
|
assert BANK(ExeggutorPicFront) == BANK(ExeggutorPicBack)
|