aboutsummaryrefslogtreecommitdiff
path: root/strings.c
diff options
context:
space:
mode:
Diffstat (limited to 'strings.c')
-rw-r--r--strings.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/strings.c b/strings.c
index 69cff57..a2be3d9 100644
--- a/strings.c
+++ b/strings.c
@@ -2,6 +2,8 @@
const char* stage1_triggers[] = {
"im fine",
"im fine how are you",
+ "i am fine",
+ "i am fine how are you",
"how are you"
};
const char* stage2_triggers[] = {
@@ -23,9 +25,24 @@ const char* stage4_triggers[] = {
"no lets play global thermonuclear war instead",
"later lets play global thermonuclear war",
"later lets play global thermonuclear war instead",
+ "later",
"lets play global thermonuclear war",
"global thermonuclear war is better"
};
+const char* exit_triggers[] = {
+ "goodbye",
+ "good-bye",
+ "bye",
+ "bye-bye",
+ "see you later",
+ "logout"
+};
+const char* exit_responses[] = {
+ "GOODBYE.",
+ "BYE!",
+ "BYE-BYE!",
+ "GOOD-BYE.",
+};
const char punctuation_marks[] = {
'\'', '?', '.', '/', '`', '~', ',', '+', '!'
};