From 719be73360ebf8a65038a90ea82ea4e290759df1 Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Mon, 23 Jun 2014 11:47:32 -0400 Subject: Fixed GTN --- strings.c | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 strings.c (limited to 'strings.c') diff --git a/strings.c b/strings.c new file mode 100644 index 0000000..69cff57 --- /dev/null +++ b/strings.c @@ -0,0 +1,31 @@ +#include "strings.h" +const char* stage1_triggers[] = { + "im fine", + "im fine how are you", + "how are you" +}; +const char* stage2_triggers[] = { + "people sometimes make mistakes", + "sometimes people make mistakes", + "mistakes are make by people sometimes", + "people make mistakes sometimes", + "people make mistakes", + "people sometimes make mistak" /* this is no typo. in the movie, at one scene, it appears like this */ +}; +const char* stage3_triggers[] = { + "love to how about global thermonuclear war", + "love to", + "how about global thermonuclear war", + "global thermonuclear war" +}; +const char* stage4_triggers[] = { + "no lets play global thermonuclear war", + "no lets play global thermonuclear war instead", + "later lets play global thermonuclear war", + "later lets play global thermonuclear war instead", + "lets play global thermonuclear war", + "global thermonuclear war is better" +}; +const char punctuation_marks[] = { + '\'', '?', '.', '/', '`', '~', ',', '+', '!' +}; -- cgit v1.1