pokegold-spaceworld/constants/misc_constants.asm
DrippingYellow 05a77ef010
Some checks failed
CI / build (push) Has been cancelled
Decompiling Pokedex and Sprite Animation objects (#114)
* Partially decompiled banks $10 and $23

* Couple minor tweaks

* Decompiled mon menu icon-related functions

---------

Co-authored-by: vulcandth <vulcandth@gmail.com>
2025-03-27 23:38:42 -05:00

39 lines
775 B
NASM

; Boolean values
DEF FALSE EQU 0
DEF TRUE EQU 1
; time of day boundaries
DEF MORN_HOUR EQU 6 ; 6 AM
DEF DAY_HOUR EQU 9 ; 9 AM
DEF NITE_HOUR EQU 15 ; 3 PM
DEF NOON_HOUR EQU 12 ; 12 PM
DEF MAX_HOUR EQU 24 ; 12 AM
; wTimeOfDay::
const_def
shift_const DAY ; 0
shift_const NITE ; 1
shift_const DARKNESS ; 2
shift_const MORN ; 3
DEF NUM_DAYTIMES EQU const_value
; FlagAction arguments (see home/flag.asm)
const_def
const RESET_FLAG
const SET_FLAG
const CHECK_FLAG
; RedrawRowOrColumn functions
DEF REDRAW_COL EQU 1
DEF REDRAW_ROW EQU 2
; significant money values
DEF MAX_COINS EQU 9999
; LoadMenuMonIcon.Jumptable indexes (see engine/gfx/mon_icons.asm)
const_def
const MONICON_PARTYMENU
const MONICON_NAMINGSCREEN
const MONICON_MOVES
const MONICON_TRADE