Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/data/pokemon/base_stats/exeggutor.asm
1271 views
1
db DEX_EXEGGUTOR ; pokedex id
2
3
db 95, 95, 85, 55, 125
4
; hp atk def spd spc
5
6
db GRASS, PSYCHIC_TYPE ; type
7
db 45 ; catch rate
8
db 212 ; base exp
9
10
INCBIN "gfx/pokemon/front/exeggutor.pic", 0, 1 ; sprite dimensions
11
dw ExeggutorPicFront, ExeggutorPicBack
12
13
db BARRAGE, HYPNOSIS, NO_MOVE, NO_MOVE ; level 1 learnset
14
db GROWTH_SLOW ; growth rate
15
16
; tm/hm learnset
17
tmhm TOXIC, TAKE_DOWN, DOUBLE_EDGE, HYPER_BEAM, RAGE, \
18
MEGA_DRAIN, SOLARBEAM, PSYCHIC_M, TELEPORT, MIMIC, \
19
DOUBLE_TEAM, REFLECT, BIDE, SELFDESTRUCT, EGG_BOMB, \
20
REST, PSYWAVE, EXPLOSION, SUBSTITUTE, STRENGTH
21
; end
22
23
db 0 ; padding
24
25