diff options
author | Zumi <13794376+ZoomTen@users.noreply.github.com> | 2021-01-26 10:29:07 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-25 22:29:07 -0500 |
commit | d9f52a57a604cc1204f6077e21d75e04cb954672 (patch) | |
tree | d1cfa2e3003c1bac1b74a3a289e01421dfcc387d /constants/sfx_constants.asm | |
parent | 735e9f09a2bfc6c32ed596906c07ec501fb05070 (diff) |
Disassemble RTC setup dialog and slot machine minigame (bank $24) (#87)
Also identify SFX and cry pointers
Diffstat (limited to 'constants/sfx_constants.asm')
-rw-r--r-- | constants/sfx_constants.asm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/constants/sfx_constants.asm b/constants/sfx_constants.asm index 1540c87..fcd1edf 100644 --- a/constants/sfx_constants.asm +++ b/constants/sfx_constants.asm @@ -1,6 +1,28 @@ ; TODO SFX_BOOT_PC EQU $0A +SFX_POTION EQU $01 +SFX_FULL_HEAL EQU $02 +SFX_MENU EQU $03 +SFX_READ_TEXT EQU $04 +SFX_READ_TEXT_2 EQU $05 +SFX_ESCAPE_ROPE EQU $0B ; player shrink +SFX_WRONG EQU $14 +SFX_SWITCH_POKEMON EQU $1B +SFX_POKEFLUTE EQU $21 +SFX_POKEDEX_REGISTRATION EQU $27 +SFX_TITLE_ENTRANCE EQU $2D SFX_PAY_DAY EQU $30 SFX_GAME_FREAK_LOGO_RG EQU $31 + +; R/G/B/Y fanfares +SFX_GET_ITEM_RG EQU $63 +SFX_UNUSED_FANFARE_1 EQU $64 +SFX_POKEDEX_EVALUATION_RG EQU $65 +SFX_LEVEL_UP_RG EQU $66 +SFX_EVOLUTION_COMPLETE_RG EQU $67 +SFX_GET_KEY_ITEM_RG EQU $68 +SFX_UNUSED_FANFARE_2 EQU $69 +SFX_CAUGHT_POKEMON_RG EQU $6A +SFX_UNUSED_FANFARE_3 EQU $6B |