diff options
author | entrpntr <entrpntr@gmail.com> | 2020-04-27 00:32:34 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-04-27 01:18:06 -0400 |
commit | 75cf425d30db6a036743cf85c483c1b537063605 (patch) | |
tree | 9c0f9533c551b7dcfa10d3fe9ce90f0e0a4611ba /constants/wram_constants.asm | |
parent | ccd5c4b99ae3b8fd9f9aa601db1afdbf0d266b00 (diff) |
Clean up engine flags.
Diffstat (limited to 'constants/wram_constants.asm')
-rw-r--r-- | constants/wram_constants.asm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/constants/wram_constants.asm b/constants/wram_constants.asm index 13d716b6..d4d94d06 100644 --- a/constants/wram_constants.asm +++ b/constants/wram_constants.asm @@ -212,6 +212,13 @@ NUM_JOHTO_BADGES EQU const_value NUM_KANTO_BADGES EQU const_value NUM_BADGES EQU NUM_JOHTO_BADGES + NUM_KANTO_BADGES +; wPokegearFlags:: + const_def + const POKEGEAR_MAP_CARD_F ; 0 + const POKEGEAR_RADIO_CARD_F ; 1 + const POKEGEAR_PHONE_CARD_F ; 2 + const POKEGEAR_EXPN_CARD_F ; 3 + POKEGEAR_OBTAINED_F EQU 7 ; wWhichRegisteredItem:: ; d680 @@ -242,6 +249,18 @@ PLAYER_SURF_PIKA EQU 8 const DAILYFLAGS1_GOLDENROD_UNDERGROUND_BARGAIN_F ; 6 const DAILYFLAGS1_TRAINER_HOUSE_F ; 7 +; wDailyFlags2:: + const_def + const DAILYFLAGS2_MT_MOON_SQUARE_CLEFAIRY_F ; 0 + const DAILYFLAGS2_UNION_CAVE_LAPRAS_F ; 1 + const DAILYFLAGS2_GOLDENROD_UNDERGROUND_GOT_HAIRCUT_F ; 2 + const DAILYFLAGS2_GOLDENROD_DEPT_STORE_TM27_RETURN_F ; 3 + const DAILYFLAGS2_DAISYS_GROOMING_F ; 4 + const DAILYFLAGS2_INDIGO_PLATEAU_RIVAL_FIGHT_F ; 5 + +; wLuckyNumberShowFlag:: +LUCKYNUMBERSHOW_GAME_OVER_F EQU 0 + ; wDayCareMan:: ; dc40 DAYCAREMAN_HAS_MON_F EQU 0 DAYCAREMAN_MONS_COMPATIBLE_F EQU 5 |