diff options
Diffstat (limited to 'include/constants')
-rw-r--r-- | include/constants/global.h | 6 | ||||
-rw-r--r-- | include/constants/mailbox.h | 6 | ||||
-rw-r--r-- | include/constants/personality_test.h | 3 | ||||
-rw-r--r-- | include/constants/wonder_mail.h | 4 |
4 files changed, 16 insertions, 3 deletions
diff --git a/include/constants/global.h b/include/constants/global.h index f4e5961..5512b6a 100644 --- a/include/constants/global.h +++ b/include/constants/global.h @@ -3,5 +3,11 @@ #define POKEMON_NAME_LENGTH 10 #define TEAM_NAME_LENGTH 10 +#define MAX_TEAM_MEMBERS 4 + +#define MAX_MON_MOVES 4 + +#define MALE 0 +#define FEMALE 1 #endif // GUARD_CONSTANTS_GLOBAL_H diff --git a/include/constants/mailbox.h b/include/constants/mailbox.h new file mode 100644 index 0000000..6a91862 --- /dev/null +++ b/include/constants/mailbox.h @@ -0,0 +1,6 @@ +#ifndef GUARD_CONSTANTS_MAILBOX_H +#define GUARD_CONSTANTS_MAILBOX_H + +#define MAX_ACCEPTED_JOBS 8 + +#endif // GUARD_CONSTANTS_MAILBOX_H diff --git a/include/constants/personality_test.h b/include/constants/personality_test.h index bd6f159..cfb9c3d 100644 --- a/include/constants/personality_test.h +++ b/include/constants/personality_test.h @@ -22,7 +22,4 @@ enum NaturePersonalities { #define NUM_QUIZ_QUESTIONS 55 #define MAX_ASKED_QUESTIONS 8 -#define MALE 0 -#define FEMALE 1 - #endif diff --git a/include/constants/wonder_mail.h b/include/constants/wonder_mail.h index ab5a9ee..7ddaac7 100644 --- a/include/constants/wonder_mail.h +++ b/include/constants/wonder_mail.h @@ -25,4 +25,8 @@ enum RewardType END_REWARDS }; +#define NUM_POKEMON_NEWS 56 // 50 normal + 6 special issues +#define PASSWORD_BUFFER_SIZE 54 +#define MAX_ITEM_REWARDS 3 + #endif //GUARD_CONSTANTS_WONDER_MAIL_H |