forked from joepinion/rx-scenarios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·618 lines (549 loc) · 57.6 KB
/
index.html
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Raxxon Scenarios</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/rx.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="scenarios/general.js" type="text/javascript"></script>
</head>
<body>
<div class="site-container">
<div class="scentable-container">
<h1>Raxxon Scenarios</h1>
<table class="scentable">
<tbody>
<tr>
<td><span class="btn btn-large scen-btn">Gathering Ghosts Scenario</span></td>
<td>Find the carriers and bring them to Raxxon.</td>
</tr>
<tr>
<td><span class="btn btn-large scen-btn">Mutation Madness Scenario</span></td>
<td>Deal with an ever-evolving virus.</td>
</tr>
<tr>
<td><span class="btn btn-large scen-btn">Uncertainty Scenario</span></td>
<td>Ensure each healthy person is truly as healthy as they seem.</td>
</tr>
<tr>
<td><span class="btn btn-large scen-btn">Calm the Crowd Scenario</span></td>
<td>A rioting population needs to be settled before being evacauated.</td>
</tr>
<tr>
<td><span class="btn btn-large scen-btn">High Priority Targets Scenario</span></td>
<td>Three celebrities are at risk and must be brought to Raxxon immediately.</td>
</tr>
</tbody>
</table>
<div style="text-align:center;margin-top:20px;">A fan project by Raxxon game designer J. Arthur Ellis. <a href="https://twitter.com/joepinion">@joepinion</a></div>
</div>
<div class="scen-container">
<div class="scen-menu">
<div class="btn btn-large intro disabled">INTRO</div><div class="btn btn-large setup disabled">SETUP</div><div class="btn btn-large rules disabled">RULES</div><div class="btn btn-large end disabled">GAME OVER</div>
</div><div class="scen-content">
<div class="loading">
<img src='images/loading.gif' class='loading' alt="loading..." />
</div>
<div class="scen-snippet intro"></div>
<div class="scen-snippet setup"></div>
<div class="scen-snippet rules"></div>
<div class="scen-snippet end"></div>
<div class="scen-snippet special"><div class="special-content"></div><p style="text-align:center;"><div class='btn btn-large special-close'>Click here after you have resolved the above text.</div></p></div>
</div>
</div>
</div>
</div>
</div>
<div class="scen-data s_mm_intro"><h2>Mutation Madness</h2>
<p><span class="n">MISSION BRIEFING: We are sending you to a city with one of the fastest-spreading infection rates on earth. But the strain is not only spreading quickly - it's also mutating, with new symptoms every week.</span></p>
<p><span class="n">Raxxon is in the area running the containment plan. We need you to work with them, and their quarantine facility may be especially helpful to stop the spread. But the rumors that Raxxon might be messing with the virus thesmselves is troubling. Don't be surprised if the disease seems to mutate faster as Raxxon's power grows.</span></p>
<p><span class="n">We have little hope that those infected in the area will ever be saved. Get the healthy population out of there and live to fight another day.</span></p>
<p>Click "Setup" above to continue.</p>
</div>
<div class="scen-data s_mm_setup"><h2>Mutation Madness Set-Up</h2>
<h3>Setup</h3>
<p>Set up the game for Regular difficulty, with the following changes:</p>
<ul>
<li>Find all 10 volatile infected cards, along with 3 chaotic cards and 3 carrier cards. Shuffle these 16 cards in with the 30 healthy cards to create the Population Draw Pile. The 14 other infected cards make up the Infection Supply.</li>
</ul>
<h3>Victory Conditions</h3>
<p>There are no speical victory conditions for this scenario. Evacuate all 30 healthy cards before Raxxon takes over or the infection overruns the city to win.</p>
<p>Right now, click "Rules" above to see special rule adjustments for this scenario.</p>
</div>
<div class="scen-data s_mm_rules"><h2>Mutation Madness Rule Adjustments</h2>
<ol>
<li>Whenever a Raxxon card with a title of "Raxxon's ______" is drawn, instead of resolving that card, use the button below.
<br /><div class="scen-rx-btn btn btn-large">CLICK HERE WHENEVER YOU DRAW A RAXXON'S ________ CARD</div>
</li>
<li class="rx-rule rule-rx1" style="display:none;"><strong>The Mutation:</strong> <span class="rxico flip" style="width:20px;height:20px;"></span> effects on volatile infected cards no longer apply. Instead, at any time during the Player Actions phase, if a face-up volatile card is adjacent to 1 or more face-up healthy cards, immediately kill all those healthy cards, without triggering any <span class="rxico die" style="width:20px;height:20px;"></span> effects. (This does not apply during End of Day.)</li>
<li class="rx-rule rule-rx2" style="display:none;"><strong>The Mutation:</strong> <span class="rxico flip" style="width:20px;height:20px;"></span> effects on volatile infected cards no longer apply. Instead, at any time during the Player Actions phase, if a face-up volatile card is adjacent to 1 or more face-up healthy cards, immediately kill all those healthy cards. Whenever 1 or more healthy cards are killed in this way, trigger <span class="rxico infect" style="width:20px;height:20px;"></span> once. (Only once, even if more than 1 healthy card is affected.) <span class="rxico die" style="width:20px;height:20px;"></span> effects should still not be resolved when cards are killed in this way.</li>
<li class="rx-rule rule-rx3" style="display:none;"><strong>The Mutation:</strong> <span class="rxico flip" style="width:20px;height:20px;"></span> effects on volatile infected cards no longer apply. Instead, at any time during the Player Actions phase, if a face-up volatile card is adjacent to 1 or more face-up healthy cards, immediately kill all those healthy cards. Whenever 1 or more healthy cards are killed in this way, trigger <span class="rxico infect" style="width:20px;height:20px;"></span> once for each card killed. <span class="rxico die" style="width:20px;height:20px;"></span> effects should not be resolved when cards are killed in this way.</li>
<li class="rx-rule rule-rx4" style="display:none;"><strong>The Mutation:</strong> <span class="rxico flip" style="width:20px;height:20px;"></span> effects on volatile infected cards no longer apply. Instead, at any time during the Player Actions phase, if a face-up volatile card is adjacent to 1 or more face-up healthy cards, immediately kill all those healthy cards. <span class="rxico die" style="width:20px;height:20px;"></span> effects should not be resolved when cards are killed in this way. Whenever 1 or more healthy cards are killed in this way, trigger <span class="rxico infect" style="width:20px;height:20px;"></span> once for each card killed, but instead of placing each card from the infeciton supply into the population discard pile, place it facedown in the space the killed card occupied.</li>
<li class="rx-rule rule-rx5" style="display:none;"><strong>The Mutation:</strong> <span class="rxico flip" style="width:20px;height:20px;"></span> effects on volatile infected cards no longer apply. Instead, at any time during the Player Actions phase, if a face-up volatile card is adjacent to 1 or more face-up healthy cards, immediately kill all those healthy cards. <span class="rxico die" style="width:20px;height:20px;"></span> effects should not be resolved when cards are killed in this way. Whenever 1 or more healthy cards are killed in this way, trigger <span class="rxico infect" style="width:20px;height:20px;"></span> once for each card killed, but instead of placing each card from the infeciton supply into the population discard pile, place it face-up in the space the killed card occupied.</li>
<li class="rx-rule rule-rx6" style="display:none;"><strong>The Mutation:</strong> <span class="rxico flip" style="width:20px;height:20px;"></span> effects on volatile infected cards no longer apply. Instead, at any time during the Player Actions phase, if a face-up volatile card is adjacent to 1 or more face-up healthy cards, immediately kill all those healthy cards. <span class="rxico die" style="width:20px;height:20px;"></span> effects should not be resolved when cards are killed in this way. Whenever 1 or more healthy cards are killed in this way, trigger <span class="rxico infect" style="width:20px;height:20px;"></span> once for each card killed, but instead of placing each card from the infeciton supply into the population discard pile, place it face-up in the space the killed card occupied.</li>
<li class="rx-rule rule-rx7" style="display:none;"><strong>The Mutation:</strong> <span class="rxico flip" style="width:20px;height:20px;"></span> effects on volatile infected cards no longer apply. Instead, at any time during the Player Actions phase, if a face-up volatile card is adjacent to 1 or more face-up healthy cards, immediately kill all those healthy cards. <span class="rxico die" style="width:20px;height:20px;"></span> effects should not be resolved when cards are killed in this way. Whenever 1 or more healthy cards are killed in this way, trigger <span class="rxico infect" style="width:20px;height:20px;"></span> once for each card killed, but instead of placing each card from the infeciton supply into the population discard pile, place it face-up in the space the killed card occupied.</li>
</ol>
</div>
<div class="scen-data s_mm_end"><h2>Mutation Madness Endings</h2>
<p>After you have won or lost, choose the appropriate option below.</p>
<p><div class='btn btn-large ending won'>We WON!</div></p>
<p><div class='btn btn-large ending lost-infection'>We LOST due to infection overrun.</div></p>
<p><div class='btn btn-large ending lost-raxxon'>We LOST due to Raxxon takeover.</div></p>
<div class="end-story context-moment won">
<p><span class="n">As the helicopter takes off, you look at the chaos below you in the city. In your mind's eye, you see these new terrifying versions of the infected spreading throughout the world. "I will never let this happen," you say to yourself. Your resolve may be just what this world needs to make it another day. THE END.</span></p>
</div>
<div class="end-story context-moment lost-infection">
<p><span class="n">You can't even remember the last time you saw a healthy person. These volatile infected are too fast, too contagious. They've taken this city. You know in your heart there's nothing left but to burn it to the ground. THE END.</span></p>
</div>
<div class="end-story context-moment lost-raxxon">
<p><span class="n">"Don't worry, it's all over now," you're told. "This city will be safe. This city will be secure." After the exhaustion of the last few days, you are all too happy to see the smiling faces of Raxxon administrators take over the process fully. Those rumors from the initial mission briefing still nag at your mind - could Raxxon have made the disease worse, SO THAT they can take over? You're too tired to care. THE END.</span></p>
</div>
</div>
<div class="scen-data s_mm_special"><div class="rx-card context-moment rx1">
<p><span class="n">MUTATION REPORT: Some of the infected are becoming more aggressive. Beware.</span></p>
<p><strong>The Mutation:</strong> For the rest of the game, <span class="rxico flip" style="width:20px;height:20px;"></span> effects on volatile infected cards no longer apply. Instead, at any time during the Player Actions phase, if a face-up volatile card is adjacent to 1 or more face-up healthy cards, immediately kill all those healthy cards, without triggering any "when killed" effects. (This does not apply during End of Day.)</p>
<p>Right now, kill any face-up healthy cards adjacent to any face-up volatile infected cards, without triggering any "when killed" effects.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx2">
<p><span class="n">MUTATION REPORT: The volatile infected are continually more aggressive. Their vicitms are now in danger of contracting the disease even as they're killed.</span></p>
<p><strong>The Mutation:</strong> For the rest of the game, any time 1 or more face-up healthy cards are killed as the result of being adjacent to a face-up volatile card, trigger <span class="rxico infect" style="width:20px;height:20px;"></span> once. (Only once, even if more than 1 healthy card is affected.) <span class="rxico die" style="width:20px;height:20px;"></span> effects should still not be resolved when cards are killed in this way.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx3">
<p><span class="n">MUTATION REPORT: The virus continues to mutate too fast for us to adjust. We're considering options, but for now, any contact witha volatile infected could result in catostrophic biological damage.</span></p>
<p><strong>The Mutation:</strong> For the rest of the game, any time 1 or more face-up healthy cards are killed as the result of being adjacent to a face-up volatile card, trigger <span class="rxico infect" style="width:20px;height:20px;"></span> FOR EACH CARD KILLED. <span class="rxico die" style="width:20px;height:20px;"></span> effects should still not be resolved when cards are killed in this way.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx4">
<p><span class="n">MUTATION REPORT: The situation is worse than ever. Victims of the infected are now likely to reanimate quickly and cause disturbances, putting the entire population at risk.</span></p>
<p><strong>The Mutation:</strong> For the rest of the game, any time 1 or more face-up healthy cards are killed as the result of being adjacent to a face-up Volatile card, when raising the infection rate for each card killed, instead of placing the drawn infected card in the Population Discard Pile, place it facedown in the place the killed card occupied.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx5">
<p><span class="n">MUTATION REPORT: The infection is spreading exponentially faster. If you have a way out, take it now. It may be that no one gets out alive.</span></p>
<p><strong>The Mutation:</strong> For the rest of the game, any time 1 or more face-up healthy cards are killed as the result of being adjacent to a face-up volatile card, when raising the infection rate for each card killed, instead of placing the drawn infected card in the Population Discard Pile, place it FACE-UP in the place the killed card formerly occupied.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx6">
<p><span class="n">MUTATION REPORT: We have made some progress in dealing with the infected. Thanks to our heightened power, the volatile infected can be treated at least, if not cured. You're welcome.</span></p>
<p>You may immediately move any or all face-up volatile cards in the crowd and in the Uncontained Quarantine to the Contained Quarantine.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx7">
<p><span class="n">MUTATION REPORT: We continue to make progress in dealing with the infected. You're welcome.</span></p>
<p>You may immediately move any or all face-up volatile cards in the crowd and in the Uncontained Quarantine to the Contained Quarantine.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx8">
<p><span class="n">"We've heard you've got a way out. Will you take us with you?"</span></p>
<p>You have lost due to Raxxon Takeover.</p>
</div>
</div>
<div class="scen-data s_check_intro"><h2>Uncertainty</h2>
<p><span class="n">MISSION BRIEFING: We at Raxxon regret to inform you that the previous methods you were using for distinguishing between healthy citizens and those in the early stages of infection may have been less than 100% accurate. Recent studies have shown that the VirusChecker 3000 was giving a false negative on 50% of patients who at first seem healthy.</span></p>
<p><span class="n">In addition to current protocols, we'll need to you administer a survey of questions to citizens who seem healthy to ensure they are have not been in contact with the virus in the past week.</span></p>
<p><span class="n">And just to be sure, if they DO admit contact with an infected, administer these pills, which, if they are infected, will accelerate the symptoms to help make sure we don't leave any infected on the street. Why do these pills even exist? For lab experiments only, of course.</span></p>
<p>Click "Setup" above to continue.</p>
</div>
<div class="scen-data s_check_setup"><h2>Uncertainty Set-Up</h2>
<h3>Setup</h3>
<p>Set up the game for Regular difficulty, with the following changes:</p>
<ol>
<li>Place all 3 celebrity healthy cards in the game box. They will not be used for this scenario.</li>
<li>Deal out only 9 random infected cards facedown to be added to the population.</li>
<li>Separate out the 15 hostile healthy cards and the 3 susceptible healthy cards. Shuffle those 18 cards together with the 9 dealt infected cards to create the 27-card Population Draw Pile.</li>
<li>Deal out 9 more random infected cards facedown. Shuffle them together with the 9 remaining healthy cards (familiar, family, and innocent) to create the 18-card Infection Check deck. Place it near the game baord.</li>
<li>Shuffle the remaining 12 infected cards to create the Infection Supply.</li>
</ol>
<h3>Victory Conditions</h3>
<p>To win the Uncertainty scenario, players need to move just 9 healthy cards to the Evacuation Pile.</p>
<p>After completing setup, click "Rules" above to see rule adjustments for this scenario.</p>
</div>
<div class="scen-data s_check_rules"><h2>Uncertainty Rule Adjustments</h2>
<ol>
<li>Whenever a Raxxon card with a title of "Raxxon's ______" is drawn, instead of resolving that card, use the button below.
<br /><div class="scen-rx-btn btn btn-large">CLICK HERE WHENEVER YOU DRAW A RAXXON'S ________ CARD</div>
</li>
<li><strong>Unchecked Healthy Cards:</strong> Hostile and susceptible cards (all 18 healthy cards that start in the population) are considered to be infected for the purpose of the evacuation actions and cannot be moved to the evacuation pile due to any game effect. </li>
<li><strong>Check a Healthy Card:</strong> As an additional action considered to be just below each player's character sheet, players may check a population card. To check a card, choose a healthy rioting or susceptible card face-up in the crowd and return it to the game box. Then draw the top card of the Infection Check Deck and place it face-up in the spot where the checked card was. Then immediately resolve any <span class="rxico flip" style="width:20px;height:20px;"></span> effects on the new card.
<li><strong>Check Limits/Consequence:</strong> There is no limit on the number of tokens that can be placed below each character sheet in order to take the Check action. However, each Check token is considered to trigger a <span class="rxico flip" style="width:20px;height:20px;"></span> consequence.</li>
<li><strong>The Evacuees:</strong> Practically speaking, in order to get 9 healthy cards into the Evacuation Pile, players will need to check all or nearly all 18 rioting/susceptible healthy cards that begin in the population deck, with those cards each becoming either infected or to innocent/familiar/family. The innocent/familiar/family cards are the cards that can actually be moved to the Evacuation Pile via evacuation actions.</li>
</ol>
</div>
<div class="scen-data s_check_end"><h2>Uncertainty Endings</h2>
<p>After you have won or lost, choose the appropriate option below.</p>
<p><div class='btn btn-large ending won'>We WON!</div></p>
<p><div class='btn btn-large ending lost-infection'>We LOST due to infection overrun.</div></p>
<p><div class='btn btn-large ending lost-raxxon'>We LOST due to Raxxon takeover.</div></p>
<div class="end-story context-moment won">
<p><span class="n">Somehow, despite Raxxon, you've managed to evacuate the city and get some of your people to safety. You contemplate the situation as the helicopter makes its way north. With the benefit of distance and hindsight, it seems clear that some forces within Raxxon must want this. Internally, you resolve to never trust them again, and to do what you can to resist Raxxon's power in the future. THE END.</span></p>
</div>
<div class="end-story context-moment lost-infection">
<p><span class="n">Just a week ago, it seemed like the infected were a small minority. But now you're to believe that HALF of your healthy friends were infected the whole time? What chance does humanity have against such a threat? None that you can see. The town burns in chaos and death. THE END.</span></p>
</div>
<div class="end-story context-moment lost-raxxon">
<p><span class="n">The governer berates you over the phone. "Raxxon reps have informed me that YOU'RE the one who has been passing off OBVIOUSLY infected patients as HEALTHY! You've put our entire region in jeopardy! I've not choice but to grant Raxxon emergency military control of your city. How dare you put us all at risk!" He hangs up before you can explain whose fault this all really is. THE END.</span></p>
</div>
</div>
<div class="scen-data s_check_special"><div class="rx-card context-moment rx1">
<p><span class="n">"I'm ready! You checked me and everything! Get me out of here!" As you approach the citizen, though, that puss oozing from their eye doesn't look goodThe person lurches forward. "You checked me already... I'm good to go grrrlbppdta . ."...</span></p>
<p>If there is a face-up hostile or susceptible card in the crowd, draw cards from the Infection Check Deck until an infected card is found. Remove a face-up hostile or susceptible card from the game and replace it in the crowd with the drawn infected card, triggering any <span class="rxico look" style="width:20px;height:20px;"></span> immediately. Shuffle any drawn healthy cards from the Infection Check Deck back into that deck. If there were no remaining infected cards in the Infection Check Deck, nothing happens.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx2">
<p><span class="n">The citizen lurches forward. "You checked me already... I'm good to go grrrlbppdta . ."</span></p>
<p>If there is a face-up hostile or susceptible card in the crowd, draw cards from the Infection Check Deck until an infected card is found. Remove a face-up hostile or susceptible card from the game and replace it in the crowd with the drawn infected card, triggering any <span class="rxico look" style="width:20px;height:20px;"></span> immediately. Shuffle any drawn healthy cards from the Infection Check Deck back into that deck. If there were no remaining infected cards in the Infection Check Deck, nothing happens.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx3">
<p><span class="n">"You bastards! You've got me in here with these freaks! I've been healthy the whole time!" Oy, how did Raxxon's process make this mistake?</span></p>
<p>If there is at least 1 Carrier card in quarantine and at least 1 Hostile card has been removed from the game, shuffle a Hostile card that was removed from the game into the Population Draw Pile, and shuffle a Carrier card from either quarantine pile into the Infection Check Deck.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx4">
<p><span class="n">"Let me out! Check me again! I swear, I'm healthy!" She does look healthy... God, these mistakes don't bode well...</span></p>
<p>If there is at least 1 Carrier card in quarantine and at least 1 Hostile card has been removed from the game, shuffle a Hostile card that was removed from the game into the Population Draw Pile, and shuffle a Carrier card from either quarantine pile into the Infection Check Deck.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx5">
<p><span class="n">The chaos around you is disorienting...</span></p>
<p>Pick up the entire crowd, shuffle it together facedown, and deal it out in successive rows of 4 facedown.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx6">
<p><span class="n">The confusion of the crowd takes over. You thought you had this figured out...</span></p>
<p>Pick up the entire crowd, shuffle it together facedown, and deal it out in successive rows of 4 facedown.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx7">
<p><span class="n">"Get me out of here!!"</span></p>
<p>If there is at least 1 Hostile or Susceptible card face-up in the crowd, choose a face-up Hostile or Susceptible in the crowd and flip all facedown cards adjacent to that card face-up.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx8">
<p><span class="n">"I'm healthy! I'm healthy! I want out!!"</span></p>
<p>If there is at least 1 Hostile or Susceptible card face-up in the crowd, choose a face-up Hostile or Susceptible in the crowd and flip all facedown cards adjacent to that card face-up.</p>
<p><div class="rxico logo"></div></p>
</div>
</div>
<div class="scen-data s_riot_intro"><h2>Calm the Crowd</h2>
<p><span class="n">The situation in this municipality is worse than usual. Although the infection rate is not especially high, the public as a whole is skeptical of our plan to move them out of the city to safety. Raxxon has been a major employer at the pill factory here for years. In order to evacuate the city, you first have to convince the population that you can be trusted. Until then, any attempts will face strong resistance.</span></p>
<p><span class="n">We've got a delicate task to balance personal rights with the safety of the public here. Do your best to work with the population and convince them to come with us.</span></p>
<p><span class="n">Use Raxxon's help when you can, but unfortunately they haven't helped us in our quest to get the public's trust. As in many locations, we're seen as being against Raxxon.</span></p>
<p>Click "Setup" above to continue.</p>
</div>
<div class="scen-data s_riot_setup"><h2>Calm the Crowd Set-Up</h2>
<h3>Setup</h3>
<p>Set up the game for Regular difficulty, with the following changes:</p>
<ol>
<li>Separate out the 15 hostile cards from the 15 non-hostile healthy cards.</li>
<li>After dealing out the 15 infected cards to add to the population, shuffle them in with the 15 hostile cards to create the Population Draw Pile.</li>
<li>Shuffle the 15 non-hostile healthy cards to create a facedown non-hostile supply deck. Whenever a game effect would "calm" a hostile card in the crowd, place that hostile card aside in a separate "hostile" supply and replace it in the crowd with the top card of the non-hostile supply.</li>
</ol>
<h3>Victory Conditions</h3>
<p>To win the Calm the Crowd scenario, players need to move all 15 healthy cards to the Evacuation Pile.</p>
<p>After completing setup, click "Rules" above to see rule adjustments for this scenario.</p>
</div>
<div class="scen-data s_riot_rules">
<h2>Calm the Crowd Rule Adjustments</h2>
<ol>
<li>Whenever a Raxxon card with a title of "Raxxon's ______" is drawn, instead of resolving that card, use the button below.
<br /><div class="scen-rx-btn btn btn-large">CLICK HERE WHENEVER YOU DRAW A RAXXON'S ________ CARD</div>
</li>
<li><strong>Stubborn Hostile Cards:</strong> Hostile cards are not considered healthy for the purpose of Evacuate actions. This means that hostile cards are not fit for evacuation and cannot be targeted by Evacuate cards.</li>
<li><strong>Enhanced Crowd Control:</strong> When using any crowd control action, INSTEAD of resolving the listed effect, the player may "calm" 1 face up hostile card, meaning that those hostile cards are set aside in a hostile supply and the top card of the non-hostile supply is put in the crowd face-up in its place. So in order to win, players will need to first calm and then evacuate each of the 15 healthy cards in the population.
<li><strong>Rising Tensions:</strong> During End of Day, when the entire crowd is flipped face-up, hostile cards left in the crowd incite those near them. Move all non-hostile healthy cards that are adjacent to 1 or more hostile cards back on top of the non-hostile supply and replace each with a card from the hostile supply.</li>
<li><strong>Evacuation Consequence:</strong> The Evacuation consequence which moves hostile cards from Evacuation to the Population Discard Pile is replaced with the following: "Move a card from the hostile supply to the Population Discard Pile, and a card from the Evacuation Pile to the heatlhy supply."</li>
</ol>
</div>
<div class="scen-data s_riot_end"><h2>Calm the Crowd Endings</h2>
<p>After you have won or lost, choose the appropriate option below.</p>
<p><div class='btn btn-large ending won'>We WON!</div></p>
<p><div class='btn btn-large ending lost-infection'>We LOST due to infection overrun.</div></p>
<p><div class='btn btn-large ending lost-raxxon'>We LOST due to Raxxon takeover.</div></p>
<div class="end-story context-moment won">
<p><span class="n">As the you take the last helicopter loaded with citizens, a strange look comes over their faces, as if a spell they were under were just broken. They look at the zombie wreckage below them. "My God, I can't believe I wanted to stay there. It's as if I was brainwashed." At least, for once, your good deeds do not go unthanked. THE END.</span></p>
</div>
<div class="end-story context-moment lost-infection">
<p><span class="n">The city is overrun. Yours is not the first to fall, but it irks you all the more that those now being victimized by the zombie onslaught will, in their heart of hearts, always blame you instead of the ones who are truly responsible for this nightmare. THE END.</span></p>
</div>
<div class="end-story context-moment lost-raxxon">
<p><span class="n">The crowd continues to shout and cheer Raxxon's absolute power. "In other areas of this world, Raxxon has been restricted from doing what is best for humanity, but with your trust in us, there is no limit to what we can accomplish together." Your help not wanted, you leave the city and shake the dust from your feet. THE END.</span></p>
</div>
</div>
<div class="scen-data s_riot_special"><div class="rx-card context-moment rx1">
<p><span class="n">Raxxon's radio broadcasts on every station are, in some disturbing way, helpful. "Everyone return to your home. Only Raxxon representatives can keep you safe," it repeats over and over.</span></p>
<p>You may flip any hostile cards in the crowd facedown that you choose.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx2">
<p><span class="n">Raxxon representatives reassure you. "We'll shoot this chemical into the air 1 time. We promise it's harmless. And it will make everyone just a little more cooperative."</span></p>
<p>You may flip any hostile cards in the crowd facedown that you choose.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx3">
<p><span class="n">"We don't want you here!" the rioter screams. "You're not here to help us! Only Raxxon can help us!"</span></p>
<p>You may flip 1 hostile card in the crowd facedown. For the rest of the day, the day ends if there are just 3 or more hostile cards face-up in the crowd instead of 4.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx4">
<p><span class="n">"Look, I don't know if you all are right or wrong," the citizen tells you. "I used to believe in Raxxon, but the more we believe them, the more power they seem to take. I'll leave the city if you want me to."</span></p>
<p>You may choose 1 hostile card that is face-up in the crowd. Place that card in the hostile supply and replace it in the crowd with the top card of the non-hostile supply face-up.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx5">
<p><span class="n">The newest development isn't good. Raxxon has provided the general populace with personal tasers to defend themselves. This won't go well.</span></p>
<p>You may flip 1 hostile card in the crowd facedown. For the rest of the day, the day ends if there are just 3 or more hostile cards face-up in the crowd instead of 4.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx6">
<p><span class="n">You make a deal. Raxxon will speak well of you if you speak well of them. Seems like an even trade?</span></p>
<p>You may choose 1 hostile that is face-up in the crowd. Place that card in the hostile supply and replace it in the crowd with the top card of the non-hostile supply face-up.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx7">
<p><span class="n">The situation continues to destabilize... The result is unpredictable.</span></p>
<p><div class="rxico flip"></div></p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx8">
<p><span class="n">Chaos swirls around you. You tell yourself not to lose hope that the ship can be righted.</span></p>
<p><div class="rxico flip"></div></p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
</div>
<div class="scen-data s_vip_intro">
<h2>High Priority Targets</h2>
<p><span class="n">Mission Briefing: Raxxon's three core spokespersons are in this city. They are politician Nadia Rivers, newscaster Monica Rojas, and board game designer/outdoorsman Colby Dauch. We need you to bring them to us.</span></p>
<p><span class="n">As celebrity endorsers of Zomoxtrin, they have had access to experimental forms of the drug. They're PROBABLY just fine, but there is also a small percentage chance they are carrying a much more horrifying and deadly form of the virus than the other patients.</span></p>
<p><span class="n">My name is Dr. Struthers. Bring the three of them to me at here Raxxon, and evacuate the rest of the city, or else, unbelievably, this virus may get even worse.</span></p>
<p>Click "Setup" above to continue.</p>
</div>
<div class="scen-data s_vip_setup">
<h2>High Priority Targets Set-Up and Victory Conditions</h2>
<h3>Setup</h3>
<p>Set up the game for Regular difficulty.</p>
<p>Remove the SPOKESPERSON and SPOKESPERSON PART 2 Raxxon cards from the game.</p>
<p>After setup is complete, read the special victory conditions below.</p>
<h3>Victory Conditions</h3>
<p>To win the High Priority Targets scenario, players must complete the following objectives:</p>
<ol>
<li>Move all 3 celebrity cards to quarantine. (Explained in rule adjustments.)</li>
<li>Move the other 27 healthy cards to the Evacuation Pile as per normal.</li>
<li class="z-objective" style="display:none;">End a turn with <span class="zombied"></span> face-up in the crowd adjacent to <span class="bro"></span> face-up.</li>
</ol>
<p>Right now, click "Rules" above to see special rule adjustments for this scenario.</p>
</div>
<div class="scen-data s_vip_rules">
<h2>High Priority Targets Rule Adjustments</h2>
<ol>
<li><strong>VIPs:</strong> When using Evacuate actions, leave any targeted celebrity cards where they are. When using any Quarantine action, instead of moving any face-up infected cards, you may move a single face-up celebrity card from the crowd and place it near the Quarantine area. Whenever a famous card is moved in this way, press the matching button below.</li>
<li class="z-rules" style="display:none;"><strong><span class="zombied"></span>:</strong> The following rules apply to the <span class="zombied"></span> card:
<ol>
<li>The <span class="zombied"></span> card is treated as infected for all intents and purposes.</li>
<li>The "when killed" effect on the <span class="zombied"></span> card no longer applies.</li>
<li>The <span class="zombied"></span> card, while face-up, is immune to Quarantine, Crowd Control, and actions that would kill it. If it is ever killed while face-up, it simply stays where it is.</li>
<li>Whenever the <span class="zombied"></span> card is looked at via Meryl's Interview action, immediately flip it face-up and end the action.</li>
<li>At the end of any turn while the <span class="zombied"></span> card is face-up in the crowd, kill 1 adjacent card of your choice.</li>
</ol>
</li>
</ol>
<p style="text-align:center;"><div class="btn btn-large story-btn story-colby">Click here when you bring Colby Dauch to quarantine.</div></p>
<p style="text-align:center;"><div class="btn btn-large story-btn story-monica">Click here when you bring Monica Rojas to quarantine.</div></p>
<p style="text-align:center;"><div class="btn btn-large story-btn story-nadia">Click here when you bring Nadia Rivers to quarantine.</div></p>
<p style="text-align:center;"><div class="btn btn-large story-btn story-done" style="display:none;">Click here when <span class="zombied"></span> ends a turn in the crowd face-up adjacent to <span class="bro"></span> face-up.</div></p>
</div>
<div class="scen-data s_vip_end">
<h2>High Priority Targets Endings</h2>
<p>After you have won or lost, choose the appropriate option below.</p>
<p><div class='btn btn-large ending won'>We WON!</div></p>
<p><div class='btn btn-large ending lost-infection'>We LOST due to infection overrun.</div></p>
<p><div class='btn btn-large ending lost-raxxon'>We LOST due to Raxxon takeover.</div></p>
<div class="end-story context-moment won">
<p><span class="n">You stare blankly into space as the truck leaves, crowded inside with the last batch of evacuees. What did you just witness? <span class="killt"></span> is dead. <span class="zombied"></span> and <span class="bro"></span> are, okay? You guess? This is what counts as a good day in the new world order. And you hope you never see another one like it. THE END.</span></p>
</div>
<div class="end-story context-moment lost-infection">
<p><span class="n">Another day, another city lost. Another pebble among the pile of rubble. You wonder how the world would have looked different if snobby celebrities like Colby Dauch weren't treated special. Maybe humanity could've worked together. Maybe we could have overcome this. We'll never know. THE END.</span></p>
</div>
<div class="end-story context-moment lost-raxxon">
<p><span class="n">Another day, another city given over to the power of Raxxon. You wonder how the world would have looked different if things were fair, if companies like Raxxon didn't have so much power in the first place. Maybe humanity could've worked together. Maybe we could have overcome this. We'll never know. THE END.</span></p>
</div>
</div>
<div class="scen-data s_vip_special">
<div class="context-moment story-a">
<p><span class="n"><span class="zombied"></span> is not happy about being brought in against <span class="zombiedp"></span> will. "What am I doing here?" <span class="zombiedn"></span> says. "Dr. Struthers? What's going on?"</span></p>
<p><span class="n">"You could be sick, <span class="zombied"></span>." Dr Struthers answers. "We need to do some tests immediately."</span></p>
<p><span class="n">"What?? But how did you know? I... I didn't get bit, I swear! But you're right... I'm not feel---ACK---" Right before your eyes, <span class="zombied"></span>'s body mutates in a horrifying display, limbs and muscles growing, puss out of every oriface, and SCREAMING. You stare frozen as <span class="zombied"></span> sprints back into the crowd on all fours, screeching.</span></p>
<p><span class="n">"That could be a problem," notes Dr. Struthers. For the first time in a while, you can see how gross incompetence contributed to the outbreak rather than just malice. "We've still got a chance!" Dr. Struthers insists. "Since this strain was partially engineered, I've got a serum here. For this particular strain, if we inject one of the other 2 before they start showing symptoms of mutation, they MIGHT survive, and if they do, well, I'll just say we'd have a chance to save the day. Bring the other two to me!"</span></p>
<p>Shuffle <span class="zombied"></span> into the Population Draw Pile. For the rest of the game, the following rules apply to the <span class="zombied"></span> card:</p>
<ol>
<li>The <span class="zombied"></span> card is treated as infected for all intents and purposes.</li>
<li>The "when killed" effect on the <span class="zombied"></span> card no longer applies.</li>
<li>The <span class="zombied"></span> card, while face-up, is immune to Quarantine, Crowd Control, and actions that would kill it. If it is ever killed while face-up, it simply stays where it is.</li>
<li>Whenever the <span class="zombied"></span> card is looked at via Meryl's Interview action, immediately flip it face-up and end the action.</li>
<li>At the end of any turn while the <span class="zombied"></span> card is face-up in the crowd, kill 1 adjacent card of your choice.</li>
</ol>
</div>
<div class="context-moment story-b">
<p><span class="n">"Dr. Struthers! What's happening? They told me you needed to see me right away." <span class="killt"></span> recognizes the doctor immediately as you escort <span class="killto"></span> her into the facility.</span></p>
<p><span class="n">"<span class="killt"></span>, come quick, there's no time to explain! For the sake of humanity!" Dr. Struthers rushes over to <span class="killt"></span> and injects the serum before <span class="killtn"></span> even knows what has happened.</span></p>
<p><span class="n">"What the... Gahh! What did you just do to me??" Dr. Struthers stands quietly, tapping his finger against his chin patiently, watching. <span class="killt"></span>'s skin begins to turn green, and <span class="killtp"></span> questions turn into screams of pain... And then <span class="killt"></span> collapses on the ground, dead.</p>
<p>"Hm, that wasn't quite right. But it's still better than having another megazombie running around town. I think, if I can make some adjustments, this plan can still work. Bring the last one to me. I know it seems cold, but this has ramifications beyond this city. The world is at risk. Hurry!"</span></p>
<p>Remove <span class="killt"></span> from the game.</p>
</div>
<div class="context-moment story-c">
<p><span class="n">"Dr. Struthers! I saw <span class="zombied"></span> out there. Oh god, it was horrible. <span class="zombiedn"></span> is tearing people apart."</span></p>
<p><span class="n">"<span class="bro"></span>, come quick, before it's too late!" Dr. Struthers rushes over and injects the serum again without explanation.</span></p>
<p><span class="n">"Ack! Dr Struthers! What did you just do to me??" Dr. Struthers stands patiently once again, until... nothing happens.</span></p>
<p><span class="n">"Splendid!" Dr. Struthers exclaims. "We're one step closer to the cure!</span></p>
<p><span class="n">"What did you do to me??"</span></p>
<p><span class="n">"<span class="bro"></span>, you have the antidote to the advanced strain in your veins! Go! Find <span class="zombied"></span>! When the two of you are united, <span class="zombied"></span> will be cured!"</span></p>
<p>Shuffle <span class="bro"></span> back into the Population Draw Pile. The following has been added to your victory conditions: End a turn with <span class="bro"></span> face-up adjacent to <span class="zombied"></span> face-up.</p>
</div>
<div class="context-moment story-d">
<p><span class="n">You're amazed at <span class="bro"></span>'s bravery. <span class="bron"></span> stands tall across from <span class="zombied"></span>'s zombified body, not even sure what <span class="bron"></span> is doing there. "<span class="zombied"></span>," <span class="bro"></span> says. "You're not a monster! You're my friend! Dr. Struthers says I can help you!" Right on cue, <span class="zombied"></span> roars and pounces upon <span class="bro"></span>, taking a big bite out of <span class="brop"></span> arm. "Aaaahhhhh get this thing off of me!!"</span></p>
<p><span class="n">And then, something incredible. As <span class="bro"></span> writhes on the ground in pain, you watch <span class="zombied"></span> fall on the ground as well, vomiting and screaming and wretching, until.... <span class="zombied"></span> seems back to normal! "Gaaaaaaah what happened? My insides feel soooo empty..." <span class="zombiedn"></span> moans.</span></p>
<p><span class="n">"You see!" Dr. Struthers instructs. "We CAN save these people. I'm SO close. And <span class="bro"></span>, we can stitch you right up."</span></p>
<p>Remove both the <span class="bro"></span> and <span class="zombied"></span> cards from the game. Your only remaining objective is to move the other 27 healthy cards to the evacuation pile.</p>
</div>
</div>
<div class="scen-data s_gg_intro">
<h2>Gathering Ghosts</h2>
<p><em>The briefing meeting in Raxxon's makeshift facility is surprisingly optimistic in tone. "Close study of the infected has revealed that some are more resistant to the infection than others. Those who show symptoms of sickness without turning aggressive may NEVER turn rabid. We've even had unconfirmed reports of recovery."</em></p>
<p><em>Could a vaccine be on the way? "If we can gather enough patients still in the early stages of transformation, we'd have a chance to monitor them in mass and find a way to inoculate the healthy."</em></p>
<p><em>Your team agrees to the plan. Find those infected in the early stages, get them to Raxxon, and get everyone else the hell out of there. "Be sure to take them by any means necessary," you are told. "They may be lucid, but they're still potentially dangerous to everyone around them."</em></p>
<p>Click "Setup" above to continue.</p>
</div>
<div class="scen-data s_gg_end">
<h2>Gathering Ghosts Endings</h2>
<p>After you have won or lost, choose the appropriate option below.</p>
<p><div class='btn btn-large ending won'>We WON!</div></p>
<p><div class='btn btn-large ending lost-infection'>We LOST due to infection overrun.</div></p>
<p><div class='btn btn-large ending lost-raxxon'>We LOST due to Raxxon takeover.</div></p>
<div class="end-story context-moment won">
<p><span class="n">As you load the helicopter, the pilot looks with skeptism at the infected you're taking, but they look healthy enough to fool her. You're not sure where you'll take them, but you know you need to find some doctors and scientests you can trust. Most importantly, you need to get these people as far away from Raxxon as possible. For today at least, those with you are safe. THE END.</span></p>
</div>
<div class="end-story context-moment lost-infection">
<p><span class="n">As the infection spreads, both the carriers and the healthy people have no chance to survive. Too many rabid zombies now. No one is saved and so no vaccine can be found. THE END.</span></p>
</div>
<div class="end-story context-moment lost-raxxon">
<p><span class="n">You've given Raxxon what they want, but instead of protecting the people, they reveal their true nature. With the populace and power they have now, the federal government gives up the city to Raxxon, who is only too happy to make ittheir playground of horrors in the name of "safety" and "a cure." THE END.</span></p>
</div>
</div>
<div class="scen-data s_gg_rules">
<h2>Gathering Ghosts Rule Adjustments</h2>
<ol>
<li>If a carrier card would be removed from the game for any reason, place it in the population discard pile instead of removing it from the game.</li>
<li>Whenever a Raxxon card with a title of "Raxxon's ______" is drawn, instead of resolving that card, use the button below.
<br /><div class="scen-rx-btn btn btn-large">CLICK HERE WHENEVER YOU DRAW A RAXXON'S ________ CARD</div>
</li>
</ol>
<h3>Gathering Ghosts Special Triggers</h3>
<p style="text-align:center;"><div class="btn btn-large story-btn">Click here the first time there are 4+ carriers in quarantine.</div></p>
</div>
<div class="scen-data s_gg_setup">
<h2>Gathering Ghosts Set-Up and Victory Conditions</h2>
<h3>Setup</h3>
<p>Set up the game for Regular difficulty, with the following changes:</p>
<ol>
<li>Instead of dealing out 15 random cards for the Infection Supply, deal out all 10 carrier infected cards, plus 2 chaotic cards and 2 volatile cards.</li>
<li>Remove 7 hostile and all 3 celebrity healthy cards from the game.</li>
<li>Shuffle the chosen 14 infected cards in with the 20 remaining healthy cards to create the population draw pile.</li>
<li>Shuffle the remaining 16 infected cards to create the infection supply.</li>
</ol>
<p>After setup is complete, read the special victory condition below.</p>
<h3>Victory Conditions</h3>
To win the Gathering Ghosts scenario, in addition to evacuating all 20 healthy cards, you must have all 10 carrier infected cards in quarantine <span class='vchange'>(they can be either in the uncontained quarantine or contained quarantine)</span>. The moment all 20 healthy cards are in the evacuation pile AND all 10 carrier cards are in quarantine, the players win.</p>
<p>When the game is over, click "Game Over" above and select the result you achieved.</p>
<p>Right now, click "Rules" above to see special rule adjustments for this scenario.</p>
</div>
<div class="scen-data s_gg_special">
<div class="rx-card context-moment rx1">
<p><span class="n">"You're doing such a great job bringing the people in," you're told by the Raxxon employee. "You just keep that up. We'll take care of the containment. Just find more. We need all of them."</span></p>
<p>You may move up to 2 carrier cards in the uncontained quarantine to the contained quarantine.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx2">
<p><span class="n">The patients in quarantine seem rather subdued. "Oh yeah," you're told. "We've got them heavily medicated." Isn't that how we got into this mess?</span></p>
<p>You may move up to 2 carrier cards in the uncontained quarantine to the contained quarantine.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx3">
<p><span class="n">"You have to let us out," the patients in quarantine beg. "This place isn't what they say it is!"</span></p>
<p>Move 1 carrier card in the contained quarantine to the uncontained quarantine.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx4">
<p><span class="n">Those in quarantine continue to freak out. "I can be saved. I know it. I'm one of the healthy ones. Let me out!"</span></p>
<p>Move 1 carrier card in the contained quarantine to the uncontained quarantine.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx5">
<p><span class="n">"HOW did they escape?!" the head scientest yells. "We need them. We need them all. Did YOU help them?!"</span></p>
<p>Move a carrier card from the uncontained quarantine to the population discard pile.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico infect"></div><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx6">
<p><span class="n">How can these people be dangerous? They're sick, sure, but they're not violent. It doesn't make sense... You find yourself unable to fend off another escape attempt.</span></p>
<p>Move a carrier card from the uncontained quarantine to the population discard pile.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico infect"></div><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx7">
<p><span class="n">"Take me with you! I hear you have the cure!"</span></p>
<p>You may immediately move all face-up carrier cards in the crowd to the <span class="changeit">contained quarantine</span>.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="rx-card context-moment rx8">
<p><span class="n">"We've heard you've got a way out. Will you take us with you?"</span></p>
<p>You may immediately move all face-up carrier cards in the crowd to the <span class="changeit">contained quarantine</span>.</p>
<p>Place the drawn Raxxon card in the triggered pile. Shuffle the Raxxon untriggered pile into the Raxxon draw pile.</p>
<p><div class="rxico logo"></div></p>
</div>
<div class="story-moment context-moment sm1">
<p><span class="n">You're not surprised to find that the patients are putting up resistance. "If you lock away innocent, regular people like us, then this isn't a treatment facility or even a quarantine. It's a prison! I'm not sick, anyone can see that!" Having so many intelligible patients in the facility at once doesn't help to keep order. Just the opposite.</span></p>
<p>For the rest of the game, when Quarantine actions are used, any carrier cards moved go to the UNCONTAINED quarantine instead of the CONTAINED quarantine.</p>
<p>Note the new trigger in the special rules.</p>
</div>
<div class="story-moment context-moment sm2">
<p><span class="n">Even Raxxon employees, usually persistant and unyielding, are frustrated lately by the difficulty in keeping these carrier patients under control. "But we're so close," they say. "If we could just find the right patient..." They insist desperate times call for desperate measures...</span></p>
<p>Raxxon releases all but carrier patients from Quarantine to focus on the task at hand. <strong>Move all non-carrier cards from both quarantines to the population discard pile. (Do not raise the infection rate for the moved cards.) For the rest of the game, no player may move any infected cards to quarantine via quarantine actions except for carrier cards.</strong></p>
<p><span class="n">It's as if they'll do anything to find the kind of patient they're looking for...</span></p>
<p>Note the new trigger in the special rules.</p>
</div>
<div class="story-moment context-moment sm3">
<p><span class="n">The quarantine facility is disheartening. Instead of a place to keep monsters away from the healthy, it's a place where those too sick to protect themselves are taken advantage of. You know what the citizens have told you is true. For any hope of a cure or vaccine, these resistent infected need to be AWAY from Raxxon, not under Raxxon's thumb. Knowing the dangers, you decide to take them with you.</span></p>
<p><strong>From now on, whenever you use a Quarantine action on a carrier infected card, instead of placing it in quarantine, place it in the evacuation pile. You now win the game when all 20 healthy cards are in the evacuation pile, and all 10 carrier cards are either in a quarantine pile or in the evacuation pile.</strong></p>
</div>
</div>
</body>
</html>