Enumerate various constants

This commit is contained in:
PikalaxALT
2015-07-13 01:37:11 -04:00
parent 249bad9551
commit 3a9f537f8a
8 changed files with 581 additions and 553 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,4 @@
const_value = 1 const_value SET 1
const ANIM_GFX_HIT const ANIM_GFX_HIT
const ANIM_GFX_CUT const ANIM_GFX_CUT
const ANIM_GFX_FIRE const ANIM_GFX_FIRE

View File

@@ -291,7 +291,7 @@ CANT_TOSS EQU 1 << 7
const HELD_7 const HELD_7
const HELD_CLEANSE_TAG const HELD_CLEANSE_TAG
const_value = 10 const_value SET 10
const HELD_HEAL_POISON const HELD_HEAL_POISON
const HELD_HEAL_FREEZE const HELD_HEAL_FREEZE
const HELD_HEAL_BURN const HELD_HEAL_BURN
@@ -300,7 +300,7 @@ const_value = 10
const HELD_HEAL_STATUS const HELD_HEAL_STATUS
const HELD_HEAL_CONFUSION const HELD_HEAL_CONFUSION
const_value = 20 const_value SET 20
const HELD_PREVENT_POISON const HELD_PREVENT_POISON
const HELD_PREVENT_BURN const HELD_PREVENT_BURN
const HELD_PREVENT_FREEZE const HELD_PREVENT_FREEZE
@@ -308,7 +308,7 @@ const_value = 20
const HELD_PREVENT_PARALYZE const HELD_PREVENT_PARALYZE
const HELD_PREVENT_CONFUSE const HELD_PREVENT_CONFUSE
const_value = 30 const_value SET 30
const HELD_30 const HELD_30
const HELD_ATTACK_UP const HELD_ATTACK_UP
const HELD_DEFENSE_UP const HELD_DEFENSE_UP
@@ -318,12 +318,12 @@ const_value = 30
const HELD_ACCURACY_UP const HELD_ACCURACY_UP
const HELD_EVASION_UP const HELD_EVASION_UP
const_value = 40 const_value SET 40
const HELD_40 const HELD_40
const HELD_41 const HELD_41
const HELD_METAL_POWDER const HELD_METAL_POWDER
const_value = 50 const_value SET 50
const HELD_NORMAL_BOOST const HELD_NORMAL_BOOST
const HELD_FIGHTING_BOOST const HELD_FIGHTING_BOOST
const HELD_FLYING_BOOST const HELD_FLYING_BOOST
@@ -342,7 +342,7 @@ const_value = 50
const HELD_DARK_BOOST const HELD_DARK_BOOST
const HELD_STEEL_BOOST const HELD_STEEL_BOOST
const_value = 70 const_value SET 70
const HELD_CATCH_CHANCE const HELD_CATCH_CHANCE
const HELD_71 const HELD_71
const HELD_ESCAPE const HELD_ESCAPE

View File

@@ -576,7 +576,7 @@ MAP_N_A EQU -1
const SPRITE_ENTEI const SPRITE_ENTEI
const SPRITE_RAIKOU const SPRITE_RAIKOU
const SPRITE_STANDING_YOUNGSTER const SPRITE_STANDING_YOUNGSTER
const_value = $80 const_value SET $80
SPRITE_POKEMON EQU const_value SPRITE_POKEMON EQU const_value
const SPRITE_UNOWN const SPRITE_UNOWN
const SPRITE_GEODUDE const SPRITE_GEODUDE
@@ -614,11 +614,11 @@ SPRITE_POKEMON EQU const_value
const SPRITE_LUGIA const SPRITE_LUGIA
const SPRITE_HO_OH const SPRITE_HO_OH
const_value = $e0 const_value SET $e0
const SPRITE_DAYCARE_MON_1 const SPRITE_DAYCARE_MON_1
const SPRITE_DAYCARE_MON_2 const SPRITE_DAYCARE_MON_2
const_value = $f0 const_value SET $f0
SPRITE_VARS EQU const_value SPRITE_VARS EQU const_value
const SPRITE_CONSOLE const SPRITE_CONSOLE
const SPRITE_DOLL_1 const SPRITE_DOLL_1
@@ -635,7 +635,7 @@ SPRITE_VARS EQU const_value
const SPRITE_JANINE_IMPERSONATOR const SPRITE_JANINE_IMPERSONATOR
; sprite types ; sprite types
const_value = 1 const_value SET 1
const WALKING_SPRITE const WALKING_SPRITE
const STANDING_SPRITE const STANDING_SPRITE
const STILL_SPRITE const STILL_SPRITE
@@ -652,7 +652,7 @@ const_value = 1
const PAL_OW_ROCK const PAL_OW_ROCK
; permissions ; permissions
const_value = 1 const_value SET 1
const TOWN const TOWN
const ROUTE const ROUTE
const INDOOR const INDOOR

View File

@@ -1,4 +1,3 @@
NUM_POKEMON EQU 251
const_value set 1 const_value set 1
const BULBASAUR const BULBASAUR
@@ -253,4 +252,8 @@ const_value set 1
const HO_OH const HO_OH
const CELEBI const CELEBI
const_value SET const_value + -1
NUM_POKEMON EQU const_value
EGG EQU 253 EGG EQU 253

View File

@@ -1,75 +1,80 @@
; growth rate ; growth rate
MEDIUM_FAST EQU 0 const_def
MEDIUM_SLOW EQU 3 const MEDIUM_FAST
SLOW EQU 4 const SLIGHTLY_FAST
FAST EQU 5 const SLIGHTLY_SLOW
const MEDIUM_SLOW
const SLOW
const FAST
; egg group constants ; egg group constants
const_value SET 1
MONSTER EQU $01 const MONSTER
AMPHIBIAN EQU $02 const AMPHIBIAN
INSECT EQU $03 const INSECT
AVIAN EQU $04 const AVIAN
FIELD EQU $05 const FIELD
FAIRY EQU $06 const FAIRY
PLANT EQU $07 const PLANT
HUMANSHAPE EQU $08 const HUMANSHAPE
INVERTEBRATE EQU $09 const INVERTEBRATE
INANIMATE EQU $0A const INANIMATE
AMORPHOUS EQU $0B const AMORPHOUS
FISH EQU $0C const FISH
LADIES_MAN EQU $0D const LADIES_MAN
REPTILE EQU $0E const REPTILE
NO_EGGS EQU $0F const NO_EGGS
; menu sprites ; menu sprites
ICON_POLIWAG EQU $01 const_value SET 1
ICON_JIGGLYPUFF EQU $02 const ICON_POLIWAG
ICON_DIGLETT EQU $03 const ICON_JIGGLYPUFF
ICON_PIKACHU EQU $04 const ICON_DIGLETT
ICON_STARYU EQU $05 const ICON_PIKACHU
ICON_FISH EQU $06 const ICON_STARYU
ICON_BIRD EQU $07 const ICON_FISH
ICON_MONSTER EQU $08 const ICON_BIRD
ICON_CLEFAIRY EQU $09 const ICON_MONSTER
ICON_ODDISH EQU $0a const ICON_CLEFAIRY
ICON_BUG EQU $0b const ICON_ODDISH
ICON_GHOST EQU $0c const ICON_BUG
ICON_LAPRAS EQU $0d const ICON_GHOST
ICON_HUMANSHAPE EQU $0e const ICON_LAPRAS
ICON_FOX EQU $0f const ICON_HUMANSHAPE
ICON_EQUINE EQU $10 const ICON_FOX
ICON_SHELL EQU $11 const ICON_EQUINE
ICON_BLOB EQU $12 const ICON_SHELL
ICON_SERPENT EQU $13 const ICON_BLOB
ICON_VOLTORB EQU $14 const ICON_SERPENT
ICON_SQUIRTLE EQU $15 const ICON_VOLTORB
ICON_BULBASAUR EQU $16 const ICON_SQUIRTLE
ICON_CHARMANDER EQU $17 const ICON_BULBASAUR
ICON_CATERPILLAR EQU $18 const ICON_CHARMANDER
ICON_UNOWN EQU $19 const ICON_CATERPILLAR
ICON_GEODUDE EQU $1a const ICON_UNOWN
ICON_FIGHTER EQU $1b const ICON_GEODUDE
ICON_EGG EQU $1c const ICON_FIGHTER
ICON_JELLYFISH EQU $1d const ICON_EGG
ICON_MOTH EQU $1e const ICON_JELLYFISH
ICON_BAT EQU $1f const ICON_MOTH
ICON_SNORLAX EQU $20 const ICON_BAT
ICON_HO_OH EQU $21 const ICON_SNORLAX
ICON_LUGIA EQU $22 const ICON_HO_OH
ICON_GYARADOS EQU $23 const ICON_LUGIA
ICON_SLOWPOKE EQU $24 const ICON_GYARADOS
ICON_SUDOWOODO EQU $25 const ICON_SLOWPOKE
ICON_BIGMON EQU $26 const ICON_SUDOWOODO
const ICON_BIGMON
; evolution types ; evolution types
EVOLVE_LEVEL EQU 1 const_value SET 1
EVOLVE_ITEM EQU 2 const EVOLVE_LEVEL
EVOLVE_TRADE EQU 3 const EVOLVE_ITEM
EVOLVE_HAPPINESS EQU 4 const EVOLVE_TRADE
EVOLVE_STAT EQU 5 const EVOLVE_HAPPINESS
const EVOLVE_STAT
BASE_HAPPINESS EQU 70 BASE_HAPPINESS EQU 70
@@ -77,12 +82,14 @@ FRIEND_BALL_HAPPINESS EQU 200
; happiness evolution triggers ; happiness evolution triggers
HAPPINESS_TO_EVOLVE EQU 220 HAPPINESS_TO_EVOLVE EQU 220
TR_ANYTIME EQU 1 const_value SET 1
TR_MORNDAY EQU 2 const TR_ANYTIME
TR_NITE EQU 3 const TR_MORNDAY
const TR_NITE
; stat evolution triggers ; stat evolution triggers
ATK_GT_DEF EQU 1 const_value SET 1
ATK_LT_DEF EQU 2 const ATK_GT_DEF
ATK_EQ_DEF EQU 3 const ATK_LT_DEF
const ATK_EQ_DEF

View File

@@ -1,208 +1,210 @@
SFX_DEX_FANFARE_50_79 EQU $00 const_def
SFX_ITEM EQU $01
SFX_CAUGHT_MON EQU $02
SFX_POKEBALLS_PLACED_ON_TABLE EQU $03
SFX_POTION EQU $04
SFX_FULL_HEAL EQU $05
SFX_MENU EQU $06
SFX_READ_TEXT EQU $07
SFX_READ_TEXT_2 EQU $08
SFX_DEX_FANFARE_20_49 EQU $09
SFX_DEX_FANFARE_80_109 EQU $0a
SFX_POISON EQU $0b
SFX_GOT_SAFARI_BALLS EQU $0c
SFX_BOOT_PC EQU $0d
SFX_SHUT_DOWN_PC EQU $0e
SFX_CHOOSE_PC_OPTION EQU $0f
SFX_ESCAPE_ROPE EQU $10
SFX_PUSH_BUTTON EQU $11
SFX_SECOND_PART_OF_ITEMFINDER EQU $12
SFX_WARP_TO EQU $13
SFX_WARP_FROM EQU $14
SFX_CHANGE_DEX_MODE EQU $15
SFX_JUMP_OVER_LEDGE EQU $16
SFX_GRASS_RUSTLE EQU $17
SFX_FLY EQU $18
SFX_WRONG EQU $19
SFX_SQUEAK EQU $1a
SFX_STRENGTH EQU $1b
SFX_BOAT EQU $1c
SFX_WALL_OPEN EQU $1d
SFX_PLACE_PUZZLE_PIECE_DOWN EQU $1e
SFX_ENTER_DOOR EQU $1f
SFX_SWITCH_POKEMON EQU $20
SFX_TALLY EQU $21
SFX_TRANSACTION EQU $22
SFX_EXIT_BUILDING EQU $23
SFX_BUMP EQU $24
SFX_SAVE EQU $25
SFX_POKEFLUTE EQU $26
SFX_ELEVATOR_END EQU $27
SFX_THROW_BALL EQU $28
SFX_BALL_POOF EQU $29
SFX_UNKNOWN_2A EQU $2a
SFX_RUN EQU $2b
SFX_SLOT_MACHINE_START EQU $2c
SFX_FANFARE EQU $2d
SFX_PECK EQU $2e
SFX_KINESIS EQU $2f
SFX_LICK EQU $30
SFX_POUND EQU $31
SFX_MOVE_PUZZLE_PIECE EQU $32
SFX_COMET_PUNCH EQU $33
SFX_MEGA_PUNCH EQU $34
SFX_SCRATCH EQU $35
SFX_VICEGRIP EQU $36
SFX_RAZOR_WIND EQU $37
SFX_CUT EQU $38
SFX_WING_ATTACK EQU $39
SFX_WHIRLWIND EQU $3a
SFX_BIND EQU $3b
SFX_VINE_WHIP EQU $3c
SFX_DOUBLE_KICK EQU $3d
SFX_MEGA_KICK EQU $3e
SFX_HEADBUTT EQU $3f
SFX_HORN_ATTACK EQU $40
SFX_TACKLE EQU $41
SFX_POISON_STING EQU $42
SFX_POWDER EQU $43
SFX_DOUBLESLAP EQU $44
SFX_BITE EQU $45
SFX_JUMP_KICK EQU $46
SFX_STOMP EQU $47
SFX_TAIL_WHIP EQU $48
SFX_KARATE_CHOP EQU $49
SFX_SUBMISSION EQU $4a
SFX_WATER_GUN EQU $4b
SFX_SWORDS_DANCE EQU $4c
SFX_THUNDER EQU $4d
SFX_SUPERSONIC EQU $4e
SFX_LEER EQU $4f
SFX_EMBER EQU $50
SFX_BUBBLEBEAM EQU $51
SFX_HYDRO_PUMP EQU $52
SFX_SURF EQU $53
SFX_PSYBEAM EQU $54
SFX_CHARGE EQU $55
SFX_THUNDERSHOCK EQU $56
SFX_PSYCHIC EQU $57
SFX_SCREECH EQU $58
SFX_BONE_CLUB EQU $59
SFX_SHARPEN EQU $5a
SFX_EGG_BOMB EQU $5b
SFX_SING EQU $5c
SFX_HYPER_BEAM EQU $5d
SFX_SHINE EQU $5e
SFX_UNKNOWN_5F EQU $5f
SFX_UNKNOWN_60 EQU $60
SFX_UNKNOWN_61 EQU $61
SFX_UNKNOWN_62 EQU $62
SFX_UNKNOWN_63 EQU $63
SFX_BURN EQU $64
SFX_TITLE_SCREEN_ENTRANCE EQU $65
SFX_UNKNOWN_66 EQU $66
SFX_GET_COIN_FROM_SLOTS EQU $67
SFX_PAY_DAY EQU $68
SFX_METRONOME EQU $69
SFX_CALL EQU $6a
SFX_HANG_UP EQU $6b
SFX_NO_SIGNAL EQU $6c
SFX_SANDSTORM EQU $6d
SFX_ELEVATOR EQU $6e
SFX_PROTECT EQU $6f
SFX_SKETCH EQU $70
SFX_RAIN_DANCE EQU $71
SFX_AEROBLAST EQU $72
SFX_SPARK EQU $73
SFX_CURSE EQU $74
SFX_RAGE EQU $75
SFX_THIEF EQU $76
SFX_THIEF_2 EQU $77
SFX_SPIDER_WEB EQU $78
SFX_MIND_READER EQU $79
SFX_NIGHTMARE EQU $7a
SFX_SNORE EQU $7b
SFX_SWEET_KISS EQU $7c
SFX_SWEET_KISS_2 EQU $7d
SFX_BELLY_DRUM EQU $7e
SFX_UNKNOWN_7F EQU $7f
SFX_SLUDGE_BOMB EQU $80
SFX_FORESIGHT EQU $81
SFX_SPITE EQU $82
SFX_OUTRAGE EQU $83
SFX_PERISH_SONG EQU $84
SFX_GIGA_DRAIN EQU $85
SFX_ATTRACT EQU $86
SFX_KINESIS_2 EQU $87
SFX_ZAP_CANNON EQU $88
SFX_MEAN_LOOK EQU $89
SFX_HEAL_BELL EQU $8a
SFX_RETURN EQU $8b
SFX_EXP_BAR EQU $8c
SFX_MILK_DRINK EQU $8d
SFX_PRESENT EQU $8e
SFX_MORNING_SUN EQU $8f
SFX_LEVEL_UP EQU $90
SFX_KEY_ITEM EQU $91
SFX_FANFARE_2 EQU $92
SFX_REGISTER_PHONE_NUMBER EQU $93
SFX_3RD_PLACE EQU $94
SFX_GET_EGG_FROM_DAYCARE_MAN EQU $95
SFX_GET_EGG_FROM_DAYCARE_LADY EQU $96
SFX_MOVE_DELETED EQU $97
SFX_2ND_PLACE EQU $98
SFX_1ST_PLACE EQU $99
SFX_CHOOSE_A_CARD EQU $9a
SFX_GET_TM EQU $9b
SFX_GET_BADGE EQU $9c
SFX_QUIT_SLOTS EQU $9d
SFX_EGG_CRACK EQU $9e
SFX_DEX_FANFARE_LESS_THAN_20 EQU $9f
SFX_DEX_FANFARE_140_169 EQU $a0
SFX_DEX_FANFARE_170_199 EQU $a1
SFX_DEX_FANFARE_200_229 EQU $a2
SFX_DEX_FANFARE_230_PLUS EQU $a3
SFX_EVOLVED EQU $a4
SFX_MASTER_BALL EQU $a5
SFX_EGG_HATCH EQU $a6
SFX_GS_INTRO_CHARIZARD_FIREBALL EQU $a7
SFX_GS_INTRO_POKEMON_APPEARS EQU $a8
SFX_FLASH EQU $a9
SFX_GAME_FREAK_LOGO_GS EQU $aa
SFX_NOT_VERY_EFFECTIVE EQU $ab
SFX_DAMAGE EQU $ac
SFX_SUPER_EFFECTIVE EQU $ad
SFX_BALL_BOUNCE EQU $ae
SFX_MOONLIGHT EQU $af
SFX_ENCORE EQU $b0
SFX_BEAT_UP EQU $b1
SFX_BATON_PASS EQU $b2
SFX_BALL_WIGGLE EQU $b3
SFX_SWEET_SCENT EQU $b4
SFX_SWEET_SCENT_2 EQU $b5
SFX_HIT_END_OF_EXP_BAR EQU $b6
SFX_GIVE_TRADEMON EQU $b7
SFX_GET_TRADEMON EQU $b8
SFX_TRAIN_ARRIVED EQU $b9
SFX_STOP_SLOT EQU $ba
SFX_2_BOOPS EQU $bb
SFX_GLASS_TING EQU $bc
SFX_GLASS_TING_2 EQU $bd
SFX_INTRO_UNOWN_1 EQU $be const SFX_DEX_FANFARE_50_79
SFX_INTRO_UNOWN_2 EQU $bf const SFX_ITEM
SFX_INTRO_UNOWN_3 EQU $c0 const SFX_CAUGHT_MON
SFX_DITTO_POP_UP EQU $c1 const SFX_POKEBALLS_PLACED_ON_TABLE
SFX_DITTO_TRANSFORM EQU $c2 const SFX_POTION
SFX_INTRO_SUICUNE_1 EQU $c3 const SFX_FULL_HEAL
SFX_INTRO_PICHU EQU $c4 const SFX_MENU
SFX_INTRO_SUICUNE_2 EQU $c5 const SFX_READ_TEXT
SFX_INTRO_SUICUNE_3 EQU $c6 const SFX_READ_TEXT_2
SFX_DITTO_BOUNCE EQU $c7 const SFX_DEX_FANFARE_20_49
SFX_INTRO_SUICUNE_4 EQU $c8 const SFX_DEX_FANFARE_80_109
SFX_GAME_FREAK_PRESENTS EQU $c9 const SFX_POISON
SFX_TINGLE EQU $ca const SFX_GOT_SAFARI_BALLS
SFX_UNKNOWN_CB EQU $cb const SFX_BOOT_PC
SFX_TWO_PC_BEEPS EQU $cc const SFX_SHUT_DOWN_PC
SFX_4_NOTE_DITTY EQU $cd const SFX_CHOOSE_PC_OPTION
SFX_TWINKLE EQU $ce const SFX_ESCAPE_ROPE
const SFX_PUSH_BUTTON
const SFX_SECOND_PART_OF_ITEMFINDER
const SFX_WARP_TO
const SFX_WARP_FROM
const SFX_CHANGE_DEX_MODE
const SFX_JUMP_OVER_LEDGE
const SFX_GRASS_RUSTLE
const SFX_FLY
const SFX_WRONG
const SFX_SQUEAK
const SFX_STRENGTH
const SFX_BOAT
const SFX_WALL_OPEN
const SFX_PLACE_PUZZLE_PIECE_DOWN
const SFX_ENTER_DOOR
const SFX_SWITCH_POKEMON
const SFX_TALLY
const SFX_TRANSACTION
const SFX_EXIT_BUILDING
const SFX_BUMP
const SFX_SAVE
const SFX_POKEFLUTE
const SFX_ELEVATOR_END
const SFX_THROW_BALL
const SFX_BALL_POOF
const SFX_UNKNOWN_2A
const SFX_RUN
const SFX_SLOT_MACHINE_START
const SFX_FANFARE
const SFX_PECK
const SFX_KINESIS
const SFX_LICK
const SFX_POUND
const SFX_MOVE_PUZZLE_PIECE
const SFX_COMET_PUNCH
const SFX_MEGA_PUNCH
const SFX_SCRATCH
const SFX_VICEGRIP
const SFX_RAZOR_WIND
const SFX_CUT
const SFX_WING_ATTACK
const SFX_WHIRLWIND
const SFX_BIND
const SFX_VINE_WHIP
const SFX_DOUBLE_KICK
const SFX_MEGA_KICK
const SFX_HEADBUTT
const SFX_HORN_ATTACK
const SFX_TACKLE
const SFX_POISON_STING
const SFX_POWDER
const SFX_DOUBLESLAP
const SFX_BITE
const SFX_JUMP_KICK
const SFX_STOMP
const SFX_TAIL_WHIP
const SFX_KARATE_CHOP
const SFX_SUBMISSION
const SFX_WATER_GUN
const SFX_SWORDS_DANCE
const SFX_THUNDER
const SFX_SUPERSONIC
const SFX_LEER
const SFX_EMBER
const SFX_BUBBLEBEAM
const SFX_HYDRO_PUMP
const SFX_SURF
const SFX_PSYBEAM
const SFX_CHARGE
const SFX_THUNDERSHOCK
const SFX_PSYCHIC
const SFX_SCREECH
const SFX_BONE_CLUB
const SFX_SHARPEN
const SFX_EGG_BOMB
const SFX_SING
const SFX_HYPER_BEAM
const SFX_SHINE
const SFX_UNKNOWN_5F
const SFX_UNKNOWN_60
const SFX_UNKNOWN_61
const SFX_UNKNOWN_62
const SFX_UNKNOWN_63
const SFX_BURN
const SFX_TITLE_SCREEN_ENTRANCE
const SFX_UNKNOWN_66
const SFX_GET_COIN_FROM_SLOTS
const SFX_PAY_DAY
const SFX_METRONOME
const SFX_CALL
const SFX_HANG_UP
const SFX_NO_SIGNAL
const SFX_SANDSTORM
const SFX_ELEVATOR
const SFX_PROTECT
const SFX_SKETCH
const SFX_RAIN_DANCE
const SFX_AEROBLAST
const SFX_SPARK
const SFX_CURSE
const SFX_RAGE
const SFX_THIEF
const SFX_THIEF_2
const SFX_SPIDER_WEB
const SFX_MIND_READER
const SFX_NIGHTMARE
const SFX_SNORE
const SFX_SWEET_KISS
const SFX_SWEET_KISS_2
const SFX_BELLY_DRUM
const SFX_UNKNOWN_7F
const SFX_SLUDGE_BOMB
const SFX_FORESIGHT
const SFX_SPITE
const SFX_OUTRAGE
const SFX_PERISH_SONG
const SFX_GIGA_DRAIN
const SFX_ATTRACT
const SFX_KINESIS_2
const SFX_ZAP_CANNON
const SFX_MEAN_LOOK
const SFX_HEAL_BELL
const SFX_RETURN
const SFX_EXP_BAR
const SFX_MILK_DRINK
const SFX_PRESENT
const SFX_MORNING_SUN
const SFX_LEVEL_UP
const SFX_KEY_ITEM
const SFX_FANFARE_2
const SFX_REGISTER_PHONE_NUMBER
const SFX_3RD_PLACE
const SFX_GET_EGG_FROM_DAYCARE_MAN
const SFX_GET_EGG_FROM_DAYCARE_LADY
const SFX_MOVE_DELETED
const SFX_2ND_PLACE
const SFX_1ST_PLACE
const SFX_CHOOSE_A_CARD
const SFX_GET_TM
const SFX_GET_BADGE
const SFX_QUIT_SLOTS
const SFX_EGG_CRACK
const SFX_DEX_FANFARE_LESS_THAN_20
const SFX_DEX_FANFARE_140_169
const SFX_DEX_FANFARE_170_199
const SFX_DEX_FANFARE_200_229
const SFX_DEX_FANFARE_230_PLUS
const SFX_EVOLVED
const SFX_MASTER_BALL
const SFX_EGG_HATCH
const SFX_GS_INTRO_CHARIZARD_FIREBALL
const SFX_GS_INTRO_POKEMON_APPEARS
const SFX_FLASH
const SFX_GAME_FREAK_LOGO_GS
const SFX_NOT_VERY_EFFECTIVE
const SFX_DAMAGE
const SFX_SUPER_EFFECTIVE
const SFX_BALL_BOUNCE
const SFX_MOONLIGHT
const SFX_ENCORE
const SFX_BEAT_UP
const SFX_BATON_PASS
const SFX_BALL_WIGGLE
const SFX_SWEET_SCENT
const SFX_SWEET_SCENT_2
const SFX_HIT_END_OF_EXP_BAR
const SFX_GIVE_TRADEMON
const SFX_GET_TRADEMON
const SFX_TRAIN_ARRIVED
const SFX_STOP_SLOT
const SFX_2_BOOPS
const SFX_GLASS_TING
const SFX_GLASS_TING_2
const SFX_INTRO_UNOWN_1
const SFX_INTRO_UNOWN_2
const SFX_INTRO_UNOWN_3
const SFX_DITTO_POP_UP
const SFX_DITTO_TRANSFORM
const SFX_INTRO_SUICUNE_1
const SFX_INTRO_PICHU
const SFX_INTRO_SUICUNE_2
const SFX_INTRO_SUICUNE_3
const SFX_DITTO_BOUNCE
const SFX_INTRO_SUICUNE_4
const SFX_GAME_FREAK_PRESENTS
const SFX_TINGLE
const SFX_UNKNOWN_CB
const SFX_TWO_PC_BEEPS
const SFX_4_NOTE_DITTY
const SFX_TWINKLE

View File

@@ -50503,8 +50503,8 @@ growth_rate: MACRO
ENDM ENDM
growth_rate 1, 1, 0, 0, 0 ; Medium Fast growth_rate 1, 1, 0, 0, 0 ; Medium Fast
growth_rate 3, 4, 10, 0, 30 growth_rate 3, 4, 10, 0, 30 ; Slightly Fast
growth_rate 3, 4, 20, 0, 70 growth_rate 3, 4, 20, 0, 70 ; Slightly Slow
growth_rate 6, 5, -15, 100, 140 ; Medium Slow growth_rate 6, 5, -15, 100, 140 ; Medium Slow
growth_rate 4, 5, 0, 0, 0 ; Fast growth_rate 4, 5, 0, 0, 0 ; Fast
growth_rate 5, 4, 0, 0, 0 ; Slow growth_rate 5, 4, 0, 0, 0 ; Slow