kep-hack/data/pokemon/base_stats/exeggutora.asm
May Evans 243afabb19 Base stat files for regional formes
Done up to Mime G, just needs Tauros breeds and it's done.

Obviously need to do the rest of the stuff that comes with them...
2023-03-06 13:22:36 +00:00

25 lines
856 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, 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, \
DRAGON_RAGE, EARTHQUAKE, FISSURE, SWORDS_DANCE
; end
db BANK(ExeggutorAPicFront)
assert BANK(ExeggutorAPicFront) == BANK(ExeggutorAPicBack)