summaryrefslogtreecommitdiff
path: root/include/constants/personality_test.h
blob: b2c9a92d5e1eb3a7a9c93d31611ed1d8b19f8f7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#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