mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
1891879b62
This is how they're called in official sources, and it fits better with the other `GENDER_` constants.
22 lines
760 B
NASM
22 lines
760 B
NASM
db CELEBI ; 251
|
|
|
|
db 100, 100, 100, 100, 100, 100
|
|
; hp atk def spd sat sdf
|
|
|
|
db PSYCHIC, GRASS ; type
|
|
db 45 ; catch rate
|
|
db 64 ; base exp
|
|
db NO_ITEM, MIRACLEBERRY ; items
|
|
db GENDER_UNKNOWN ; gender ratio
|
|
db 100 ; unknown 1
|
|
db 120 ; step cycles to hatch
|
|
db 5 ; unknown 2
|
|
INCBIN "gfx/pokemon/celebi/front.dimensions"
|
|
db 0, 0, 0, 0 ; padding
|
|
db GROWTH_MEDIUM_SLOW ; growth rate
|
|
dn EGG_NONE, EGG_NONE ; egg groups
|
|
|
|
; tm/hm learnset
|
|
tmhm CURSE, TOXIC, PSYCH_UP, HIDDEN_POWER, SUNNY_DAY, SWEET_SCENT, SNORE, HYPER_BEAM, PROTECT, RAIN_DANCE, GIGA_DRAIN, ENDURE, FRUSTRATION, SOLARBEAM, RETURN, PSYCHIC_M, SHADOW_BALL, MUD_SLAP, DOUBLE_TEAM, SWAGGER, SLEEP_TALK, SANDSTORM, SWIFT, DEFENSE_CURL, DREAM_EATER, DETECT, REST, NIGHTMARE, FLASH
|
|
; end
|