aboutsummaryrefslogtreecommitdiff
path: root/strings.c
blob: 69cff574571b7e6cab8ef00e8647cc5230b07c60 (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
29
30
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[] = {
  '\'', '?', '.', '/', '`', '~', ',', '+', '!'
};