summaryrefslogtreecommitdiff
path: root/include/constants
diff options
context:
space:
mode:
authorGriffinR <25753467+GriffinRichards@users.noreply.github.com>2019-08-05 20:37:09 -0400
committerhuderlem <huderlem@gmail.com>2019-08-21 17:06:55 -0500
commitd931ba96020397ec9a9740a9d67aac8a99bf11f6 (patch)
treeec3548ef8c9d10eb7a75f13348a5f9f7bd0adad7 /include/constants
parent7fc99f39525a89aa0f3158b98bc61e709bebdfa2 (diff)
document remaining funcs
Diffstat (limited to 'include/constants')
-rw-r--r--include/constants/lilycove_lady.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/include/constants/lilycove_lady.h b/include/constants/lilycove_lady.h
new file mode 100644
index 000000000..6ef70d8a7
--- /dev/null
+++ b/include/constants/lilycove_lady.h
@@ -0,0 +1,30 @@
+#ifndef GUARD_LILYCOVE_LADY_CONSTANTS_H
+#define GUARD_LILYCOVE_LADY_CONSTANTS_H
+
+#define LILYCOVE_LADY_QUIZ 0
+#define LILYCOVE_LADY_FAVOR 1
+#define LILYCOVE_LADY_CONTEST 2
+#define LILYCOVE_LADY_COUNT 3
+
+#define LILYCOVE_LADY_STATE_READY 0
+#define LILYCOVE_LADY_STATE_COMPLETED 1
+#define LILYCOVE_LADY_STATE_PRIZE 2
+
+#define QUIZ_AUTHOR_PLAYER 0
+#define QUIZ_AUTHOR_OTHER_PLAYER 1
+#define QUIZ_AUTHOR_LADY 2
+
+// Would be redundant with the above set if GF hadn't mixed the order
+#define QUIZ_AUTHOR_NAME_LADY 0
+#define QUIZ_AUTHOR_NAME_PLAYER 1
+#define QUIZ_AUTHOR_NAME_OTHER_PLAYER 2
+
+// TODO use array count macro?
+#define QUIZ_QUESTION_LEN 9 //ARRAY_COUNT(sQuizLadyQuestion#)
+#define NUM_QUIZ_QUESTIONS 16 //ARRAY_COUNT(sQuizLadyQuizQuestions)
+#define FAVOR_DESCRIPTION_NUM 6 //ARRAY_COUNT(sFavorLadyDescriptions)
+
+#define LILYCOVE_LADY_GIFT_THRESHOLD 5
+
+
+#endif