diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-02-14 21:17:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-14 21:17:44 -0500 |
commit | 759f373d3153afb0e9dcf5050a700aeca036a919 (patch) | |
tree | b43e8d72d1886eb1c38dadd67113bec77ef41a26 /include | |
parent | 8d85ff1683437897cb0c06dd84fa2d927f560090 (diff) | |
parent | 59695b82210cb2c95c10b52efc1a88e18c67dea9 (diff) |
Merge pull request #488 from GriffinRichards/map-constants
Sync roamer.c, add missing map constant usage
Diffstat (limited to 'include')
-rw-r--r-- | include/constants/pokemon.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/constants/pokemon.h b/include/constants/pokemon.h index 737eed4d4..43a6231ca 100644 --- a/include/constants/pokemon.h +++ b/include/constants/pokemon.h @@ -209,8 +209,14 @@ #define FRIENDSHIP_EVENT_FAINT_OUTSIDE_BATTLE 8 #define FRIENDSHIP_EVENT_FAINT_LARGE 9 -#define PARTY_SIZE 6 +#define MAX_PER_STAT_IVS 31 +#define MAX_IV_MASK 31 +#define USE_RANDOM_IVS (MAX_PER_STAT_IVS + 1) +#define MAX_PER_STAT_EVS 255 #define MAX_TOTAL_EVS 510 +#define EV_ITEM_RAISE_LIMIT 100 + +#define PARTY_SIZE 6 #define UNOWN_FORM_COUNT 28 #define BOX_NAME_LENGTH 8 |