diff options
| author | Zumi <13794376+ZoomTen@users.noreply.github.com> | 2021-07-05 05:08:45 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-04 18:08:45 -0400 |
| commit | af65010e2ca58f275b14046d60708b83398dddfd (patch) | |
| tree | 624ef4cd0c305cd7bb98fd7ecc91d1dbb2739cd1 /constants | |
| parent | 71050d61347bfe1e196a385d84bfb6a3c6d7e22d (diff) | |
Disassemble field debug (bank $3f) (#97)
* Disassemble SFX and cries
* Disassemble clock dialog
* Disassemble slot machine minigame
* Disassemble AnimateTilesetImpl
* Disassemble start menu frame type dialog
* Disassemble field menu
* Split debug menus into debug folder
* Remove redundant shims
Diffstat (limited to 'constants')
| -rw-r--r-- | constants/movement_constants.asm | 9 | ||||
| -rw-r--r-- | constants/sfx_constants.asm | 5 | ||||
| -rw-r--r-- | constants/wram_constants.asm | 10 |
3 files changed, 24 insertions, 0 deletions
diff --git a/constants/movement_constants.asm b/constants/movement_constants.asm index 6347318..ff920a0 100644 --- a/constants/movement_constants.asm +++ b/constants/movement_constants.asm @@ -42,3 +42,12 @@ const MOVEMENT_28 ; $28 const MOVEMENT_29 ; $29 const NO_MOVEMENT ; $2a + const MOVEMENT_2B ; $2b + const MOVEMENT_2C ; $2c + const MOVEMENT_2D ; $2d + const MOVEMENT_2E ; $2e + const MOVEMENT_2F ; $2f + const MOVEMENT_30 ; $30 + const MOVEMENT_31 ; $31 + const MOVEMENT_32 ; $32 + const MOVEMENT_33 ; $33 diff --git a/constants/sfx_constants.asm b/constants/sfx_constants.asm index a0a3418..b5d7fd0 100644 --- a/constants/sfx_constants.asm +++ b/constants/sfx_constants.asm @@ -9,12 +9,17 @@ SFX_BOOT_PC EQU $0A SFX_ESCAPE_ROPE EQU $0B ; player shrink SFX_WRONG EQU $14 SFX_SWITCH_POKEMON EQU $1B +SFX_1E EQU $1E SFX_POKEFLUTE EQU $21 +SFX_22 EQU $22 +SFX_24 EQU $24 +SFX_25 EQU $25 SFX_POKEDEX_REGISTRATION EQU $27 SFX_TITLE_ENTRANCE EQU $2D SFX_PAY_DAY EQU $30 SFX_GAME_FREAK_LOGO_RG EQU $31 +SFX_SHINE EQU $62 ; R/G/B/Y fanfares SFX_GET_ITEM_RG EQU $63 diff --git a/constants/wram_constants.asm b/constants/wram_constants.asm index ff00944..f2298ae 100644 --- a/constants/wram_constants.asm +++ b/constants/wram_constants.asm @@ -27,3 +27,13 @@ PLAYER_SURF_PIKA EQU 8 const DEBUG_BATTLE_F const DEBUG_FIELD_F const CONTINUED_F + + +; wToolgearFlags:: +SHOW_TOOLGEAR_F EQU 0 +TOOLGEAR_TO_WINDOW_F EQU 2 +HIDE_TOOLGEAR_F EQU 7 + +; wd153:: +TOOLGEAR_COORDS_F EQU 0 +OVERWORLD_MINUTE_TIME_F EQU 7 |
