pmd-red/include/constants/personality_test.h
2021-12-19 14:59:10 -08:00

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