diff options
author | entrpntr <entrpntr@gmail.com> | 2020-04-10 18:30:21 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-04-10 18:31:36 -0400 |
commit | 22922bbb5965dfbcd9fc4aaffff92967d1f7f390 (patch) | |
tree | a399bf51b38a165eac97abb3839df0b62db2633d /constants/wram_constants.asm | |
parent | 48c658ccdbb1c79608f805264c83a39d20c60817 (diff) |
Add engine/overworld/map_setup.asm.
Diffstat (limited to 'constants/wram_constants.asm')
-rw-r--r-- | constants/wram_constants.asm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/constants/wram_constants.asm b/constants/wram_constants.asm index 4ff9e2db..96d78f92 100644 --- a/constants/wram_constants.asm +++ b/constants/wram_constants.asm @@ -105,6 +105,13 @@ DAY EQU 1 << DAY_F NITE EQU 1 << NITE_F DARKNESS EQU 1 << DARKNESS_F +; wPlayerSpriteSetupFlags:: +PLAYERSPRITESETUP_FACING_MASK EQU %11 +PLAYERSPRITESETUP_FEMALE_TO_MALE_F EQU 2 +PLAYERSPRITESETUP_CUSTOM_FACING_F EQU 5 +PLAYERSPRITESETUP_SKIP_RELOAD_GFX_F EQU 6 +PLAYERSPRITESETUP_RESET_ACTION_F EQU 7 + ; wScriptFlags:: SCRIPT_RUNNING EQU 2 @@ -193,6 +200,12 @@ PLAYER_SKATE EQU 2 PLAYER_SURF EQU 4 PLAYER_SURF_PIKA EQU 8 +; wBikeFlags:: + const_def + const BIKEFLAGS_STRENGTH_ACTIVE_F ; 0 + const BIKEFLAGS_ALWAYS_ON_BIKE_F ; 1 + const BIKEFLAGS_DOWNHILL_F ; 2 + ; wDayCareMan:: ; dc40 DAYCAREMAN_HAS_MON_F EQU 0 DAYCAREMAN_MONS_COMPATIBLE_F EQU 5 |