summaryrefslogtreecommitdiff
path: root/constants
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2018-01-22 14:34:55 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2018-01-22 14:34:55 -0500
commit4d8528f90329e2ddfac16046ad8bf309ec1887f2 (patch)
tree8d5001b44a226b3a633d625ecd639a43ef8a4e09 /constants
parent125d51b3b2e91230b693406de153e172f752bf41 (diff)
More engine flag constants
Diffstat (limited to 'constants')
-rw-r--r--constants/engine_flags.asm2
-rw-r--r--constants/wram_constants.asm16
2 files changed, 17 insertions, 1 deletions
diff --git a/constants/engine_flags.asm b/constants/engine_flags.asm
index f28a38fb5..0b5695dd3 100644
--- a/constants/engine_flags.asm
+++ b/constants/engine_flags.asm
@@ -120,7 +120,7 @@
; wPlayerGender
const ENGINE_PLAYER_IS_FEMALE
; wCelebiEvent
- const ENGINE_HAVE_EXAMINED_GS_BALL
+ const ENGINE_FOREST_IS_RESTLESS
; wDailyRematchFlags
const ENGINE_JACK
const ENGINE_HUEY
diff --git a/constants/wram_constants.asm b/constants/wram_constants.asm
index 5bd6ad80c..dce4ab551 100644
--- a/constants/wram_constants.asm
+++ b/constants/wram_constants.asm
@@ -105,6 +105,16 @@ DARKNESS EQU 1 << DARKNESS_F
ANYTIME EQU MORN | DAY | NITE
+; wPlayerSpriteSetupFlags:: ; d45b
+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
+
+; wPlayerGender:: ; d472
+PLAYERGENDER_FEMALE_F EQU 0
+
; ScriptFlags:: ; d434
SCRIPT_RUNNING EQU 2
@@ -185,12 +195,18 @@ PLAYER_SKATE EQU 2
PLAYER_SURF EQU 4
PLAYER_SURF_PIKA EQU 8
+; wCelebiEvent:: ; dbf3
+CELEBIEVENT_FOREST_IS_RESTLESS_F EQU 2
+
; wBikeFlags:: ; dbf5
const_def
const BIKEFLAGS_STRENGTH_ACTIVE_F ; 0
const BIKEFLAGS_ALWAYS_ON_BIKE_F ; 1
const BIKEFLAGS_DOWNHILL_F ; 2
+; wLuckyNumberShowFlag:: ; dc9d
+LUCKYNUMBERSHOW_GAME_OVER_F EQU 0
+
; wDayCareMan:: ; def5
DAYCAREMAN_HAS_MON_F EQU 0
DAYCAREMAN_MONS_COMPATIBLE_F EQU 5