diff options
| author | GriffinR <griffin.g.richards@gmail.com> | 2020-07-15 00:40:47 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-15 00:40:47 -0400 | 
| commit | e129d04b931a4fc0e6584b4340dc57b9162264d5 (patch) | |
| tree | a6ae1eb111f652b1cfffdd9a4bccba4a65a0de35 /include/constants | |
| parent | ebb6c4ee661758874972956a94eb06d38eaa18a8 (diff) | |
| parent | 3c356a1d7af543d84c06f28f670b6ddc4b27fdd6 (diff) | |
Merge branch 'master' into doc-overworld
Diffstat (limited to 'include/constants')
| -rw-r--r-- | include/constants/contest.h | 17 | ||||
| -rw-r--r-- | include/constants/field_specials.h | 5 | ||||
| -rw-r--r-- | include/constants/flags.h | 8 | ||||
| -rw-r--r-- | include/constants/global.h | 3 | ||||
| -rw-r--r-- | include/constants/items.h | 2 | ||||
| -rw-r--r-- | include/constants/opponents.h | 1 | ||||
| -rw-r--r-- | include/constants/vars.h | 1 | 
7 files changed, 33 insertions, 4 deletions
| diff --git a/include/constants/contest.h b/include/constants/contest.h index 186c56e2b..2de2866a3 100644 --- a/include/constants/contest.h +++ b/include/constants/contest.h @@ -29,6 +29,23 @@  #define CONTEST_CATEGORY_TOUGH    4  #define CONTEST_CATEGORIES_COUNT  5 +#define CONTEST_WINNER_ARTIST 0  // Winner shown by the artist, painting not necessarily saved +#define CONTEST_WINNER_HALL_1 1 +#define CONTEST_WINNER_HALL_2 2 +#define CONTEST_WINNER_HALL_3 3 +#define CONTEST_WINNER_HALL_4 4 +#define CONTEST_WINNER_HALL_5 5 +#define CONTEST_WINNER_HALL_6 6 +#define NUM_CONTEST_HALL_WINNERS 6 +#define CONTEST_WINNER_7 7 +#define CONTEST_WINNER_8 8 +#define CONTEST_WINNER_MUSEUM_COOL   9 +#define CONTEST_WINNER_MUSEUM_BEAUTY 10 +#define CONTEST_WINNER_MUSEUM_CUTE   11 +#define CONTEST_WINNER_MUSEUM_SMART  12 +#define CONTEST_WINNER_MUSEUM_TOUGH  13 +// NUM_CONTEST_WINNERS in constants/global.h +  #define CANT_ENTER_CONTEST             0  #define CAN_ENTER_CONTEST_EQUAL_RANK   1  #define CAN_ENTER_CONTEST_HIGH_RANK    2 diff --git a/include/constants/field_specials.h b/include/constants/field_specials.h index a2dc117e4..a01151378 100644 --- a/include/constants/field_specials.h +++ b/include/constants/field_specials.h @@ -75,4 +75,9 @@  #define FANCLUB_MEMBER7        14  #define FANCLUB_MEMBER8        15 +#define FANCOUNTER_DEFEATED_DRAKE    0 +#define FANCOUNTER_BATTLED_AT_BASE   1 +#define FANCOUNTER_FINISHED_CONTEST  2 +#define FANCOUNTER_USED_BATTLE_TOWER 3 +  #endif // GUARD_CONSTANTS_FIELD_SPECIALS_H diff --git a/include/constants/flags.h b/include/constants/flags.h index 4dd18880f..a9c7abae1 100644 --- a/include/constants/flags.h +++ b/include/constants/flags.h @@ -1573,7 +1573,9 @@  #define FLAG_UNUSED_0x91F                           (SYSTEM_FLAGS + 0xBF) // Unused Flag  // Daily Flags -#define DAILY_FLAGS_START                           0x920 +// These flags are cleared once per day +// The start and end are byte-aligned because the flags are cleared in byte increments +#define DAILY_FLAGS_START                           (FLAG_UNUSED_0x91F + (8 - FLAG_UNUSED_0x91F % 8))  #define FLAG_UNUSED_0x920                           (DAILY_FLAGS_START + 0x0)  // Unused Flag  #define FLAG_DAILY_CONTEST_LOBBY_RECEIVED_BERRY     (DAILY_FLAGS_START + 0x1)  #define FLAG_DAILY_SECRET_BASE                      (DAILY_FLAGS_START + 0x2) @@ -1639,7 +1641,9 @@  #define FLAG_UNUSED_0x95D                           (DAILY_FLAGS_START + 0x3D) // Unused Flag  #define FLAG_UNUSED_0x95E                           (DAILY_FLAGS_START + 0x3E) // Unused Flag  #define FLAG_UNUSED_0x95F                           (DAILY_FLAGS_START + 0x3F) // Unused Flag -#define DAILY_FLAGS_END                             FLAG_UNUSED_0x95F +#define DAILY_FLAGS_END                             (FLAG_UNUSED_0x95F + (7 - FLAG_UNUSED_0x95F % 8)) + +#define FLAGS_COUNT (DAILY_FLAGS_END + 1)  // Special Flags (Stored in EWRAM (gSpecialFlags), not in the SaveBlock)  #define SPECIAL_FLAGS_START                     0x4000 diff --git a/include/constants/global.h b/include/constants/global.h index b86e29a29..98f15e7dc 100644 --- a/include/constants/global.h +++ b/include/constants/global.h @@ -34,8 +34,6 @@  #define POKEBLOCKS_COUNT 40  #define OBJECT_EVENTS_COUNT 16  #define BERRY_TREES_COUNT 128 -#define FLAGS_COUNT 300 -#define VARS_COUNT 256  #define MAIL_COUNT 16  #define SECRET_BASES_COUNT 20  #define TV_SHOWS_COUNT 25 @@ -52,6 +50,7 @@  #define APPRENTICE_COUNT 4  #define APPRENTICE_MAX_QUESTIONS 9  #define MAX_REMATCH_ENTRIES 100 // only REMATCH_TABLE_ENTRIES (78) are used +#define NUM_CONTEST_WINNERS 13  #define UNION_ROOM_KB_ROW_COUNT 10  #define PYRAMID_BAG_ITEMS_COUNT 10 diff --git a/include/constants/items.h b/include/constants/items.h index d795194cf..9496a4c61 100644 --- a/include/constants/items.h +++ b/include/constants/items.h @@ -17,6 +17,8 @@  #define ITEM_LUXURY_BALL 11  #define ITEM_PREMIER_BALL 12 +#define LAST_BALL ITEM_PREMIER_BALL +  // Pokemon Items  #define ITEM_POTION 13  #define ITEM_ANTIDOTE 14 diff --git a/include/constants/opponents.h b/include/constants/opponents.h index cd35cf6b7..c9cf9239d 100644 --- a/include/constants/opponents.h +++ b/include/constants/opponents.h @@ -859,6 +859,7 @@  // NOTE: Because each Trainer uses a flag to determine when they are defeated, there is only space for 9 additional trainers before trainer flag space overflows  //       More space can be made by shifting flags around in constants/flags.h or changing how trainer flags are handled +//       MAX_TRAINERS_COUNT can be increased but will take up additional saveblock space  #define TRAINERS_COUNT                      855  #define MAX_TRAINERS_COUNT                  864 diff --git a/include/constants/vars.h b/include/constants/vars.h index 4a38bde81..625c37aa9 100644 --- a/include/constants/vars.h +++ b/include/constants/vars.h @@ -274,6 +274,7 @@  #define VAR_UNUSED_0x40FF                    0x40FF // Unused Var  #define VARS_END                             0x40FF +#define VARS_COUNT                           (VARS_END - VARS_START + 1)  #define SPECIAL_VARS_START            0x8000  // special vars | 
