summaryrefslogtreecommitdiff
path: root/rounds.py
blob: 561e6971a67389a4412feba87e854ae6f2fcef1f (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
ROUNDS = [
    {
        "dialog": [
            {
                "who": "camera",
                "text": "Greetings! Wel- come back to your favorite",
            },
            {
                "who": "camera",
                "text": "show ... the ORB of FORTUITY!",
            },
            {
                "who": "camera",
                "text": "Our first contestant is...YOU! ",
            },
            {
                "who": "you",
                "text": "Uh, where am I exactly? I must've fallen",
            },
            {
                "who": "you",
                "text": "asleep watching TV at the dentist.",
            },
            {
                "who": "camera",
                "text": "And our prior Orb Champion, THEM!",
            },
            {
                "who": "them",
                "text": "Glad to be back.",
            },
            {
                "who": "camera",
                "text": "Today our contests are playing for...",
            },
            {
                "who": "camera",
                "text": "... the GRAND PRIZE!",
            },
            {
                "who": "camera",
                "text": "Now it's time for YOU to spin the orb!",
            },
        ],
        "wheel_outcomes": [
            "$100", "$200", "$300", "$400",
        ],
        "phrases": [
            {
                "phrase": ["DONT", "PANIC"],
                "category": "Quotes",
            },
            {
                "phrase": ["MAKE", "IT", "SO"],
                "category": "Quotes",
            },
            {
                "phrase": ["PHONE", "HOME"],
                "category": "Quotes",
            },
        ],
    },
    {
        "dialog": [
            {
                "who": "you",
                "text": "That felt familiar...",
            },
            {
                "who": "them",
                "text": "That's an odd 'feeling',..",
            },
            {
                "who": "them",
                "text": "considering I am the champion.",
            },
            {
                "who": "camera",
                "text": "We must move on! Four more rounds.",
            },
        ],
        "wheel_outcomes": [
            "$200", "$400", "$600", "$800",
        ],
        "phrases": [
            {
                "phrase": ["DONT", "BLINK"],
                "category": "Ominous phrases",
            },
            {
                "phrase": ["HELP", "IM", "TRAPPED"],
                "category": "Ominous phrases",
            },
            {
                "phrase": ["LOOK", "BEHIND", "YOU"],
                "category": "Ominous phrases",
            },
        ],
    },
    {
        "dialog": [
            {
                "who": "you",
                "text": "What exactly are the rules to this game?",
            },
            {
                "who": "them",
                "text": "What do you mean by rules?",
            },
            {
                "who": "you",
                "text": "What determines who wins?",
            },
            {
                "who": "camera",
                "text": "Don't worry! Just spin that orb",
            },
            {
                "who": "camera",
                "text": "...and watch out for the penalties!",
            },
            {
                "who": "you",
                "text": "That's the type of rule I want to know about!",
            },
            {
                "who": "camera",
                "text": "Round three!",
            },
        ],
        "wheel_outcomes": [
            "$300", "$600", "$900", "$1200",
        ],
        "phrases": [
            {
                "phrase": ["BATTLE" "OF", "XEANII"],
                "category": "Historic Events",
            },
            {
                "phrase": ["JOXIAN", "EMPIRE"],
                "category": "Historic Events",
            },
            {
                "phrase": ["OMEGDONI", "ERUPTION"],
                "category": "Historic Events",
            },
        ],
    },
    {
        "dialog": [
            {
                "who": "you",
                "text": "What kind of history was that?",
            },
            {
                "who": "them",
                "text": "Didn't you learn about it in your...",
            },
            {
                "who": "them",
                "text": "ancient history class?",
            },
            {
                "who": "you",
                "text": "I must've been sick that day.",
            },
            {
                "who": "you",
                "text": "Wait, what happened to THEM?",
            },
            {
                "who": "camera",
                "text": "Just some minor technical difficulties.",
            },
            {
                "who": "camera",
                "text": "The production team is working on it.",
            },
            {
                "who": "camera",
                "text": "We're almost done, round four!",
            },
        ],
        "wheel_outcomes": [
            "$400", "$800", "$1200", "$1600",
        ],
        "phrases": [
            {
                "phrase": ["GLORBIUS", "WORLD", "EATER"],
                "category": "\"Things\"",
            },
            {
                "phrase": ["DEATH", "MADE", "FLESH"],
                "category": "\"Things\"",
            },
            {
                "phrase": ["THE", "WARLOCK", "PLOYON"],
                "category": "\"Things\"",
            },
        ],
    },
    {
        "dialog": [
            {
                "who": "you",
                "text": "Something is very wrong.",
            },
            {
                "who": "you",
                "text": "What language was that?",
            },
            {
                "who": "camera",
                "text": "You'll understand soon enough.",
            },
            {
                "who": "you",
                "text": "I'm not sure I want to play anymore",
            },
            {
                "who": "camera",
                "text": "It's not up to you.",
            },
        ],
        "wheel_outcomes": [
            "$500", "$1000", "$1500", "$2000", "GRAND PRIZE"
        ],
        "phrases": [
            {
                "phrase": ["MEET", "YOUR", "DOOM"],
                "category": "YOUR LAST WORDS",
            },
        ],
    },
]

END_DIALOG = [
    {
        "who": "you",
        "text": "Did I win?",
    },
    {
        "who": "you",
        "text": "I was doing really well.",
    },
    {
        "who": "camera",
        "text": "After tallying the points....",
    },
    {
        "who": "camera",
        "text": "YOU are not the winner.",
    },
    {
        "who": "you",
        "text": "Does that mean I can leave now?",
    },
    {
        "who": "camera",
        "text": "Thanks for tuning in folks!",
    },
    {
        "who": "camera",
        "text": "We'll see you next time",
    },
    {
        "who": "camera",
        "text": "on ORB OF FORTUITY!",
    },
]