diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-01-26 04:02:15 -0500 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2020-01-26 09:42:55 -0600 |
commit | 9a6c2c25d08ef157cc4800014651bd0c679f6fc5 (patch) | |
tree | a9ac501415b373b05829481edc6e43d53bad8db6 /include/constants/items.h | |
parent | 7232bfecc2f16019a1a7a49332384f1760d06083 (diff) |
Add some capacity constants
Diffstat (limited to 'include/constants/items.h')
-rw-r--r-- | include/constants/items.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/constants/items.h b/include/constants/items.h index db3474a72..c23816901 100644 --- a/include/constants/items.h +++ b/include/constants/items.h @@ -491,6 +491,10 @@ #define NUM_TECHNICAL_MACHINES 50 #define NUM_HIDDEN_MACHINES 8 +#define MAX_BAG_ITEM_CAPACITY 99 +#define MAX_PC_ITEM_CAPACITY 999 +#define MAX_BERRY_CAPACITY 999 + // Check if the item is one that can be used on a Pokemon. #define ITEM_HAS_EFFECT(item) ((item) >= ITEM_POTION && (item) <= ITEM_0B2) |