mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-05 00:45:12 -05:00
29 lines
428 B
C
29 lines
428 B
C
#ifndef GUARD_CONSTANTS_PERSONALITY_TEST_H
|
|
#define GUARD_CONSTANTS_PERSONALITY_TEST_H
|
|
|
|
enum NaturePersonalities {
|
|
HARDY,
|
|
DOCILE,
|
|
BRAVE,
|
|
JOLLY,
|
|
IMPISH,
|
|
NAIVE,
|
|
TIMID,
|
|
HASTY,
|
|
SASSY,
|
|
CALM,
|
|
RELAXED,
|
|
LONELY,
|
|
QUIRKY,
|
|
MISC,
|
|
};
|
|
|
|
#define NUM_PARTNERS 10
|
|
#define NUM_QUIZ_QUESTIONS 55
|
|
#define MAX_ASKED_QUESTIONS 8
|
|
#define NUM_PERSONALITIES MISC
|
|
|
|
#define BRAVE_2B_TRIGGER 99
|
|
|
|
#endif
|