-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
1656 lines (1116 loc) · 508 KB
/
game.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
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-M3LZ97C');</script>
<!-- End Google Tag Manager -->
<link rel="preload" href="/fonts/PVF_Clothing.otf" as="font" crossorigin="anonymous" />
<link rel="preload" href="/fonts/PVF_ClothingItalics.otf" as="font" crossorigin="anonymous" />
<link rel="preload" href="/fonts/PVF_ClothingLight.otf" as="font" crossorigin="anonymous" />
<link rel="preload" href="/fonts/PVF_ClothingLight_Italics.otf" as="font" crossorigin="anonymous" />
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>18 Μέρες Μετά</title>
<meta name="author" content="Vasilis Gavriilidis & Giorgos Rossis">
<meta name="description" content="18 Μέρες Μετά is a choose-your-own-adventure mystery game">
<meta name="keywords" content=“text-based, twine, mystery”>
<link rel="icon" href="images/favicon.png">
<style title="Twine CSS">@keyframes appear{0%{opacity:0}to{opacity:1}}@keyframes fade-in-out{0%,to{opacity:0}50%{opacity:1}}@keyframes rumble{25%{top:-0.1em}75%{top:0.1em}0%,to{top:0px}}@keyframes shudder{25%{left:0.1em}75%{left:-0.1em}0%,to{left:0px}}@keyframes buoy{25%{top:0.25em}75%{top:-0.25em}0%,to{top:0px}}@keyframes sway{25%{left:0.25em}75%{left:-0.25em}0%,to{left:0px}}@keyframes pulse{0%{transform:scale(0, 0)}20%{transform:scale(1.2, 1.2)}40%{transform:scale(0.9, 0.9)}60%{transform:scale(1.05, 1.05)}80%{transform:scale(0.925, 0.925)}to{transform:scale(1, 1)}}@keyframes zoom-in{0%{transform:scale(0, 0)}to{transform:scale(1, 1)}}@keyframes shudder-in{0%, to{transform:translateX(0em)}5%, 25%, 45%{transform:translateX(-1em)}15%, 35%, 55%{transform:translateX(1em)}65%{transform:translateX(-0.6em)}75%{transform:translateX(0.6em)}85%{transform:translateX(-0.2em)}95%{transform:translateX(0.2em)}}@keyframes rumble-in{0%, to{transform:translateY(0em)}5%, 25%, 45%{transform:translateY(-1em)}15%, 35%, 55%{transform:translateY(1em)}65%{transform:translateY(-0.6em)}75%{transform:translateY(0.6em)}85%{transform:translateY(-0.2em)}95%{transform:translateY(0.2em)}}@keyframes fidget{0%, 8.1%, 82.1%, 31.1%, 38.1%, 44.1%, 40.1%, 47.1%, 74.1%, 16.1%, 27.1%, 72.1%, 24.1%, 95.1%, 6.1%, 36.1%, 20.1%, 4.1%, 91.1%, 14.1%, 87.1%, to{left:0px;top:0px}8%, 82%, 31%, 38%, 44%{left:-1px}40%, 47%, 74%, 16%, 27%{left:1px}72%, 24%, 95%, 6%, 36%{top:-1px}20%, 4%, 91%, 14%, 87%{top:1px}}@keyframes slide-right{0%{transform:translateX(-100vw)}}@keyframes slide-left{0%{transform:translateX(100vw)}}@keyframes slide-up{0%{transform:translateY(100vh)}}@keyframes slide-down{0%{transform:translateY(-100vh)}}@keyframes fade-right{0%{opacity:0;transform:translateX(-1em)}to{opacity:1}}@keyframes fade-left{0%{opacity:0;transform:translateX(1em)}to{opacity:1}}@keyframes fade-up{0%{opacity:0;transform:translateY(1em)}to{opacity:1}}@keyframes fade-down{0%{opacity:0;transform:translateY(-1em)}to{opacity:1}}@keyframes flicker{0%,29%,31%,63%,65%,77%,79%,86%,88%,91%,93%{opacity:0}30%{opacity:0.2}64%{opacity:0.4}78%{opacity:0.6}87%{opacity:0.8}92%, to{opacity:1}}@keyframes blur{0%{filter:blur(2rem);opacity:0}25%{opacity:1}to{filter:blur(0rem);opacity:1}}.dom-debug-mode tw-story,.dom-debug-mode tw-passage,.dom-debug-mode tw-sidebar,.dom-debug-mode tw-include,.dom-debug-mode tw-hook,.dom-debug-mode tw-expression,.dom-debug-mode tw-link,.dom-debug-mode tw-dialog,.dom-debug-mode tw-columns,.dom-debug-mode tw-column,.dom-debug-mode tw-align{outline:1px solid #f5a3da;min-height:32px;display:block !important}.dom-debug-mode tw-story::before,.dom-debug-mode tw-passage::before,.dom-debug-mode tw-sidebar::before,.dom-debug-mode tw-include::before,.dom-debug-mode tw-hook::before,.dom-debug-mode tw-expression::before,.dom-debug-mode tw-link::before,.dom-debug-mode tw-dialog::before,.dom-debug-mode tw-columns::before,.dom-debug-mode tw-column::before,.dom-debug-mode tw-align::before{position:absolute;top:0;left:0;height:16px;background-color:#f5a3da;color:black;font-size:16px;font-weight:normal;font-style:normal;font-family:monospace;display:inline-block;line-height:100%;white-space:pre;z-index:999997}.dom-debug-mode tw-story:hover,.dom-debug-mode tw-passage:hover,.dom-debug-mode tw-sidebar:hover,.dom-debug-mode tw-include:hover,.dom-debug-mode tw-hook:hover,.dom-debug-mode tw-expression:hover,.dom-debug-mode tw-link:hover,.dom-debug-mode tw-dialog:hover,.dom-debug-mode tw-columns:hover,.dom-debug-mode tw-column:hover,.dom-debug-mode tw-align:hover{outline:1px solid #fc9}.dom-debug-mode tw-story:hover::before,.dom-debug-mode tw-passage:hover::before,.dom-debug-mode tw-sidebar:hover::before,.dom-debug-mode tw-include:hover::before,.dom-debug-mode tw-hook:hover::before,.dom-debug-mode tw-expression:hover::before,.dom-debug-mode tw-link:hover::before,.dom-debug-mode tw-dialog:hover::before,.dom-debug-mode tw-columns:hover::before,.dom-debug-mode tw-column:hover::before,.dom-debug-mode tw-align:hover::before{background-color:#fc9;transition:background-color 1s}.dom-debug-mode tw-passage,.dom-debug-mode tw-include,.dom-debug-mode tw-hook,.dom-debug-mode tw-expression,.dom-debug-mode tw-link,.dom-debug-mode tw-dialog,.dom-debug-mode tw-columns,.dom-debug-mode tw-column,.dom-debug-mode tw-align{padding:1em;margin:0}.dom-debug-mode tw-story::before{content:'<tw-story tags="' attr(tags) '">'}.dom-debug-mode tw-passage::before{top:-16px;content:'<tw-passage tags="' attr(tags) '">'}.dom-debug-mode tw-sidebar::before{top:-16px;content:"<tw-sidebar>"}.dom-debug-mode tw-hook::before{content:'<tw-hook name="' attr(name) '">'}.dom-debug-mode tw-expression::before{content:'<tw-expression name="' attr(name) '">'}.dom-debug-mode tw-link::before{content:'<tw-link name="' attr(name) '">'}.dom-debug-mode tw-dialog::before{content:"<tw-dialog>"}.dom-debug-mode tw-columns::before{content:"<tw-columns>"}.dom-debug-mode tw-column::before{content:"<tw-column>"}.dom-debug-mode tw-align::before{content:"<tw-align>"}.dom-debug-mode tw-include::before{content:'<tw-include type="' attr(type) '" name="' attr(name) '">'}.debug-mode tw-expression{display:inline-block !important}.debug-mode tw-expression[type=variable]::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"$" attr(name)}.debug-mode tw-expression[type=tempVariable]::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"_" attr(name)}.debug-mode tw-expression[return=boolean]{background-color:rgba(179,179,179,0.2)}.debug-mode tw-expression[return=array]{background-color:rgba(255,102,102,0.2)}.debug-mode tw-expression[return=dataset]{background-color:rgba(255,128,0,0.2)}.debug-mode tw-expression[return=number]{background-color:rgba(255,179,102,0.2)}.debug-mode tw-expression[return=datamap]{background-color:rgba(255,255,102,0.2)}.debug-mode tw-expression[return=changer]{background-color:rgba(179,255,102,0.2)}.debug-mode tw-expression[return=lambda]{background-color:rgba(102,255,102,0.2)}.debug-mode tw-expression[return=hookname]{background-color:rgba(102,255,204,0.2)}.debug-mode tw-expression[return=string]{background-color:rgba(102,255,255,0.2)}.debug-mode tw-expression[return=datatype]{background-color:rgba(102,153,255,0.2)}.debug-mode tw-expression[return=gradient],.debug-mode tw-expression[return=colour]{background-color:rgba(204,102,255,0.2)}.debug-mode tw-expression[return=instant],.debug-mode tw-expression[return=macro]{background-color:rgba(240,117,199,0.2)}.debug-mode tw-expression[return=command]{background-color:rgba(153,153,255,0.2)}.debug-mode tw-expression.false{background-color:rgba(255,0,0,0.2) !important}.debug-mode tw-expression[type=macro]::before{content:"(" attr(name) ":)";padding:0 0.5rem;font-size:1rem;vertical-align:middle;line-height:normal;background-color:inherit;border:1px solid rgba(255,255,255,0.5)}.debug-mode tw-hook{background-color:rgba(0,85,255,0.1) !important}.debug-mode tw-hook::before{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"["}.debug-mode tw-hook::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"]"}.debug-mode tw-hook[name]::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"]<" attr(name) "|"}.debug-mode tw-pseudo-hook{background-color:rgba(255,170,0,0.1) !important}.debug-mode tw-collapsed::before{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"{"}.debug-mode tw-collapsed::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"}"}.debug-mode tw-verbatim::before,.debug-mode tw-verbatim::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"`"}.debug-mode tw-align[style*="text-align: center"]{background:linear-gradient(to right, rgba(255,204,189,0) 0%, rgba(255,204,189,0.25) 50%, rgba(255,204,189,0) 100%)}.debug-mode tw-align[style*="text-align: left"]{background:linear-gradient(to right, rgba(255,204,189,0.25) 0%, rgba(255,204,189,0) 100%)}.debug-mode tw-align[style*="text-align: right"]{background:linear-gradient(to right, rgba(255,204,189,0) 0%, rgba(255,204,189,0.25) 100%)}.debug-mode tw-column{background-color:rgba(189,228,255,0.2)}.debug-mode tw-enchantment{animation:enchantment 0.5s infinite;border:1px solid}.debug-mode tw-link::after,.debug-mode tw-broken-link::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:attr(passage-name)}.debug-mode tw-include{background-color:rgba(204,128,51,0.1)}.debug-mode tw-include::before{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:attr(type) ' "' attr(name) '"'}@keyframes enchantment{0%,to{border-color:#ffb366}50%{border-color:#6fc}}tw-debugger{position:fixed;box-sizing:border-box;bottom:0;right:0;z-index:999999;min-width:10em;min-height:1em;padding:0em 0.5em 0.5em 1em;font-size:1.25em;font-family:sans-serif;color:#000;border-left:solid #000 2px;border-top:solid #000 2px;border-top-left-radius:.5em;background:#fff;opacity:1}tw-debugger select{margin-right:1em;width:12em}tw-debugger button{border-radius:3px;border:solid #999 1px;margin:auto 4px;background-color:#fff;font-size:inherit;color:#000}tw-debugger button.enabled{background-color:#eee;box-shadow:inset #ddd 3px 5px 0.5em}tw-debugger .panel{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:absolute;bottom:100%;left:-2px;right:0;padding:1em;max-height:40vh;overflow-y:scroll;overflow-x:hidden;z-index:999998;background:#fff;border:inherit;border-bottom:solid #999 2px;border-top-left-radius:.5em;border-bottom-left-radius:.5em;font-size:0.8em}tw-debugger .panel:empty,tw-debugger .panel[hidden]{display:none}tw-debugger .panel-source,tw-debugger .panel-row-source{font-family:monospace;overflow-x:scroll;white-space:pre;-ms-flex-preferred-size:100%;flex-basis:100%}tw-debugger .panel-row-source{margin:5px 0}tw-debugger .panel-rows{width:100%;overflow-x:scroll}tw-debugger .panel-rows>*{display:table-row}tw-debugger .panel-rows>div:nth-of-type(2n){background:#EEE}tw-debugger .panel-row-buttons{text-align:right}tw-debugger .panel-variables .panel-rows:empty::before{content:"~ No variables ~";font-style:italic;color:#888;text-align:center}tw-debugger .panel-enchantments .panel-rows:empty::before{content:"~ No enchantments ~";font-style:italic;color:#888;text-align:center}tw-debugger .panel-errors .panel-rows:empty::before{content:"~ No errors... for now. ~";font-style:italic;color:#888;text-align:center}tw-debugger .panel-rows:empty+.panel-variables-bottom{display:none}tw-debugger .panel-storylets:not(.panel-exclusive) .storylet-exclusive,tw-debugger .panel-storylets:not(.panel-urgent) .storylet-urgent{display:none}tw-debugger .panel-variables-bottom{padding-top:5px}tw-debugger .enchantment-row{min-height:1.5em}tw-debugger .variable-path{opacity:0.4}tw-debugger .temporary-variable-scope,tw-debugger .enchantment-local{font-family:sans-serif;font-weight:normal;opacity:0.8;font-size:0.75em}tw-debugger .temporary-variable-scope:not(:empty)::before,tw-debugger .enchantment-local:not(:empty)::before{content:" in "}tw-debugger .variable-name,tw-debugger .enchantment-name{font-family:monospace;font-weight:bold}tw-debugger .variable-type{color:#444;font-weight:normal;text-overflow:ellipsis;overflow:hidden;max-width:10em}tw-debugger .error-row{display:table-row;background-color:rgba(230,101,204,0.3)}tw-debugger .error-row:nth-of-type(2n){background-color:rgba(237,145,219,0.3)}tw-debugger .error-row>*{display:table-cell;padding:0.25em 0.5em}tw-debugger .error-row .error-message{cursor:help}tw-debugger .error-row .error-passage{color:#444}tw-debugger .storylet-row{background-color:rgba(201,233,222,0.3)}tw-debugger .storylet-row:nth-child(2n){background-color:rgba(128,203,178,0.3)}tw-debugger .storylet-row.storylet-closed{font-style:italic;opacity:0.4;background-color:rgba(217,217,217,0.3)}tw-debugger .storylet-row.storylet-closed:nth-child(2n){background-color:rgba(166,166,166,0.3)}.storylet-error tw-debugger .storylet-row{background-color:rgba(230,101,204,0.3)}.storylet-error tw-debugger .storylet-row:nth-child(2n){background-color:rgba(237,145,219,0.3)}tw-debugger .storylet-row .storylet-name,tw-debugger .storylet-row .storylet-value{display:inline-block;width:50%}tw-debugger .tabs{padding-bottom:0.5em}tw-debugger .tab{border-radius:0px 0px 0.5em 0.5em;border-top:none}tw-debugger .resizer{position:absolute;height:3em;border-left:2px solid #ccc;border-right:2px solid #ccc;top:10px;left:4px;width:8px;cursor:ew-resize}tw-dialog{z-index:999997;border:#fff solid 2px;padding:2em;color:#fff;background-color:#000;display:block}@media (min-width: 576px){tw-dialog{max-width:50vw}}tw-dialog input[type=text]{font-size:inherit;width:100%}tw-dialog-links{text-align:right;display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end}tw-backdrop{z-index:999996;position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.8);display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}tw-backdrop ~ tw-backdrop{display:none}tw-link,.link,tw-icon,.enchantment-clickblock{cursor:pointer}tw-link,.enchantment-link{color:#4169E1;font-weight:bold;text-decoration:none;transition:color 0.2s ease-in-out}tw-passage [style^="color"] tw-link:not(:hover),tw-passage [style*=" color"] tw-link:not(:hover),tw-passage [style^="color"][hover="true"] tw-link:hover,tw-passage [style*=" color"][hover="true"] tw-link:hover,tw-passage [style^="color"] .enchantment-link:not(:hover),tw-passage [style*=" color"] .enchantment-link:not(:hover),tw-passage [style^="color"][hover="true"] .enchantment-link:hover,tw-passage [style*=" color"][hover="true"] .enchantment-link:hover{color:inherit}tw-link:hover,.enchantment-link:hover{color:#00bfff}tw-link:active,.enchantment-link:active{color:#DD4B39}.visited{color:#6941e1}tw-passage [style^="color"] .visited:not(:hover),tw-passage [style*=" color"] .visited:not(:hover),tw-passage [style^="color"][hover="true"] .visited:hover,tw-passage [style*=" color"][hover="true"] .visited:hover{color:inherit}.visited:hover{color:#E3E}tw-broken-link{color:#993333;border-bottom:2px solid #993333;cursor:not-allowed}tw-passage [style^="color"] tw-broken-link:not(:hover),tw-passage [style*=" color"] tw-broken-link:not(:hover),tw-passage [style^="color"][hover="true"] tw-broken-link:hover,tw-passage [style*=" color"][hover="true"] tw-broken-link:hover{color:inherit}.enchantment-mouseover{border-bottom:2px dashed #999}.enchantment-mouseout{border:rgba(64,149,191,0.6) 1px solid}.enchantment-mouseout:hover{background-color:rgba(175,197,207,0.75);border:transparent 1px solid;border-radius:0.2em}.enchantment-clickblock{width:100%;height:100%;display:block}.enchantment-clickblock>:not(tw-enchantment)::after{content:"";width:100%;height:100%;top:0;left:0;display:block;box-sizing:border-box;position:absolute;pointer-events:none;color:rgba(65,105,225,0.5);transition:color 0.2s ease-in-out}.enchantment-clickblock>:not(tw-enchantment):hover::after{color:rgba(0,191,255,0.5)}.enchantment-clickblock>:not(tw-enchantment):active::after{color:rgba(222,78,59,0.5)}.enchantment-clickblock>:not(tw-enchantment)::after{box-shadow:inset 0 0 0 0.5vmax}.enchantment-clickblock>tw-passage::after,.enchantment-clickblock>tw-sidebar::after{box-shadow:0 0 0 0.5vmax}.enchantment-mouseoverblock>:not(tw-enchantment)::after{content:"";width:100%;height:100%;top:0;left:0;display:block;box-sizing:border-box;position:absolute;pointer-events:none;border:2px dashed #999}.enchantment-mouseoutblock>:not(tw-enchantment)::after{content:"";width:100%;height:100%;top:0;left:0;display:block;box-sizing:border-box;position:absolute;pointer-events:none;border:rgba(64,149,191,0.6) 2px solid}.enchantment-mouseoutblock:hover>:not(tw-enchantment)::after{content:"";width:100%;height:100%;top:0;left:0;display:block;box-sizing:border-box;position:absolute;pointer-events:none;background-color:rgba(175,197,207,0.75);border:transparent 2px solid;border-radius:0.2em}tw-link.enchantment-button,.enchantment-link.enchantment-button,.enchantment-button:not(.enchantment-link) tw-link,.enchantment-button:not(.enchantment-link) .enchantment-link{border-radius:16px;border-style:solid;border-width:2px;text-align:center;padding:0px 8px;display:block}tw-dialog-links{padding-top:1.5em}tw-dialog-links tw-link{border-radius:16px;border-style:solid;border-width:2px;text-align:center;padding:0px 8px;display:block;display:inline-block}html{margin:0;height:100%;overflow-x:hidden}*,:before,:after{position:relative;box-sizing:inherit}body{margin:0;height:100%}tw-storydata{display:none}tw-story{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;font:100% Georgia, serif;box-sizing:border-box;width:100%;min-height:100%;font-size:1.5em;line-height:1.5em;padding:5% 5%;overflow:hidden;background-color:#000;color:#fff}tw-story [style*=content-box] *{box-sizing:border-box}@media (min-width: 576px){tw-story{padding:5% 20%}}tw-story tw-consecutive-br{display:block;height:1.6ex;visibility:hidden}tw-story select{background-color:transparent;font:inherit;border-style:solid;padding:2px}tw-story select:not([disabled]){color:inherit}tw-story textarea{resize:none;background-color:transparent;font:inherit;color:inherit;border-style:none;padding:2px}tw-story input[type=checkbox]{transform:scale(1.5);margin:0 0.5em}tw-story tw-noscript{animation:appear 0.8s}tw-passage{display:block}tw-sidebar{text-align:center;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}@media (min-width: 576px){tw-sidebar{left:-5em;width:3em;position:absolute;-ms-flex-direction:column;flex-direction:column}tw-enchantment[style*="width"]>tw-sidebar{width:inherit}}tw-icon{display:inline-block;margin:0.5em 0;font-size:66px;font-family:"Verdana",sans-serif}tw-icon[alt]{opacity:0.2}tw-icon[alt]:hover{opacity:0.4}tw-icon[data-label]::after{font-weight:bold;content:attr(data-label);font-size:20px;bottom:-20px;left:-50%;white-space:nowrap}tw-meter{display:block}tw-hook:empty,tw-expression:empty{display:none}tw-error{display:inline-block;border-radius:0.2em;padding:0.2em;font-size:1rem;cursor:help;white-space:pre-wrap}tw-error.error{background-color:rgba(223,58,190,0.6);color:#fff}tw-error.warning{background-color:rgba(223,140,58,0.6);color:#fff;display:none}.debug-mode tw-error.warning{display:inline}tw-error-explanation{display:block;font-size:0.8rem;line-height:1rem}tw-open-button,tw-folddown{cursor:pointer;line-height:0em;border-radius:1px;border:1px solid black;font-size:0.8rem;margin:0 0.4rem;padding:2px;white-space:pre}tw-folddown::after{content:"\25b6"}tw-folddown.open::after{content:"\25bc"}tw-open-button::after{content:"Open"}tw-notifier{border-radius:0.2em;padding:0.2em;font-size:1rem;background-color:rgba(223,182,58,0.4);display:none}.debug-mode tw-notifier{display:inline}tw-notifier::before{content:attr(message)}tw-colour{border:1px solid black;display:inline-block;width:1em;height:1em}tw-enchantment:empty{display:none}h1{font-size:3em}h2{font-size:2.25em}h3{font-size:1.75em}h1,h2,h3,h4,h5,h6{line-height:1em;margin:0.3em 0 0.6em 0}pre{font-size:1rem;line-height:initial}small{font-size:70%}big{font-size:120%}mark{color:rgba(0,0,0,0.6);background-color:#ff9}ins{color:rgba(0,0,0,0.6);background-color:rgba(255,242,204,0.5);border-radius:0.5em;box-shadow:0em 0em 0.2em #ffe699;text-decoration:none}center{text-align:center;margin:0 auto;width:60%}blink{text-decoration:none;animation:fade-in-out 1s steps(1, end) infinite alternate}tw-align{display:block}tw-columns{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:justify;justify-content:space-between}.transition-in{animation:appear 0ms step-start}.transition-out{animation:appear 0ms step-end}[data-t8n^=dissolve].transition-in,[data-t8n=fade].transition-in{animation:appear .8s}[data-t8n^=dissolve].transition-out,[data-t8n=fade].transition-out{animation:appear .8s reverse}[data-t8n^=shudder].transition-in{display:inline-block !important;animation:shudder-in .8s}[data-t8n^=shudder].transition-out{display:inline-block !important;animation:shudder-in .8s reverse}[data-t8n^=rumble].transition-in{display:inline-block !important;animation:rumble-in .8s}[data-t8n^=rumble].transition-out{display:inline-block !important;animation:rumble-in .8s reverse}[data-t8n^=pulse].transition-in{animation:pulse .8s;display:inline-block !important}[data-t8n^=pulse].transition-out{animation:pulse .8s reverse;display:inline-block !important}[data-t8n^=zoom].transition-in{animation:zoom-in .8s;display:inline-block !important}[data-t8n^=zoom].transition-out{animation:zoom-in .8s reverse;display:inline-block !important}[data-t8n^=blur].transition-in{animation:blur .8s;display:inline-block !important}[data-t8n^=blur].transition-out{animation:blur .8s reverse;display:inline-block !important}[data-t8n^=slideleft].transition-in{animation:slide-left .8s;display:inline-block !important}[data-t8n^=slideleft].transition-out{animation:slide-right .8s reverse;display:inline-block !important}[data-t8n^=slideright].transition-in{animation:slide-right .8s;display:inline-block !important}[data-t8n^=slideright].transition-out{animation:slide-left .8s reverse;display:inline-block !important}[data-t8n^=slideup].transition-in{animation:slide-up .8s;display:inline-block !important}[data-t8n^=slideup].transition-out{animation:slide-down .8s reverse;display:inline-block !important}[data-t8n^=slidedown].transition-in{animation:slide-down .8s;display:inline-block !important}[data-t8n^=slidedown].transition-out{animation:slide-up .8s reverse;display:inline-block !important}[data-t8n^=fadeleft].transition-in{animation:fade-left .8s;display:inline-block !important}[data-t8n^=fadeleft].transition-out{animation:fade-right .8s reverse;display:inline-block !important}[data-t8n^=faderight].transition-in{animation:fade-right .8s;display:inline-block !important}[data-t8n^=faderight].transition-out{animation:fade-left .8s reverse;display:inline-block !important}[data-t8n^=fadeup].transition-in{animation:fade-up .8s;display:inline-block !important}[data-t8n^=fadeup].transition-out{animation:fade-down .8s reverse;display:inline-block !important}[data-t8n^=fadedown].transition-in{animation:fade-down .8s;display:inline-block !important}[data-t8n^=fadedown].transition-out{animation:fade-up .8s reverse;display:inline-block !important}[data-t8n^=flicker].transition-in{animation:flicker .8s}[data-t8n^=flicker].transition-out{animation:flicker .8s reverse}
</style>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M3LZ97C"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<tw-story><noscript><tw-noscript>JavaScript needs to be enabled to play 18 Μέρες Μετά.</tw-noscript></noscript></tw-story>
<tw-storydata name="18 Μέρες Μετά" startnode="67" creator="Twine" creator-version="2.3.15" ifid="1265295D-BB2E-433A-99BD-C29E5324BE32" zoom="0.6" format="Harlowe" format-version="3.2.3" options="" hidden><style role="stylesheet" id="twine-user-stylesheet" type="text/twine-css">
.mes-img{
height:400px;
display: block;
margin-left: auto;
margin-right: auto;
}
tw-expression{
margin: 0px auto;
}
@font-face {
font-family: "Clothing Sans";
src: url("fonts/PVF_Clothing.otf");
}
tw-story {
font-family: "Clothing Sans";
cursor: url(images/cursor.png), auto;
background:#222222;
transition:.3s;
background-image: url("images/bg.png");
background-position: bottom;
background-size: 1080px;
}
tw-link,
.enchantment-link {
color: white;
transition:0s;
cursor: url(images/cur-point.png), auto;
}
tw-link:hover,
.enchantment-link {
color: #557C62;
}
tw-sidebar {display:none;}
tw-passage {
color: #C1B4A9;
/*position:absolute;
top:0;
left:50%;
transform: translateX(-50%);*/
border: 0px solid pink;
font-size: 22px;
/* height:80vh;*/
}
.story {
border: 0px solid green;
top: 20px;
text-align: justify;
}
.options {
margin-top:70px;
display: flex;
flex-flow: row no-wrap;
justify-content: space-between;
border: 0px solid yellow;
text-align: center;
}
.optionsc {
margin-top:70px;
display: flex;
flex-direction:column;
flex-flow: row no-wrap;
justify-content: space-between;
gap: 10px;
text-align: center;
}
@keyframes showoptions {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
::-webkit-scrollbar {
width: 0;
}
/* Track */
::-webkit-scrollbar-track {
width: 0;
}
/* Handle */
::-webkit-scrollbar-thumb {
width: 0;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
width: 0;
}
.tsak{
color:#CCCA8D }
.brina{
color:#A9A9A9 }
.thaleia{
color:#75475A }
@media only screen and (max-width: 800px) {
.options {
flex-direction: column;
}
}
.starting{
text-align:center;
position: relative;
left: 50%;
transform: translateX(-50%);
}
.end{
position: absolute;
text-align: center;
}
.end-title{
font-size: 2.5rem;
color: #557C62;
}
.end a{
color: #557C62;
cursor: url('images/cur-point.png'), auto;
}
.end a:hover{
color: white;
}
.oo-cur{
cursor: url("images/3s.png"), auto;
}
.ep-cur{
cursor: url("images/2s.png"), auto;
}
.mp-cur{
cursor: url("images/5s.png"), auto;
}
.al-cur{
cursor: url("images/1s.png"), auto;
}
.tha-cur{
cursor: url("images/6s.png"), auto;
}
.tsak-cur{
cursor: url("images/4s.png"), auto;
}
@media screen and (max-width: 800px) {
tw-story{
background-size: 600px;
}
}
/************************************/
/************************************/
/************************************/
/************************************/
/************************************/
/**
* Harlowe Audio Library (HAL), by Chapel, v2.2.1
* for Harlowe 2.1.0 and higher
* Released under the Unlicense, and dedicated to the public domain.
**/
#audio-overlay{position:fixed;top:0;right:0;left:0;bottom:0;z-index:100000;background:#111}.lds-ring{display:block;position:relative;top:20%;margin:auto;width:20em;height:20em}.lds-ring div{box-sizing:border-box;display:block;position:absolute;width:18em;height:18em;margin:6px;border:6px solid #fff;border-radius:50%;-webkit-animation:lds-ring 1.2s cubic-bezier(.5,0,.5,1) infinite;animation:lds-ring 1.2s cubic-bezier(.5,0,.5,1) infinite;border-color:#fff transparent transparent transparent}.lds-ring div:nth-child(1){-webkit-animation-delay:-.45s;animation-delay:-.45s}.lds-ring div:nth-child(2){-webkit-animation-delay:-.3s;animation-delay:-.3s}.lds-ring div:nth-child(3){-webkit-animation-delay:-.15s;animation-delay:-.15s}@-webkit-keyframes lds-ring{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes lds-ring{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}input#audio-volume{width:100%;margin:2em 0}span#vol-title{position:relative;bottom:-1em;font-size:1rem;float:left}tw-link#audio-mute{display:inline-block;padding:.3em;width:90%;text-decoration:none;color:#111;background:#eee;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid #000}tw-link#audio-mute:hover{opacity:.8}tw-link#audio-mute:active{opacity:.6}tw-link#audio-mute span{display:inline-block;width:1em;position:relative;height:1em;top:.2em;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAQAAABLCVATAAABF0lEQVR4Ae2VJVREYRSEB3ftuFUaLhF6I22iF7TgLr1XvAc849CwiBac9Xtm3e97cefp/Pec7+mdH0mZrGtMoBomyAEHfjGHXKg07gNxeUS3BuMAqGZswE7YcOIYgqgG7BFlSQgTAgKysC2jNjQmghFQCOpMxq+QmQgmFATU4kcq/YlgfKB1lALUqFSukRIbEwpy4BTZPM/Bu9TaQ362KAsl56sAtSR+Sgv6RCFdr/gjBYiuj65c3J0eNEmXz95TgybocvmoJj3avf5l59L1iD/WglZCP7/uh8zgeQ6epdahaZENFIPCCFvEYNPW4JdNazBGzhkj6caCbSc02DRRu0+8RR/+rb7wx6D505HxCVKvG0zpp+yknHe8MBDkT/s8AAAAAElFTkSuQmCC);background-size:contain}tw-link#audio-mute.muted span{right:4px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAASElEQVR4Ae3WsQ0AMAjAsJ7ez9MTGEmlRGL3BJzPq6prw2DDYMNgw2DDYMOwh1kAMUygQIEC2RejANVxnVE9aDOqJ39GVZWqB5Z3r1ndBX5oAAAAAElFTkSuQmCC)}div#audio-volume{float:left}div#audio-controls{font:100% Georgia,serif;font-size:1.5em;position:fixed;width:8em;height:100%;padding:1em 2em;z-index:10000;top:0;left:0;bottom:0;background:#333;color:#eee;transition:left .3s;text-align:center}div#audio-controls.closed{left:-10.5em}div#audio-controls tw-link#audio-panel-toggle{display:inline-block;width:1.5em;position:absolute;height:1.5em;top:0;right:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-decoration:none;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAQAAABLCVATAAAAYklEQVR4Ae3MsQFAMAAEQMDEagCgN4EuVTrbPcACeUBugDNeSdMQomI0PmYdTEYD9DA5jcVoBKuxGY1kNQ6jGRSaGaIj8gw1aI/KYVUSNqsSzMpiVT2zMjlVN0fqVW5o2luMGHqkQmD9cPYAAAAASUVORK5CYII=);background-size:contain}div#audio-controls.closed tw-link#audio-panel-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAQAAABLCVATAAAAZElEQVR4Ae3TpwGAMBQAUfrEeHB0cDhcXBSO7ehlgBw9N8BL/YZO95r6uA/UEbOv+ylfHRJ9z1BWLynKJqmWohyS6ijKOygKCpmjZYqXTTA2xUiCsShGAMw8/Q3ArFgFMHek0w3WCaR74eO2YQAAAABJRU5ErkJggg==)}@media screen and (max-width:800px){div#audio-controls.closed{left:-12em}div#audio-controls.closed tw-link#audio-panel-toggle{right:-1.5em}}div#story-menu{margin:1em 0}tw-link.story-menu{width:100%;display:block;font-weight:400;background:#ccc;font-size:.9em;padding:.1em 0;color:#111;border:1px solid #333}tw-link.story-menu.hide{display:none}tw-link.story-menu:hover{opacity:.8}tw-link.story-menu:active{opacity:.6}input[type=range].hal{-webkit-appearance:none;width:100%;margin:2.25px 0}input[type=range].hal:focus{outline:0}input[type=range].hal::-webkit-slider-runnable-track{width:100%;height:15.5px;cursor:pointer;box-shadow:.4px .4px 1px #000,0 0 .4px #0d0d0d;background:#111;border-radius:0;border:0 solid #010101}input[type=range].hal::-webkit-slider-thumb{box-shadow:0 0 2.2px rgba(17,17,17,.1),0 0 0 rgba(30,30,30,.1);border:0 solid #fff;height:20px;width:11px;border-radius:0;background:rgba(255,255,255,.93);cursor:pointer;-webkit-appearance:none;margin-top:-2.25px}input[type=range].hal:focus::-webkit-slider-runnable-track{background:#444}input[type=range].hal::-moz-range-track{width:100%;height:15.5px;cursor:pointer;box-shadow:.4px .4px 1px #000,0 0 .4px #0d0d0d;background:#111;border-radius:0;border:0 solid #010101}input[type=range].hal::-moz-range-thumb{box-shadow:0 0 2.2px rgba(17,17,17,.1),0 0 0 rgba(30,30,30,.1);border:0 solid #fff;height:20px;width:11px;border-radius:0;background:rgba(255,255,255,.93);cursor:pointer}input[type=range].hal::-ms-track{width:100%;height:15.5px;cursor:pointer;background:0 0;border-color:transparent;color:transparent}input[type=range].hal::-ms-fill-lower{background:#000;border:0 solid #010101;border-radius:0;box-shadow:.4px .4px 1px #000,0 0 .4px #0d0d0d}input[type=range].hal::-ms-fill-upper{background:#111;border:0 solid #010101;border-radius:0;box-shadow:.4px .4px 1px #000,0 0 .4px #0d0d0d}input[type=range].hal::-ms-thumb{box-shadow:0 0 2.2px rgba(17,17,17,.1),0 0 0 rgba(30,30,30,.1);border:0 solid #fff;height:20px;width:11px;border-radius:0;background:rgba(255,255,255,.93);cursor:pointer;height:15.5px}input[type=range].hal:focus::-ms-fill-lower{background:#111}input[type=range].hal:focus::-ms-fill-upper{background:#444}
/** End of HAL code */
.goback img{
position: absolute;
height: 50px;
left: 60px;
top: 30px;
transition: .3s;
}
.goback img:hover{
transform: scale(1.1);
transition: .3s;
cursor: url('images/cur-point.png'), auto;
}
.alert{
position: absolute;
z-index: 100;
width: 90vw;
height: 90vh;
background-color: rgba(0, 0, 0, 0.8);;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
visibility: hidden;
border-radius: 20px;
}
.alert-square{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
width: 400px;
height: 200px;
background-color: #C1B4A9;
font-size: 20px;
color: black;
border-radius: 20px;
display: grid;
grid-template-areas:
"title title"
"yes no";
}
.alert-title{
display: flex;
align-self: center;
justify-self: center;
grid-area: title;
text-align: center;
}
.alert-yes{
grid-area: yes;
text-align: center;
text-decoration: none;
color: black;
display: flex;
align-self: center;
justify-self: center;
}
.alert-yes:hover, .alert-no:hover{
cursor: url("images/cur-point.png");
color: green;
}
.alert-no{
display: flex;
align-self: center;
justify-self: center;
grid-area: no;
text-align: center;
}</style><script role="script" id="twine-user-script" type="text/twine-javascript">
$(document).ready(function(){
$('tw-story').mousemove(function(e){
var pageX;
var pageY;
var amountMovedX = (e.pageX * -1 / 10);
var amountMovedY = (e.pageY * -1 / 10);
$('.values').html("<div>" + amountMovedX + 'px ' + amountMovedY + 'px' + "</div>");
$(this).css('background-position',amountMovedX+'px '+amountMovedY+'px');
});
});
/**
* Harlowe Audio Library (HAL), by Chapel, v2.2.1
* for Harlowe 2.1.0 and higher
* Released under the Unlicense, and dedicated to the public domain.
**/
;!function(e){(jQuery.browser=jQuery.browser||{}).mobile=/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(e)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(e.substr(0,4))}(navigator.userAgent||navigator.vendor||window.opera),function(){"use strict";window.Fast={filter:function(e,t){for(var o=e.length,n=[],a=0;a<o;a++)t(e[a],a,e)&&n.push(e[a]);return n},forEach:function(e,t){for(var o=e.length,n=0;n<o;n++)t(e[n],n,e)},map:function(e,t){for(var o=e.length,n=new Array(o),a=0;a<o;a++)n[a]=t(e[a],a,e);return n},find:function(e,t){for(var o=e.length,n=0;n<o;n++)if(t(e[n],n,e))return e[n]},findIndex:function(e,t){for(var o=e.length,n=0;n<o;n++)if(t(e[n],n,e))return n;return-1},some:function(e,t){for(var o=e.length,n=0;n<o;n++)if(t(e[n],n,e))return!0;return!1}}}(),window.Chapel=window.Chapel||{},window.Chapel.options={preload:!0,loadDelay:0,muteOnBlur:!0,startingVol:.5,persistPrefs:!0,globalA:!0,showControls:!0,sidebarStartClosed:!0,volumeDisplay:!1,trackLoadLimit:500,totalLoadLimit:8e3,debug:!1},window.Chapel.debug=function(){Chapel.options.debug&&console.log.apply(null,arguments)},function(){"use strict";var n=$("tw-storydata"),o=/(.+?):(.+)/,t=/[\r\n]+/,a=/^["']/,r=/["']$/;function e(e){return Fast.map(Fast.filter(e.split(t),function(e){return e&&e.trim()&&e.includes(":")}),function(e){return e.trim()})}function i(e){return e.trim().replace(a,"").replace(r,"").trim()}function s(e){var t=e.match(o);return t instanceof Array?{key:i(t[1]),value:i(t[2])}:e}var u,l,c,p=n.find('tw-passagedata[name="hal.tracks"]'),d=null;p.length&&(u=e(p.text()),l=[],c=[],Fast.forEach(u,function(e){var t,o=s(e);"string"==typeof o&&c.push(o),l.push([o.key,(t=o.value,Fast.map(t.split(","),i))])}),c.length&&console.error("Some track definitions could not be parsed:\n"+c.join("\n")+"\nPlease check these definitions and try again."),d=new Map(l));var m,h,f=n.find('tw-passagedata[name="hal.config"]'),g=null;function y(e){var t=n.attr("format-version");if(e)return t;var o=t.split(".")[0],o=Number(o);return Number.isNaN(o)&&(o=3),o<1&&(o=3),o}f.length&&(m=e(f.text()),h={},Fast.forEach(Fast.map(m,function(e){return s(e)}),function(e){h[e.key]=e.value}),g=h),g&&Fast.forEach(Object.keys(g),function(e){var t=e,o=h[e],n=typeof Chapel.options[e];"boolean"==n?"true"===o?Chapel.options[t]=!0:"false"===o&&(Chapel.options[t]=!1):"number"==n?(o=Number(o),Number.isNaN(o)||(Chapel.options[t]=o)):"string"==n&&o&&(Chapel.options[t]=o)});var w=require("macros");if(window.Chapel=window.Chapel||{},window.Chapel.Macros={add:function(n){n&&"object"==typeof n&&Fast.forEach(Object.keys(n),function(e){var t,o;o=n[t=e],w.add(t,function(){var e=[].slice.call(arguments).slice(1),t=o.apply(null,e);return"string"==typeof t||"boolean"==typeof t||"number"==typeof t?t:""},w.TypeSignature.zeroOrMore(w.TypeSignature.Any))})}},window.Chapel.Get={version:y(),isHarlowe3OrLater:3<=y(),storyTitle:n.attr("name"),IFID:n.attr("ifid"),fromPassage:d},Chapel.debug("Harlowe Version -> ",y(!0)),Chapel.debug("Harlowe Major Version -> ",Chapel.Get.version),Chapel.debug("Story Title -> ",Chapel.Get.storyTitle),Chapel.debug("Story IFID -> ",Chapel.Get.IFID),Chapel.Get.version<2)throw new Error("The Harlowe Audio Library is only designed to work with Harlowe 2 and 3; you appear to be using Harlowe 1 or an otherwise invalid story format.","get.js -> initialization",176);Chapel.options.storagekey="%%hal-"+Chapel.Get.IFID+"-{"+Chapel.Get.storyTitle+"}",Chapel.debug("Storage Key -> ",Chapel.options.storagekey)}(),function(){"use strict";var t=Chapel.options,e=function(e,t){if(window.localStorage)try{e=""+e,"string"!=typeof t&&(t=JSON.stringify(t)),window.localStorage.setItem(e,t)}catch(e){console.error(e)}},o=function(e){if(window.localStorage)try{return e=""+e,window.localStorage.getItem(e)}catch(e){console.error(e)}},n=function(e){if(window.localStorage)try{e=""+e,window.localStorage.removeItem(e)}catch(e){console.error(e)}},a={loaded:[],classes:{},master:{volume:t.startingVol,mute:!1},groups:{playing:[],looping:[],custom:{}},mute:function(e){a.master.mute=!!e,$(document).trigger({type:":master-mute",mute:!!e})},isMuted:function(){return!!a.master.mute},volume:function(e){e=Number(e),Number.isNaN(e)||(1<e?e=1:e<0&&(e=0),a.master.volume=e),$(document).trigger({type:":master-volume",volume:e})},getVolume:function(){return a.master.volume},stopAll:function(){a.classes.Track&&Fast.forEach(a.classes.Track.list,function(e){e.stop()})},audioPlaying:function(){return!!a.groups.playing.length},savePrefs:function(){e(t.storagekey,a.master)},loadPrefs:function(){var e=o(t.storagekey);e&&"object"==typeof e&&e.hasOwnProperty("volume")&&"number"==typeof e.volume&&e.hasOwnProperty("mute")&&"boolean"==typeof e.volume&&(delete a.master,a.master=e)},clearPrefs:function(){n(t.storagekey)}},r={track:[":available",":loaded",":play",":stop",":mute",":volume"],master:[":master-mute",":master-volume"]};var i=r.track.concat(r.master);function s(e,t){if(!e||"string"!=typeof e||!e.trim())return null;var o=Fast.filter(Fast.map(e.split(" "),function(e){return":"!==(e=e.split(".")[0])[0]&&(e=":"+e),e+".userland"}),function(e){return t?i.includes(e):r.track.includes(e)}).join(" ");return o&&o.trim()?o:null}a.data={parseEvent:s,bail:function(e){throw new Error(e,"audio.js -> bail()",140)}},a.on=function(e,t){t&&"function"==typeof t?(e=s(e,!0))&&$(document).on(e,t):console.error("Chapel.Audio.on() -> invalid callback")},a.one=function(e,t){t&&"function"==typeof t?(e=s(e,!0))&&$(document).one(e,t):console.error("Chapel.Audio.one() -> invalid callback")},a.off=function(e){(e=s(e,!0))&&$(document).off(e)},t.persistPrefs&&($(document).on(":master-mute",a.savePrefs),$(document).on(":master-volume",a.savePrefs)),$(document).on(":play",function(e){e.track.addToGroup("playing")}),$(document).on(":stop",function(e){e.track.removeFromGroup("playing")}),t.muteOnBlur&&$(window).on("blur",function(){a.isMuted()||(a.mute(!0),$(window).one("focus",function(){a.mute(!1)}))}),a.parseEvent=s,window.Chapel=window.Chapel||{},window.Chapel.Audio=a}(),function(){"use strict";var r=Chapel.Audio,o=r.data.pareEvent,a=r.data.bail,i=Chapel.options,t=$(document.createElement("div")).attr("id","audio-container").css("display","none").appendTo(document.body),s={aac:"audio/aac",caf:"audio/x-caf","x-caf":"audio/x-caf",mp3:'audio/mpeg; codecs="mp3"',mpeg:'audio/mpeg; codecs="mp3"',m4a:"audio/mp4",mp4:"audio/mp4","x-m4a":"audio/mp4","x-mp4":"audio/mp4",oga:"audio/ogg",ogg:"audio/ogg",opus:'audio/ogg; codecs="opus"',wav:"audio/wav",wave:"audio/wav",weba:"audio/webm",webm:"audio/webm"};function u(e,t,o){this instanceof u||a("Track: called without `new` operator"),e||a("Track: no id specified"),"string"!=typeof e&&a("Track: track id is not a string"),t&&(!Array.isArray(t)||t.length)||a("Track: no sources specified"),o?t=[].slice.call(arguments).slice(1):"string"==typeof t&&(t=[t]);var n=$(document.createElement("audio"));Fast.forEach(t,function(e){var t,o;$(document.createElement("source")).attr({src:e,type:(t=e.split("."),(o=t[t.length-1]).includes("?")&&(o=o.split("?")[0]),o=o.toLowerCase().trim(),Object.keys(s).includes(o)||a('Track: unsupported file type "'+o+'"'),s[o])}).appendTo(n)}),n.attr({"data-track":"id","data-volume":1,"data-mute":!1}).one("canplaythrough.hal",function(){r.loaded.push(e)}),i.preload&&n.attr("preload","auto"),n[0].volume=+r.master.volume,this.id=e,this.$el=n,this.unwrap=n[0],this.sources=t}Object.assign(u,{list:[],is:function(e){return e instanceof u},has:function(t){return Fast.some(u.list,function(e){return e.id===t})},emit:function(e,t){$(document).trigger({type:e,track:t}),t.emit(e)},add:function(e,t,o){o&&(t=[].slice.call(arguments).slice(1));var n=new u(e,t);return u.list.push(n),n.$el.on("canplay",function(){u.emit(":available",n)}),n.$el.on("canplaythrough",function(){u.emit(":loaded",n)}),n.attach(),n},renew:function(){Fast.forEach(u.list,function(e){e.mute(e.isMuted()),e.volume(e.getVolume())})},getIdx:function(t){return Fast.findIndex(u.list,function(e){return e.id===t})},get:function(t){var e=Fast.find(u.list,function(e){return e.id===t});if(!e)throw new ReferenceError('There is no track with the id "'+t+'". Please check your spelling and capitalization.',"track.js -> Track.get()",155);return e},removeFromDOM:function(e){"string"==typeof e&&(e=u.get(e)),e&&u.is(e)?e.unattach():t.remove()},_runOnMultiple:function(e,t,o){e instanceof Array&&u.prototype.hasOwnProperty(t)&&Fast.forEach(u.list,function(e){u.is(e)||(e=u.get(e)||null),e&&e[t].apply(e,o&&o instanceof Array?o:[])})}}),Object.assign(u.prototype,{constructor:u,emit:function(e){this.$el.trigger({type:e,track:this})},clone:function(){return new u(this.id,this.sources)},isAttached:function(){return $.contains(t[0],this.unwrap)},attach:function(){return this.isAttached()||this.$el.appendTo(t),this},unattach:function(){return this.isAttached()&&this.$el.remove(),this},isPlaying:function(){return!this.unwrap.paused},play:function(){var e=this;return this.unwrap.play(),u.emit(":play",this),this.$el.on("ended",function(){e.unwrap.loop||(e.unwrap.currentTime=0,u.emit(":stop",e))}),this},playWhenPossible:function(){var t=this;return this.unwrap.play().then(function(){u.emit(":play",t),t.$el.on("ended",function(){t.unwrap.loop||(t.unwrap.currentTime=0,u.emit(":stop",t))})},function(e){$(document).one("click mousedown keydown touchstart",function(){t.play()})}).catch(function(e){console.error(e)}),this},forcePlay:function(){var e=this,t=$(document.createElement("a")).css("display","none").appendTo(document.body).on("click",function(){e.play()});setTimeout(function(){t.trigger("click")},safeAudioStart)},pause:function(){return this.unwrap.pause(),u.emit(":pause",this),this},stop:function(){return this.unwrap.pause(),this.unwrap.currentTime=0,u.emit(":stop",this),this},mute:function(e){return e=!!e,this.$el.attr("data-mute",e),r.master.mute?this.unwrap.muted=!0:this.unwrap.muted=e,u.emit(":mute",this),this},isMuted:function(){var e=this.$el.attr("data-mute");return"boolean"==typeof e?e:"false"!==e},toggleMute:function(){return this.mute(!this.isMuted()),this},volume:function(e){return e=Number(e),Number.isNaN(e)||(1<e?e=1:e<0&&(e=0),this.$el.attr("data-volume",e),this.unwrap.volume=e*r.master.volume),u.emit(":volume",this),this},getVolume:function(){return Number(this.$el.attr("data-volume"))},addToGroup:function(e,t){var o=this,n=t?r.groups.custom[e]:r.groups[e];return Fast.some(n,function(e){return o.id===e.id})||n.push(this),this},removeFromGroup:function(e,t){var o=this,n=t?r.groups.custom[e]:r.groups[e],a=Fast.findIndex(n,function(e){return e.id&&e.id===o.id});return n.splice(a,1),this},loop:function(e){return this.unwrap.loop=!!e,this.unwrap.loop?this.addToGroup("looping"):this.removeFromGroup("looping"),this},isLooping:function(){return!!this.unwrap.loop},toggleLoop:function(){return this.loop(!this.isLooping()),this},seek:function(e){return e<0?e=this.unwrap.duration-e:e>this.unwrap.duration&&(e=this.unwrap.duration),this.unwrap.currentTime=e,this},fadeIn:function(e){var t=this;e=e||1;var o=this.getVolume();return this.volume(0),this.play(),this.$el.animate({volume:o*r.master.volume},1e3*e,function(){t.volume(o),u.emit(":volume",t),u.emit(":fade",t)}),this},fadeOut:function(e){e=e||1;var t=this,o=this.getVolume();return this.$el.animate({volume:0},1e3*e,function(){t.stop(),t.volume(o),u.emit(":volume",t),u.emit(":fade",t)}),this},fadeTo:function(e,t){var o=this;if(e=e||1,t=Number(t),!Number.isNaN(t))return 1<t?t=1:t<0&&(t=0),this.$el.animate({volume:t*r.master.volume},1e3*e,function(){o.volume(t),u.emit(":volume",o),u.emit(":fade",o)}),this;alert("ivalid volume level")},delay:function(e,t){var o=this;"function"==typeof t&&(e=Number(e),(Number.isNaN(e)||e<0)&&(e=0),setTimeout(function(){t.call(o,o,e)},e))},on:function(e,t){if(!t||"function"!=typeof t)return console.error("<track>.on() -> invalid callback"),this;(e=o(e))&&this.$el.on(e,t)},one:function(e,t){if(!t||"function"!=typeof t)return console.error("<track>.one() -> invalid callback"),this;(e=o(e))&&this.$el.one(e,t)},off:function(e){(e=o(e))&&this.$el.off(e)}}),r.classes.Track=u,r.newTrack=function(){try{return u.add.apply(null,arguments)}catch(e){console.error(e.message),alert("Error in A.newTrack() -> see the console for more information.")}},r.track=function(e){try{return u.get(e)}catch(e){console.error(e.message),alert("Error in A.track() -> see the console for more information.")}},$(document).on(":master-mute",u.renew),$(document).on(":master-volume",u.renew)}(),function(){"use strict";var i=Chapel.Audio,s=i.classes.Track,o=(i.data._extend,/(play)?list:(.+)/i);i.createGroup=function(e,t,o){var n,a,r=o?[].slice.call(arguments).slice(1):t;n=e,(a=r)&&Array.isArray(a)||(a=[]),i.groups.custom[n]=Fast.map(a,function(e){return s.get(e)})},i.group=function(e){if(!(this instanceof i.group))return new i.group(e);if(Object.keys(i.groups.custom).includes(e))this.members=i.groups.custom[e];else{if(!(i.groups[e]&&i.groups[e]instanceof Array))throw new ReferenceError('There is no group with the id "'+id+'". Please check your spelling and capitalization.',"group.js -> A.group()",29);this.members=i.groups[e]}var t;!o.test(e)||(t=e.match(o)[2])&&t.trim()&&(this.members=i.playlist(t).tracks),Array.isArray(this.members)||(this.members=[],console.error('Could not find members for track group "'+e+'"!'))},Object.assign(i.group,{is:function(e){return this instanceof i.group},_runOnAll:function(e,t,o,n){null!=n?o=[].slice.call(arguments).slice(2):o instanceof Array||(o=[o]);var a=[e.members,t,o];s._runOnMultiple.apply(null,a)}}),Object.assign(i.group.prototype,{constructor:i.group,_run:function(){i.group._runOnAll.apply(null,[this].concat([].slice.call(arguments)))},play:function(){return this._run("play"),this},pause:function(){return this._run("pause"),this},stop:function(){return this._run("stop"),this},mute:function(e){return this._run("mute",e),this},volume:function(e){return this._run("volume",e),this},loop:function(e){return this._run("loop",e),this}})}(),function(){"use strict";var e=Chapel.Audio,r=e.classes.Track;e.data._extend;function n(e,t){if(!(this instanceof n))return new n(e,t);this.id=e,this.tracks=t.map(function(e){return r.get(e)}),this.looping=!1,this.current="",this.playing=!1}Object.assign(n,{list:{},is:function(e){return e instanceof n},add:function(e,t,o){return o&&(t=[].slice.call(arguments).slice(1)),n.list[e]=new n(e,t),n.list[e]},_runOnAll:function(e,t,o,n){null!=n?o=[].slice.call(arguments).slice(2):o instanceof Array||(o=[o]);var a=[e.tracks,t,o];r._runOnMultiple.apply(null,a)}}),Object.assign(n.prototype,{constructor:n,clone:function(){return new n(this.id,this.tracks.map(function(e){return e.id}))},_run:function(){n._runOnAll.apply(null,[this].concat([].slice.call(arguments)))},volume:function(e){return this._run("volume",e),this},mute:function(e){return this._run("mute",e),this},shuffle:function(){for(var e,t,o=this.tracks,n=o.length-1;0<n;n--)e=Math.floor(Math.random()*(n+1)),t=o[n],o[n]=o[e],o[e]=t;return this.tracks=o,this},random:function(){return this.tracks[Math.floor(Math.random()*this.tracks.length)]},isPlaying:function(){return this.playing},nowPlaying:function(){return r.get(this.current)},play:function(e){var t=this;if((e=e||(t.current?Fast.findIndex(t.tracks,function(e){return e.id===t.current}):0))>=t.tracks.length&&t.looping)e=0;else if(e>=t.tracks.length)return t.current="",void(t.playing=!1);var o=t.tracks[e],n=o.isLooping();return o.loop(!1),o.play(),t.playing=!0,setTimeout(function(){o.isPlaying()||(t.playing=!1)},20),t.current=o.id,o.$el.one("ended.playlist",function(){e++,o.loop(n),t.play(e)}),t},loop:function(e){return this.looping=!!e,this},isLooping:function(){return this.looping},stop:function(){var e;return this.current&&this.isPlaying()?(e=this.nowPlaying())&&(e.stop(),e.$el.off(".playlist")):this._run("stop"),this.current="",this.playing=!1,this},pause:function(){var e;return this.current&&this.isPlaying()&&((e=this.nowPlaying())&&e.pause()),this.playing=!1,this}}),e.classes.Playlist=n,e.createPlaylist=function(){try{n.add.apply(null,arguments)}catch(e){console.error(e.message),alert("Error in A.createPlaylist() -> see the console for more information.")}},e.playlist=function(e){try{var t=n.list[e]||null;if(!t)throw new ReferenceError('There is no playlist with the id "'+e+'". Please check your spelling and capitalization.',"list.js -> A.playlist()",171);return t}catch(e){console.error(e.message),alert("Error in A.createPlaylist() -> see the console for more information.")}}}(),function(){"use strict";var t=Chapel.Audio,o=t.classes.Track,n=t.classes.Playlist;function a(t,o){if("object"!=typeof o)throw new TypeError("Invalid extension.","extensions.js -> _extend()",8);Fast.forEach(Object.keys(o),function(e){if(void 0!==t[e])throw new Error('Invalid extension: cannot clobber existing property "'+e+'".',"extensions.js -> _extend()",8);t[e]=o[e]})}t.extend=function(e){a(Audio,e)},o.extend=function(e){a(o,e)},o.extendPrototype=function(e){a(o.prototype,e)},t.extendTrack=o.extend,t.extendTrackProto=o.extendPrototype,t.group.extend=function(e){a(t.group,e)},t.group.extendPrototype=function(e){a(t.group.prototype,e)},t.extendGroup=t.group.extend,t.extendGroupProto=t.group.extendPrototype,n.extend=function(e){a(n,e)},n.extendPrototype=function(e){a(n.prototype,e)},t.extendPlaylist=n.extend,t.extendPlaylistProto=n.extendPrototype}(),function(){"use strict";var e,t,o,n,a,r,i,s,u=Chapel.options;u.showControls&&(e=$(document.createElement("div")).attr("id","story-menu").css("display","none"),t=$(document.createElement("span")).attr("id","vol-title").append("Volume"),u.volumeDisplay||t.css("display","none"),o=$(document.createElement("input")).attr({id:"audio-volume",type:"range",min:1,max:99,step:1,title:"Volume"}).addClass("hal"),(n=Math.trunc(100*window.Chapel.Audio.master.volume))<0?n=0:100<n&&(n=100),o.attr("value",n),a=function(e){void 0===e&&(e=o.val()),t.empty().append("Volume "+e)},o.on("input",function(){window.Chapel.Audio.volume($(this).val()/100),a($(this).val())}),r=$(document.createElement("tw-link")).attr({id:"audio-mute",title:"Mute"}).append("Mute <span></span>").on("click",function(e){e.preventDefault(),$(this).toggleClass("muted"),Chapel.Audio.mute(!Chapel.Audio.isMuted())}),Chapel.Audio.isMuted()&&r.addClass("muted"),i=$(document.createElement("tw-link")).attr("id","audio-panel-toggle").on("click",function(e){e.preventDefault(),s.toggleClass("closed")}),s=$(document.createElement("div")).attr("id","audio-controls").append(e,t,o,r,i).appendTo(document.body),u.sidebarStartClosed&&s.addClass("closed"),window.Chapel=window.Chapel||{},window.Chapel.Audio=window.Chapel.Audio||{},window.Chapel.Audio.controls={$panel:s,$volume:o,$mute:r,$user:e,close:function(){s.addClass("closed")},open:function(){s.removeClass("closed")},toggle:function(){s.toggleClass("closed")},hide:function(){s.css("display","none")},show:function(){s.css("display","block")},updateVolume:a})}(),function(){"use strict";var s=Chapel.options,t=State,e=$(document.createElement("div")).attr("id","audio-overlay").css("display","none").appendTo(document.body);function o(){e.css("display","block").append('<div class="lds-ring"><div></div><div></div><div></div><div></div></div>')}function u(){e.fadeOut(function(){e.empty()})}window.Chapel=window.Chapel||{},window.Chapel.Audio=window.Chapel.Audio||{},window.Chapel.Audio.loadScreen={show:o,dismiss:u,kill:function(){$("#audio-overlay").remove()}},window.Chapel.Audio.$overlay=e,window.Chapel.Audio.preload=function(){var a,e,r,i;Chapel.debug("This is a mobile browser -> ",$.browser.mobile),t.pastLength||t.futureLength||$.browser.mobile||($(document).ready(function(){o()}),a=100+s.loadDelay,e=Chapel.Audio.classes.Track.list,r=Chapel.Audio.loaded,e.length?(i=Fast.map(e,function(e){return e.id}),0<s.totalLoadLimit&&setTimeout(function(){u()},s.totalLoadLimit),function e(){var t,o,n;i.length?(t=i.shift(),r.includes(t)?e():(o=Chapel.Audio.classes.Track.get(t)).unwrap.readyState<2?(n=!1,o.$el.one("canplaythrough.hal",function(){e(),n=!0}),setTimeout(function(){n||(o.$el.off("canplaythrough.hal"),e())},s.trackLoadLimit)):(r.includes(t)||r.push(t),e())):setTimeout(u,a)}()):setTimeout(u,a))}}(),function(){"use strict";var o=Chapel.options.storagekey+"_hal_restart_";Chapel.debug("HAL Session Key -> ",o);var e,t,n=(window.sessionStorage?(Chapel.debug("Session Storage Available"),e=function(e,t){window.sessionStorage.setItem(o+e,t)},t=function(e){return window.sessionStorage.getItem(o+e)}):(Chapel.debug("Session Storage Unavailable"),e=function(){},t=function(){},console.warn("Session storage is unavailable...")),{save:e,load:t});window.Chapel.Audio.state={_store:n,saveTracks:function(){var e;try{e=Fast.map(Chapel.Audio.classes.Track.list,function(e){return{id:e.id,sources:e.sources}}),Chapel.debug("Session Saved (Tracks) -> ",e),e=JSON.stringify(e),n.save("tracks",e)}catch(e){console.error(e.message)}},loadTracks:function(){var e;try{e=(e=n.load("tracks"))&&JSON.parse(e),Array.isArray(e)&&e.length&&(Chapel.debug("Session Loaded (Tracks) -> ",e),Fast.forEach(e,function(e){e.id&&e.sources&&!Chapel.Audio.classes.Track.has(e.id)?Chapel.Audio.newTrack.apply(null,[e.id].concat(e.sources)):Chapel.debug("Track reloading skipped.")}))}catch(e){console.error(e.message)}},savePlaylists:function(){try{var o=Chapel.Audio.classes.Playlist.list,e=Fast.map(Object.keys(o),function(e){var t={};return t.tracks=Fast.map(o[e].tracks,function(e){return e.id}),t.id=o[e].id,t});Chapel.debug("Session Saved (Playlists) -> ",e),e=JSON.stringify(e),n.save("playlists",e)}catch(e){console.error(e.message)}},loadPlaylists:function(){var e;try{(e=(e=n.load("playlists"))&&JSON.parse(e))&&Array.isArray(e)&&e.length&&(Chapel.debug("Session Loaded (Playlists) -> ",e),Fast.forEach(e,function(e){e.id&&e.tracks&&Chapel.Audio.createPlaylist(e.id,e.tracks)}))}catch(e){console.error(e.message)}},saveGroups:function(){var t;try{t={},Fast.forEach(Object.keys(Chapel.Audio.groups.custom),function(e){t[e]=Fast.map(Chapel.Audio.groups.custom[e],function(e){return"string"==typeof e?e:e.id})}),Chapel.debug("Session Saved (Groups) -> ",t),t=JSON.stringify(t),n.save("groups",t)}catch(e){console.error(e.message)}},loadGroups:function(){var t;try{(t=(t=n.load("groups"))&&JSON.parse(t))&&"object"==typeof t&&(Chapel.debug("Session Loaded (Groups) -> ",t),Fast.forEach(Object.keys(t),function(e){Fast.map(t[e],function(e){return Chapel.Audio.classes.Track.get(e)})}),Chapel.Audio.groups.custom=t)}catch(e){console.error(e.message)}}}}(),function(){"use strict";var e=Chapel.options;e.globalA&&void 0===window.A&&(Chapel.debug("Created global A interface."),window.A=window.Chapel.Audio),Chapel.Get.fromPassage&&(Chapel.debug("Loading tracks from track def special passage -> ",Chapel.Get.fromPassage),Chapel.Get.fromPassage.forEach(function(e,t){Chapel.Audio.newTrack.apply(null,[t].concat(e))})),$(document).on("unload",function(){Chapel.debug("User Prefs Saved"),window.Chapel.Audio.savePrefs()}),Chapel.Audio.classes.Track.renew(),Chapel.Audio.controls&&Chapel.Audio.controls.updateVolume(),Chapel.Get.isHarlowe3OrLater&&($(window).on("unload",function(){Chapel.debug("HAL State Saved"),Chapel.Audio.state.saveTracks(),Chapel.Audio.state.savePlaylists(),Chapel.Audio.state.saveGroups()}),Chapel.debug("HAL State Loaded"),Chapel.Audio.state.loadTracks(),Chapel.Audio.state.loadPlaylists(),Chapel.Audio.state.loadGroups()),e.persistPrefs&&(Chapel.debug("User Prefs Loaded"),Chapel.Audio.loadPrefs())}(),function(){"use strict";var s,u,e,l,t;Chapel.options.showControls&&(s=Engine,u=Chapel.Audio.controls.$user,e=function(){return"none"!==u.css("display")},l=function(){return e()||u.css("display","block"),u},t=function(){return e()&&u.css("display","none"),u},Chapel.Audio.menu={hide:t,show:l,isShown:e,links:{add:function(e,t,o){var n,a;if(!e||"string"!=typeof e){var r="undefined";return alert(r),void console.error(r)}o||"function"!=typeof t?(t&&"string"==typeof t&&(n=t),o&&"function"==typeof o&&(a=o)):(a=t,n=null);var i=$(document.createElement("tw-link")).append(e).attr({tabindex:"0",name:e.toLowerCase().trim()}).on("click",function(){n&&s.goToPassage(n),a&&a()}).addClass("story-menu").appendTo(u);return l(),i},clear:function(){return u.empty(),t()},hide:function(e){e=e.toLowerCase().trim(),$('tw-link.story-menu[name="'+e+'"]').addClass("hide")},show:function(e){e=e.toLowerCase().trim(),$('tw-link.story-menu[name="'+e+'"]').removeClass("hide")},toggle:function(e){e=e.toLowerCase().trim(),$('tw-link.story-menu[name="'+e+'"]').toggleClass("hide")},remove:function(e){e=e.toLowerCase().trim(),$('tw-link.story-menu[name="'+e+'"]').remove()}}})}(),function(){"use strict";var n=Chapel.Audio;function o(e){return e&&"function"==typeof e}function a(e,t){if(!e||"string"!=typeof e)return null;switch(e=e.toLowerCase().trim()){case"isplaying":e="isPlaying";break;case"playwhenpossible":e="playWhenPossible";break;case"ismuted":e="isAMuted";break;case"togglemute":e="toggleMute";break;case"getvolume":e="getVolume";break;case"islooping":e="isLooping";break;case"toggleloop":e="toggleLoop";break;case"fadein":e="fadeIn";break;case"fadeout":e="fadeOut";break;case"fadeto":e="fadeTo";break;case"stopall":e="stopAll"}if("isPlaying"===e&&"master"===t&&(e="audioPlaying"),"group"===t){if(o(n.group.prototype[e]))return e}else if("master"===t){if(o(n[e]))return e}else if(o(n.classes[t].prototype[e]))return e;throw new ReferenceError('Cannot run the command: "'+e+'" on the API "'+t+'". The command may be invalid, or this may be a bug in HAL.',"macros.js -> getCommand()",10)}var e={newtrack:function(){var e=[].slice.call(arguments);try{return n.newTrack.apply(null,e)}catch(e){alert("Error in the (newtrack:) macro: "+e.message)}},newplaylist:function(e,t){t=[].slice.call(arguments).slice(1);try{return n.createPlaylist(e,t)}catch(e){alert("Error in the (newplaylist:) macro: "+e.message)}},newgroup:function(e,t){t=[].slice.call(arguments).slice(1);try{return n.createGroup(e,t)}catch(e){alert("Error in the (newgroup:) macro: "+e.message)}},masteraudio:function(e){try{return e=a(e,"master"),n[e].apply(null,[].slice.call(arguments).slice(1))}catch(e){alert("Error in the (masteraudio:) macro: "+e.message)}},track:function(e,t){try{var o=n.track(e);return o[t=a(t,"Track")].apply(o,[].slice.call(arguments).slice(2))}catch(e){alert("Error in the (track:) macro: "+e.message)}},playlist:function(e,t){try{var o=n.playlist(e);return o[t=a(t,"Playlist")].apply(o,[].slice.call(arguments).slice(2))}catch(e){alert("Error in the (playlist:) macro: "+e.message)}},group:function(e,t){try{var o=n.group(e);return o[t=a(t,"group")].apply(o,[].slice.call(arguments).slice(2))}catch(e){alert("Error in the (group:) macro: "+e.message)}}};window.Chapel.Macros.add(e)}();
/** End of HAL code */
</script><tw-passagedata pid="1" name="σκηνη 1" tags="" position="500,46" size="200,200"><div class="story"><span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Καλά τι ώρα είναι ;! Πω... πρέπει να ετοιμάζομαι και το σπίτι είναι πάλι ακατάστατο. Βιβλία, κουτάκια και κουτιά από πίτσες παντού...</div>
<div class="options">[[Χάιδεψε την γατούλα σου]]</div>
(track: 'rain-thunder', 'loop', true)
(track: 'rain-thunder', 'fadein',1)
(live: 3s)[{
(stop:)\
(track: 'emptycans', 'play')
}]
(live: 4s)[{
(stop:)\
(track: 'meow', 'play')
}]
</tw-passagedata><tw-passagedata pid="2" name="Χάιδεψε την γατούλα σου" tags="" position="498,299" size="100,100"><div class="story"><span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Αχ παιδί μου, δεν θα αργήσω. Θα πάμε να τα πούμε λίγο με τα παιδιά μιας και με αυτά που έγιναν δεν προλάβαμε να πούμε τίποτα άλλο. Πρέπει να βρώ κάτι να βάλω όμως...</div><div class="options">
[[Ψάξε στο ντουλάπι]]
[[Ψάξε στα άπλυτα]]
</div>
(track: 'purring', 'play')</tw-passagedata><tw-passagedata pid="3" name="Ψάξε στο ντουλάπι" tags="" position="358,423" size="100,100"><div class="story">(text-colour:#B1723A)[Ωραία αυτή η μπλούζα... και έχω καιρό να την βάλω.]</div>
<div class="options ntoulapi">[[Φόρεσε την]]</div>
(set: $tshirt to true)
(track: 'syrtari', 'play')</tw-passagedata><tw-passagedata pid="4" name="Ψάξε στα άπλυτα" tags="" position="634,421" size="100,100"><div class="story">(text-colour:#B1723A)[//Κάνεις μία διστακτική προσπάθεια να τη μυρίσεις.//
Ντάξει, δεν είναι και τόσο χάλια...]</div>
<div class="options aplyta">[[Φόρεσε την]] </div>
(set: $tshirt to false)
(track: 'prank', 'volume', 0.5)
(track: 'prank', 'play')
</tw-passagedata><tw-passagedata pid="5" name="Φόρεσε την" tags="" position="492,502" size="100,100">|clue)[<div class="story">(text-colour:#B1723A)[Ωραία. Παίρνω κλειδιά, κινητό, πορτοφόλι και το μπουκάλι.]</div>
<div class="options">[[Πήγαινε στο αμάξι|Βάλε μπρός]]</div>
]
(track: 'tshirt-door', 'play')
{(live: 2s)[
(show: ?clue)
(stop:)
]}
</tw-passagedata><tw-passagedata pid="6" name="Κόψε δρόμο" tags="" position="363,835" size="100,100"><div class="story">(text-colour:#B1723A)[Καλά μέχρι και από εδώ πάλι στην κίνηση κόλλησα;! Θα τρελαθώ. Ελπίζω να μην αργήσω στο απόψινό...
Και σιγά μην βρώ πάρκινγκ κιόλας. Κάτσε να πάρω μία την 'Αλεξ.]</div>
<div class="options kopsedromo">[[Τηλεφώνησέ της]]</div>
(set: $robbery to false)</tw-passagedata><tw-passagedata pid="7" name="Πήγαινε από την δίπλα λεωφόρο" tags="" position="614,820" size="100,100"><div class="story">(text-colour:#B1723A)[Καλά τι γίνεται εδώ; Ληστεία;
Παναγία μου θα σκοτωθούμε! Πρέπει να φύγω από εδώ γρήγορα!
Καλά και πάρκινγκ σιγά μην βρώ. Κάτσε να τηλεφωνήσω στην 'Αλεξ.]</div>
<div class="options dipladromo">[[Τηλεφώνησέ της]]</div>
(set: $robbery to true)
(track: 'robbery', 'volume', 0.7)
(track: 'robbery', 'fadein', 3)
(track: 'traffic', 'fadeout', 3)</tw-passagedata><tw-passagedata pid="8" name="Τηλεφώνησέ της" tags="" position="513,936" size="100,100">|clue)[<div class="story"><span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Ναι; Έλα 'Οουεν!
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> 'Ελα! Ενοχλώ;
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> 'Οχι! Σε περιμένουμε! 'Ερχεσαι;
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Ναι τώρα φτάνω. Να σου πω... Παίζει να μπορώ να βάλω το αμάξι στο γκαράζ σου;
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Ναι, εννοείται! Η είσοδος είναι από την πίσω μεριά της αυλής να ξέρεις.</div>
<div class="options">[["Οκάυ τώρα φτάνω"]]]</div>
{(live: 7s)[
(show: ?clue)
(stop:)
]}
(track: 'dial', 'play')</tw-passagedata><tw-passagedata pid="9" name=""Οκάυ τώρα φτάνω"" tags="" position="517,1072" size="100,100">|clue)[<div class="story">(text-colour:#B1723A)[Καλά πόσα πράγματα έχει σε αυτό το γκαράζ; Το σπίτι μου θυμίζει... Δες τι γλύκο όμως. Μέχρι και το αρκουδάκι τους κράτησε. Σύμβολο παντοντινής φιλίας.]</div>
<div class="options">[[Μπες στο σπίτι]]]</div>
(track: 'going-garage', 'play')
{(live: 14s)[
(show: ?clue)
(stop:)
]}
(track: 'traffic', 'fadeout', 5)
(track: 'robbery', 'fadeout', 5)
{(live: 17s)[
(track: 'garage-ambience', 'loop', true)
(track: 'garage-ambience', 'play')
(stop:)
]}
(track: 'rain-thunder', 'volume', 1)
(track: 'rain-thunder', 'fadeto', 5, 0.6)
</tw-passagedata><tw-passagedata pid="10" name="Μπες στο σπίτι" tags="" position="583,1197" size="200,200">|clue)[<div class="story"><span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Γειά σου 'Οουεν! ΄Ελα πέρασε, πως είσαι; ΄Αλλον έναν περιμένουμε!</div>
<div class="options">[["Γειά σας παιδία! Σόρρυ για την καθυστέρηση."]]]</div>
(track: 'garage-ambience', 'fadeout', 5)
{(live: 6s)[
(track: 'going-home', 'fadeout', 5)
(track: 'jazz-theme', 'loop', true)
(track: 'jazz-theme', 'fadein', 10)
(stop:)
]}
(track: 'going-home', 'play')
{(live: 6s)[
(show: ?clue)
(stop:)
]}
</tw-passagedata><tw-passagedata pid="11" name="απαντηση μπλουζας" tags="" position="438,1459" size="100,100"><div class="story">(if: $tshirt is true)[<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Ωχ κατάλαβα... Καλά όμως... Τι ώραια μπλούζα! 'Οποια φίλη σου την πήρε έχει τέλειο γούστο...]</div>
<div class="options">[["Χαχαχα, η καλύτερη μου φίλη"|νερο]]</div></tw-passagedata><tw-passagedata pid="12" name="νερο" tags="" position="827,1598" size="100,100"><div class="story"><span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Να σου βάλω ένα ποτήρι νερό να πιείς;</div>
<div class="optionsc">(link: "'Ναι, γιατι πρέπει να αρχίσω να πίνω περισσότερο νερό.'")[\
(track: 'drink-water', 'play')\
(set: $piss to true)\
(go-to: "Μιλάς με παρέα")\
]
(link: "''Εχω φέρει τεκίλα σοκολάτα να πιούμε. Την αγαπημένη σου!'")
[
(set: $piss to false)
(go-to:"Μιλάς με παρέα")
]</div>
(track: 'drink-water', 'volume', 0.2)</tw-passagedata><tw-passagedata pid="13" name="Μιλάς με παρέα" tags="" position="425,1675" size="100,100"><div class="story"><span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Γειά σας παιδιά! Πως είστε;</div>
<div class="optionsc">[[Μίλα με τον <span class="tsak">Τσακ</span>, τον αστυνομικό.|α1]]
[[Μίλα με την <span class="brina">Μπρίνα</span>, καλή σου φίλη σου από το γυμνάσιο.|α2]]
[[Μίλα με την <span class="thaleia">Θάλεια</span>, πρώην συγκάτοικο της 'Αλεξ.|α3]]</div></tw-passagedata><tw-passagedata pid="14" name="α1" tags="" position="346,1841" size="100,100"><div class="story"><span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Τι γίνεται Τσακ; Πως είσαι;
<span class="tsak-cur">(text-colour:#CCCA8D)[-Τσακ]:</span> Έλα ρε φίλε... 'Οπως τα ξέρεις. Λίγη ένταση αυτές τις μέρες και 'Οσο μπορώ προσπαθώ να χαλαρώσω. Εσύ;
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Στην ίδια μοίρα και εγώ... Καλά τι μελανιά είναι αυτή στο χέρι σου;
<span class="tsak-cur">(text-colour:#CCCA8D)[-Τσακ]:</span> Χαχαχα, είχαμε πάει για μπόουλινγκ με τον Επίδρομο την Πέμπτη. Τόσο άσχετοι, το μπόουλινγκ μας μάρανε. Ξέρεις προσπαθούσα να απόφύγω και τη δουλειά. Ήταν πολύ δύσκολο να συμμετέχεις στην υπόθεση της ίδιας σου την φίλης. Οι σφαίρες πήγανε για αναγνώριση ώστε να προσδιοριστεί ο τύπος του όπλου που χρησιμοποιήθηκε.</div>
<div class="options tsak">[["Ήταν μεγάλο σοκ για όλους μας"|δικια σου απαντηση]]</div>
(set: $a1 to true)
(set: $a2 to false)
(set: $a3 to false)</tw-passagedata><tw-passagedata pid="15" name="α2" tags="" position="494,1841" size="100,100"><div class="story"><span class="mp-cur">(text-colour:#A9A9A9)[-Μπρίνα]:</span> Που χάθηκες ρε!
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Η αλήθεια είναι τον τελευταίο καιρό 'Εχω απόμακρυνθεί. Ευτυχώς η δουλειά μου με κρατάει απασχολημένο.
<span class="mp-cur">(text-colour:#A9A9A9)[-Μπρίνα]:</span> Πρέπει να έχει πολύ ενδιαφέρον να δουλεύεις σε βιβλιοπωλείο.
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Τα βιβλία πάντα με ταξίδευαν και καλλιεργούσαν την φαντασία μου. Ξεχνούσα για λίγο την πραγματικότητα. Εσύ ακόμα ψάχνεις για δουλεία;
<span class="mp-cur">(text-colour:#A9A9A9)[-Μπρίνα]:</span> Τα 'Εχω παρατήσει είναι η αλήθεια... Δεν 'Εχω όρεξη για τίποτα. Το μόνο που ανυπομονούσα ήταν το ταξίδι. Και τόσο απότομα όλα καταστράφηκαν...</div>
<div class="options brina">[["'Ηταν μεγάλο σοκ για όλους μας"|δικια σου απαντηση]]</div>
(set: $a1 to false)
(set: $a2 to true)
(set: $a3 to false)</tw-passagedata><tw-passagedata pid="16" name="α3" tags="" position="646,1841" size="100,100"><div class="story"><span class="tha-cur">(text-colour:#75475A)[-Θάλεια]:</span> 'Οουεν! Χρόνια και λαζάνια!
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Παστίτσιο με ψάρια!
(text-colour:#75475A)[-Θάλεια] Εντάξει αηδία! Καλά που έφερες την τεκίλα γιατί έχω βαρεθεί λίγο με το απόψινό.
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Χαχαχα. Στην καλύτερη διάθεση σε βλέπω πάντως. Τα παιδιά φαίνεται ότι είναι πολύ πεσμένα με αυτό που έγινε.
<span class="tha-cur">(text-colour:#75475A)[-Θάλεια]:</span> Κοίτα μεταξύ μας τώρα... Τα ήθελε και τα έπαθε. Οι υπόλοιποι απλά υπερβάλουν.
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Τι λες ρε συ;
<span class="tha-cur">(text-colour:#75475A)[-Θάλεια]:</span> Συνέχεια έμπλεκε σε μπελάδες και κανείς δεν ήξερε που πήγαινε εκείνο το βράδυ...
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Διαφωνώ...</div>
<div class="options thaleia">[["...ήταν μεγάλο σοκ για όλους μας"|δικια σου απαντηση]]</div>
(set: $a1 to false)
(set: $a2 to false)
(set: $a3 to true)</tw-passagedata><tw-passagedata pid="17" name="δικια σου απαντηση" tags="" position="498,1965" size="100,100"><div class="story"><span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Η ζωή γίνεται πολλές φορές άδικη. Θα ζούμε πάντα με την ανάμνησή της και πιστεύω σήμερα είναι μια βραδιά που αντί να πενθούμε, θα πιούμε στην υγεία της και θα είναι μια ευχάριστη βραδιά μετά από πολλές δύσκολες.</div>
<div class="options">[["Στη μνήμη της Φλόγας!"]]</div></tw-passagedata><tw-passagedata pid="18" name=""Στη μνήμη της Φλόγας!"" tags="" position="469,2093" size="100,100">|clue)[<div class="story"><span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Γειά σου Επίδρομε! Πάνω στην ώρα ήρθες για το ποτό. Δεν έχασες τίποτα. Και πρόσεχε! Μπες με το δεξί! Δεν έχεις έρθει στο νέο σπίτι μετά την ριζική ανακαίνηση!
<span class="ep-cur"><span class="ep-cur"><span class="ep-cur">(text-colour:#557C62)[-Επίδρομος]:</span></span></span> Χαχαχα... βεβαίως! Βλέπω το έκανες τέλειο το μέρος! Δεν περίμενα κάτι λιγότερο από εσένα... Εντωμεταξύ απίστευτη κίνηση σε αυτή την περιοχή. Που να βρείς πάρκινγκ εδώ... Ευτυχώς έχεις χώρο εσύ.</div>
<div class="options">[["Καλά τι κατάρα είναι αυτή με το πάρκινγκ σήμερα..."]]]</div>
{(live: 11s)[
(show: ?clue)
(stop:)
]}
(track: 'glassescheer', 'volume', 0.5)
(track: 'glassescheer', 'play')
(live: 6s)[{
(stop:)\
(track: 'doorbell', 'play')
}]</tw-passagedata><tw-passagedata pid="19" name=""Καλά τι κατάρα είναι αυτή με το πάρκινγκ σήμερα..."" tags="" position="458,2253" size="100,100"><div class="story"><span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Έλπίζω να θυμήθηκες τα υλικά που σου ζήτησα. Σάλτσα ντομάτας Lanny λίγο δυόσμο και ταχίνι! Η Θάλεια με βοήθησε με την πίτα. Σε λίγο θα είναι έτοιμη. Θα γλύφετε τα δάχτυλά σας, είναι συνταγή του φίλου μου του Αργύρη αν τον θυμάστε. Από τότε που έχασε την θέση του ως περιφερειάρχης το έχει ρίξει στην μαγειρική και ομολογώ είναι απίθανος!
<span class="ep-cur">(text-colour:#557C62)[-Επίδρομος]:</span> Ναι, εννοείται τον θυμόμαστε! Να του δώσεις πολλά χαιρετίσματα! Πάμε στην κουζίνα λοιπόν να σε βοηθήσω και εγώ...</div>
<div class="options">[[Κάνε μια βόλτα στο σπίτι μέχρι να ετοιμαστεί το φαγητό]]</div></tw-passagedata><tw-passagedata pid="20" name="Κάνε μια βόλτα στο σπίτι μέχρι να ετοιμαστεί το φαγητό" tags="" position="539,2383" size="200,200">|clue)[<div class="story">(text-colour:#B1723A)[Τόσο μεγάλο σπίτι... Τόσο όμορφα ξύλινα διακοσμητικά... Θερμός φωτισμός, ωραία μουσική, μεγάλη βιβλιοθήκη. Θα μπορούσα να κλειστώ εδώ για μέρες.]</div>
<div class="optionsc">[['Ανοιξε το μπαούλο με τα κοσμήματα.| Μπαούλο]]
[['Ανοιξε το κίτρινο κουτί.| Κουτί]]]</div>
{(live: 3s)[
(show: ?clue)
(stop:)
]}
(track: 'jazz-theme', 'volume', 1)
(track: 'wood-walk', 'play')
(track: 'jazz-theme', 'fadeto', 3, 0.5)
(track: 'dog', 'volume', 0.4)
{(live: 6s)[
(stop:)
(track: 'dog', 'play')
]}</tw-passagedata><tw-passagedata pid="21" name=" Μπαούλο" tags="" position="415,2615" size="100,100"><div class="story">(text-colour:#B1723A)[Το δώρο που της είχα κάνει στην πρώτη της μεγάλη παράσταση. Χόρεψε μπαλέτο στο μέγαρο της πόλης. Χαίρομαι που το κράτησε.
Ωχ! Και αυτό πρέπει να είναι το βάζο που της έδωσε ο κ. Γιάννης Σίνας. Απίστευτος μουσικός...]</div>
<div class="options baulo">[[Κοίταξε το]]</div>
(track: 'jazz-theme', 'fadeout',2)
(track: 'musicbox', 'play')</tw-passagedata><tw-passagedata pid="22" name=" Κουτί" tags="" position="735,2625" size="100,100">{(live: 3s)[<div class="story">(text-colour:#B1723A)[Τι βλακεία είναι αυτή; Δώρο του Επίδρομου ήταν αυτό στα γενέθλια της το 2016. Απορώ πως κρατάει τέτοιες χαζομάρες...
<br>
Ωχ! Kαι αυτό πρέπει να είναι το βάζο που της έδωσε ο κ. Γιάννης Σίνας. Απίστευτος μουσικός.]</div>
<div class="options kouti">[[Κοίταξε το]]</div>
(stop:)
]}
(track: 'jazz-theme', 'fadeout',2)
(track: 'scarybox', 'play')</tw-passagedata><tw-passagedata pid="23" name="Κοίταξε το" tags="" position="535,2745" size="100,100">{(live: 1s)[(transition: "pulse")[<div class="story">(text-colour:#B1723A)[Ανάθεμα! Πρέπει να το λάτρευε αυτό.. Θα με σκοτώσει αν μάθει ότι το έσπασα. Τι να κάνω τώρα;]</div>
<br>
<div class="optionsc">[[Κρύψ'το στο συρτάρι]]<br>
[[Βαλ'το σπασμένο πίσω στην θέση του]]</div>]
(stop:)
]}
(track: 'broken', 'play')
(track: 'jazz-theme', 'fadein',4)</tw-passagedata><tw-passagedata pid="24" name="Κρύψ'το στο συρτάρι" tags="" position="441,2897" size="100,100"><div class="story">(text-colour:#B1723A)[Ας το βάλω εδώ τώρα και ελπίζω να μην το δει άμεσα...
Ωχ τι είναι αυτά; Εισιτήρια για Μπαρμπάντος; Είναι για την 'Αλεξ και την Φλόγα.. Φαίνεται πως εκδόθηκαν τον προηγούμενο μήνα...]
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Παιδιά το φαγητό είναι έτοιμο! Ελάτε.</div>
<div class="options krypsto">[[Πήγαινε στο καθιστικό]]</div>
(set: $phone to true)
(track: 'syrtari', 'play')</tw-passagedata><tw-passagedata pid="25" name="Βαλ'το σπασμένο πίσω στην θέση του" tags="" position="645,2894" size="100,100"><div class="story">(set: $phone to false)<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Παιδιά το φαγητό είναι έτοιμο! Ελάτε.</div>
<div class="options valtopiso">[[Πήγαινε στο καθιστικό]]</div></tw-passagedata><tw-passagedata pid="26" name="Πήγαινε στο καθιστικό" tags="" position="534,3029" size="100,100">|clue)[<div class="story"><span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Επίδρομε όπως έρχεσαι πιάσε μία και το κινητό μου.
<span class="ep-cur"><span class="ep-cur"><span class="ep-cur">(text-colour:#557C62)[-Επίδρομος]:</span></span></span> Δες και τι άλλο βρήκα! Το αρκουδάκι σου! Ταιριαστό με της Φλόγας.
(text-colour:#B1723A)[Καλά αυτό πως βρέθηκε εδώ; Στο γκαράζ δεν ήταν;]
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Χαχαχα... Ναι, αλλά ας καθίσουμε να φάμε τώρα πρωτού κρυώσουν.</div>
<div class="options">[[Κάθισε]]]</div>
{(live: 2s)[
(show: ?clue)
(stop:)
]}
(track: 'wood-walk', 'play')
</tw-passagedata><tw-passagedata pid="27" name=" πνίγεται" tags="" position="425,3306" size="100,100">|clue)[<div class="story"><span class="tsak-cur">(text-colour:#CCCA8D)[-Τσακ]:</span> Δεν μπορώ να αναπνεύσω!
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> ΣΚ@ΤΑ! 'Εβαλα αμύγδαλα στην πίτα!
<span class="tha-cur">(text-colour:#75475A)[-Θάλεια]:</span> Μα ήξερες ότι είναι αλλεργικός στα αμύγδαλα, πως το ξέχασες, θα τον σκοτώσεις τον άνθρωπο!
<span class="tsak-cur">(text-colour:#CCCA8D)[-Τσακ]:</span> 'Εχω ένεση μαζί μου που με ηρεμεί από την αλλεργία! Κοίταξε στην τσάντα μου γρήγορα!</div>
<div class="options">[[Πάρε και κάνε την ένεση]]]</div>
{(live: 2s)[
(show: ?clue)
(stop:)
]}
(track: 'cough', 'volume', 0.5)
(track: 'cough', 'loop', true)
(track: 'cough', 'fadein', 3)
(live: 1s)[{
(stop:)\
(track: 'piata', 'play')
}]
(track: 'jazz-theme', 'fadeto', 5, 0.8)
(track: 'rain-thunder', 'loop', true)
(track: 'rain-thunder', 'fadein', 3)</tw-passagedata><tw-passagedata pid="28" name=" χτυπαει κινητό σου / μπαταρια" tags="" position="556,3158" size="100,100">|clue)[<div class="story"><span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Ναι;- Πω έκλεισε το κινητό μου από μπαταρία. Έχεις κανά φορτιστή πρόχειρο;
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Ναι. Τσέκαρε στην κρεβατοκάμαρά μου.</div>
<div class="options">[[Πάνε στην κρεβατοκάμαρα]]]</div>
{(live: 3s)[
(show: ?clue)
(stop:)
]}
(track: 'ringtone', 'play')
(track: 'ringtone', 'volume', 0.6)
(live: 3s)[{
(stop:)\
(track: 'ringtone', 'stop')
(track: 'died', 'play')
}]
(track: 'rain-thunder', 'fadeout', 3)</tw-passagedata><tw-passagedata pid="29" name="Πάρε και κάνε την ένεση" tags="" position="557,3460" size="100,100"><div class="story"><span class="tsak-cur">(text-colour:#CCCA8D)[-Τσακ]:</span> Σε ευχαριστώ. Θα με βγάλει λίγο kn0ck oυt επειδή είναι δυνατή δόση οπότε θα ξαπλώσω μέσα μέχρι να συνέλθω.
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Ρεεε συγνώμη αλήθεια δεν ξέρω πως το ξέχασα. Ελπίζω να συνέλθεις άμεσα. Πες μου για ότι χρειαστείς.</div>
<div class="options">[[Συνέχεια| επιδρομος ταξιδι]]</div>
(track: 'jazz-theme', 'fadeto', 5, 1)
(track: 'cough', 'fadeout', 4)
</tw-passagedata><tw-passagedata pid="30" name=" επιδρομος ταξιδι" tags="" position="672,3632" size="100,100"><div class="story"><span class="mp-cur">(text-colour:#A9A9A9)[-Μπρίνα]:</span> Πριν την ώρα μας θα πάμε με τέτοια τρομάρα. Μαζευτήκαμε για να χαλαρώσουμε και η καρδιά μου πήγε στην κούλουρη.
<span class="ep-cur"><span class="ep-cur"><span class="ep-cur">(text-colour:#557C62)[-Επίδρομος]:</span></span></span> Εντάξει όλα καλά, ας χαλαρώσουμε.
<span class="tha-cur">(text-colour:#75475A)[-Θάλεια]:</span> Πως ήταν το ταξίδι σου Επίδρομε, πρόσφατα δε γύρισες στην πόλη;
<span class="ep-cur"><span class="ep-cur"><span class="ep-cur">(text-colour:#557C62)[-Επίδρομος]:</span></span></span> Ναι! Ευχαριστώ που ρώτησες. Γύρισα πριν 2 μέρες. 'Ελειπα για δουλειές τόσες βδομάδες και αναγκάστηκα να πάρω και λεωφορείο αφού δεν έβρισκα αεροπορικά τελευταία στιγμή.</div>
(if: $a1 is true)[<div class="options">[[Συνέχεια -> υποψιαζομαι]]</div>]\
(else:)[<div class="options">[[Συνέχεια -> αλεξ κουζίνα]]</div>]
</tw-passagedata><tw-passagedata pid="31" name=" υποψιαζομαι" tags="" position="862,3781" size="100,100"><div class="story">(text-colour:#B1723A)[Μα νωρίτερα ο Τσακ μου είπε ότι...]</div>
<div class="options">[[Σκέψου Φωναχτά]]
[[Αγνόησε το -> αλεξ κουζίνα]]</div></tw-passagedata><tw-passagedata pid="32" name=" αλεξ κουζίνα" tags="" position="2817,1989" size="200,200"><div class="story"><span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Λοιπόν εγώ θα μαζέψω κανά πιατάκι να είμαστε πιο άνετοι.
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> 'Ερχομαι να σε βοηθήσω.</div>
(if: $a1 is true or $a3 is true)[<div class="options">[[Πάρε τα πιάτα στην κουζίνα-> μιλησα με α1 ορ α3]]</div>]
(if: $a2 is true)[<div class="options">[[Πάρε τα πιάτα στην κουζίνα->μιλησα με α2]]</div>]</tw-passagedata><tw-passagedata pid="33" name="Σκέψου Φωναχτά" tags="" position="981,3870" size="100,100"><div class="story"><span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Καλά ο Τσακ μου έλεγε την Τετάρτη παίζατε μπόουλινγκ...
<span class="ep-cur"><span class="ep-cur"><span class="ep-cur">(text-colour:#557C62)[-Επίδρομος]:</span></span></span> Ωχ ναι μπερδεύτηκα... Είχα γυρίσει ήδη τότε. Τα 'Εχω χάσει εντελώς με το jetlag.
---
(text-colour:#B1723A)[Ποιο jetlag θα με τρελάνεις; Με λεωφορείο και 4 ώρες ταξίδι;]</div>
<div class="options">[[Συνέχεια -> αλεξ κουζίνα]]</div></tw-passagedata><tw-passagedata pid="34" name=" μιλησα με α1 ορ α3" tags="" position="2724,2329" size="100,100"><div class="story"><span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Σε βλέπω πολύ ντάουν ρε 'Αλεξ. Σε βασανίζει όλο αυτό που συνέβη ε…
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Πως να μην με βασανίζει… Δεν πρόλαβα ποτέ να της πω όσα ένιωθα...
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Ούτε εγώ μπορώ να συνειδητοποιήσω τι έχει γίνει.
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Γιατί ρε γαμώτο; Δεν αξίζει σε κανέναν αυτό. Να την μαχαιρώσουν ζωντανή δηλαδή; 'Οσο σκέφτομαι τον πόνο που θα πέρασε με έναν τόσο απάνθρωπο τρόπο η γλυκιά μου. Μακάρι να μην είχε κανονίσει ποτέ αυτό το ραντεβού εκείνο το βράδυ...
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Ποιό ραντεβού?
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Το ραντεβού με τον ψυχολόγο της. Το γραφείο του ήταν λίγο πιο έξω από την πόλη. 'Ετυχε και εκείνο το βράδυ να είναι κλειστός ο κεντρικός δρόμος και πήγε από τον προαστιακό...</div>
(if: $piss is true)[<div class="options">[[Συνέχεια -> μπανιο]]</div> ]
(if: $piss is false)[ <div class="options">[[Συνέχεια -> καθιστικό]]</div> ]
(track: 'sink', 'loop', true)
(track: 'sink', 'play')</tw-passagedata><tw-passagedata pid="35" name="μιλησα με α2" tags="" position="3061,2327" size="100,100"><div class="story"><span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Σε βλέπω πολύ ντάουν. Ξέρω ότι σε βασανίζει το ότι έγινε.
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Δεν πρόλαβα ποτέ να της πω όσα ένιωθα...
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Ούτε εγώ μπορώ να συνειδητοποιήσω τι έχει γίνει.
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Πραγματικά ήταν υπέροχος άνθρωπος.
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Φαντάζομαι πόσο θα περίμενες κι εκείνο το ταξίδι...
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Ποιό ταξίδι;
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Και οι δυό σας δηλαδή... θα περνούσατε υπέροχα...
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Γλυκιέ μου για Ποιό ταξίδι μιλάς;</div>
<div class="options">[[Πες για τα εισιτήρια]]
[[Αγνόησε το]]</div>
(track: 'sink', 'loop', true)
(track: 'sink', 'play')</tw-passagedata><tw-passagedata pid="36" name="Αγνόησε το" tags="" position="2889,2483" size="100,100"><div class="story"><span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Είχα την εντύπωση οτι θα κάνατε κάποιο ταξίδι, γράψε λάθος.
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Δεν πειράζει γλυκιέ μου. Είναι λογικό, όλοι είμαστε κάπως αυτόν τον καιρό...</div>
(if: $piss is true)[<div class="options"> [[Συνέχεια -> μπανιο]] </div>]
(if: $piss is false)[ <div class="options">[[Συνέχεια -> καθιστικό]]</div>]</tw-passagedata><tw-passagedata pid="37" name="Πες για τα εισιτήρια" tags="" position="3236,2496" size="100,100"><div class="story"><span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Είδα κάτι εισιτήρια προς Μπαρμπάντος στο κομοδίνο σου όταν έβαλα το κινητό μου να φορτίσει με το όνομα της...
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> Ααα αυτό το ταξίδι... Ναι..
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Το ξέχασες?
<span class="al-cur">(text-colour:#A25B86)[-'Αλεξ]:</span> 'Οχι βρε απλά μου είχε ζητήσει να τα εκτυπώσω εγώ... Το δεύτερο εισιτήριο δεν ήταν για εμένα αλλά... ε... δώρο για την αδερφή της.</div>
(if: $piss is true)[<div class="options">[[Συνέχεια -> μπανιο]]</div> ]
(if: $piss is false)[ <div class="options">[[Συνέχεια -> καθιστικό]] </div>]</tw-passagedata><tw-passagedata pid="38" name=" μπανιο" tags="" position="3345,2813" size="100,100"><div class="story">(text-colour:#B1723A)[Χμ... Αρκετά περίεργο αυτό...]</div>
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Εε πάω μία στο μπάνιο και επιστρέφω.</div>
(if: $phone is true)[<div class="options"> [[Πάνε στο μπάνιο (και μην ξεχάσεις να πλύνεις τα χέρια σου)-> μπανιο με κινητο]]</div>]
(if: $phone is false)[<div class="options"> [[Πάνε στο μπάνιο (τα χεράκια να τα πλύνουμε με σαπούνι αυτή την φορά.. ε!)-> μπανιο χωρις κινητο]]</div> ]
(track: 'mystery2', 'fadeout', 4)</tw-passagedata><tw-passagedata pid="39" name=" καθιστικό" tags="" position="2633,2811" size="100,100"><div class="story">(text-colour:#B1723A)[ Καλά, αυτό είναι πολύ περίεργο και τίποτα δεν κολλάει μεταξύ του...]</div>
(if: $a1 is true)[<div class="options"> [[Συνέχεια -> τσακ vs αλεξ]] </div>]
(if: $a3 is true)[<div class="options"> [[Συνέχεια -> θαλεια vs αλεξ]] </div>]
(if: $a2 is true)[<div class="options">[[Συνέχεια -> εσυ δολοφονος2]] </div>]
(track: 'mystery4', 'volume', 0.6)
(track: 'jazz-theme', 'fadeout', 10)
(track: 'mystery4', 'loop', true)
(track: 'mystery4', 'fadein', 7)
(track: 'mystery2', 'fadeout', 4)
(track: 'sink', 'fadeout', 3)</tw-passagedata><tw-passagedata pid="40" name=" μπανιο με κινητο" tags="" position="3423,3008" size="100,100">|clue)[<div class="story">Α τέλεια έπεσε και το ρεύμα τώρα...</div>
<div class="options">[[Βγάλε το κινητό σου]]</div>]
<div id="black-out"></div>
{(live: 8s)[
(show: ?clue)
(stop:)
]}
(track: 'jazz-theme', 'fadeto', 5, 0)
(track: 'banio-off', 'play')
(track: 'mystery1', 'loop', true)
(live: 7s)[{
(stop:)\
(track: 'mystery1', 'fadein', 3)
}]
(track: 'sink', 'fadeout', 3)
(track: 'rain-thunder', 'fadeout', 3)</tw-passagedata><tw-passagedata pid="41" name=" μπανιο χωρις κινητο" tags="" position="3806,2969" size="100,100">|clue)[<div class="story">Α τέλεια έπεσε το ρεύμα τώρα. Κάτσε να βγάλω το κινητ- Φορτίζει στην κρεβατοκάμαρα ανάθεμα!</div>
<div class="options">[[Συνέχεια|μπάνιο χωρίς συνέχεια]]</div>]
{(live: 8s)[
(show: ?clue)
(stop:)
]}
<div id="black-out"></div>
(track: 'mystery1', 'loop', true)
(track: 'jazz-theme', 'fadeto', 5, 0)
(live: 7s)[{
(stop:)\
(track: 'mystery1', 'fadein', 3)
}]
(track: 'banio-off', 'play')
(track: 'sink', 'fadeout', 3)
(track: 'rain-thunder', 'fadeout', 3)</tw-passagedata><tw-passagedata pid="42" name="μπάνιο χωρίς συνέχεια" tags="" position="3798,3143" size="100,100">(text-colour:#B1723A)[<div class="story">//Ακούς την πόρτα του μπάνιου να ανοίγει πολύ αργά.//
Κάτσε μπήκε κάποιος στο μπάνιο τώρα; Κάποιος είναι πίσω μου!</div>]
|clue)[
<div class="options">[[Επίθεση στα τυφλά πίσω σου]]
[[Τρέξε από την πόρτα | Τρέξε προς την πόρτα]]</div>
]
{(live: 4s)[
(show: ?clue)
(stop:)
]}
(track: 'myheart', 'loop')
(track: 'door-open-creak', 'play')
(live: 1s)[{
(stop:)\
(track: 'myheart', 'play')
}]
<div id="black-out"></div></tw-passagedata><tw-passagedata pid="43" name="Επίθεση στα τυφλά πίσω σου" tags="" position="3958,3381" size="200,100">|clue)[<div class="story"><span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Τσακ! Μόλις μου επιτέθηκε κάποιος στο μπάνιο, πρέπει να βρούμε τον γενικό διακόπτη ρεύματος.</div>]
|clue2)[<div class="story">
<span class="tsak-cur">(text-colour:#CCCA8D)[-Τσακ]:</span> Τώρα θα δούμε ποιός κρύβεται πίσω από όλο αυτό...
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> ΦΛΟΓΑ; Τι- ΤΙ ΚΑΝΕΙΣ ΕΔΩ;</div>
<div class="options">[[Συνέχεια|επομενο επισοδειο]]</div>]
(playlist: 'hitnrun', 'play')
<div id="black-out"></div>
{(live: 5s)[
(show: ?clue)
(stop:)
]}
(live: 8s)[{
(stop:)\
(playlist: 'run-power', 'play')
<div id="white-out"></div>
}]
{(live: 11s)[
(show: ?clue2)
(stop:)
]}
(live: 13s)[{
(stop:)\
(track: 'atakaagxous', 'play')
}]
(track: 'myheart', 'fadeout',3)
</tw-passagedata><tw-passagedata pid="44" name="Περίμενε μέχρι να έρθει το ρεύμα για να βγείς" tags="" position="3235,3153" size="100,100">|clue)[<img class="mes-img" src="images/mes1.png">
<div class="story">(text-colour:#B1723A)[Tώρα είτε είναι ηλίθια και το έστειλε σε λάθος αριθμό ή θελει να με παγιδεύσει και να με μπλέξει σε αυτό...]</div>
<div class="options">[[Απάντησε]]</div>]
{(live: 4s)[
(show: ?clue)
(track: 'sms', 'play')
(stop:)
]}
(track: 'bathdrip', 'volume', 0.1)
(track: 'bathdrip', 'play')
<div id="black-out"></div></tw-passagedata><tw-passagedata pid="45" name=" Τρέξε προς την πόρτα" tags="" position="3558,3339" size="200,100">|clue3)[<div class="story">(text-colour:#B1723A)[Δέχεσαι ένα χτύπημα στο κεφάλι με το που βγαίνεις από το μπάνιο, πέφτεις στο πάτωμα λιπόθυμος.
Ξυπνάς δεμένος στην καρεκλα μαζι με Θάλεια, 'Αλεξ, Μπρίνα. Νιώθεις τα χέρια σου να έχουν μουδιάσει.]
<span class="oo-cur">(text-colour:#507996)[-'Οουεν]:</span> Τι συνέβη; Γιατί μας έδεσες παλιοκάθαρμα!</div>]
|clue)[<div class="story"><span class="ep-cur"><span class="ep-cur"><span class="ep-cur">(text-colour:#557C62)[-Επίδρομος]:</span></span></span> Μην μου αγχώνεστε. Είναι όλα υπό έλεγχο. Πρέπει απλά να το δεχτείτε. Θα πεθάνετε. Είστε αδύναμοι. Δεν υπάρχει λόγος να βρίσκεστε εδώ. Γιατί; Γιατί το λέω εγώ. Και θέλετε να δείτε και κάτι πιο ακραίο;
<span class="tha-cur">(text-colour:#75475A)[-Θάλεια]:</span> Χέσ€ μας ρε Επίδρομε με τις βλακείες σου και ξέδεσε μας ΤΩΡΑ!</div>
<div class="options">[[Συνέχεια|πριν το τέλος]]</div>]
(track: 'hitsu', 'play')
(track: 'myheart', 'fadeout',6)
{(live: 3s)[
(show: ?clue3)
(stop:)
]}
{(live: 10s)[
(show: ?clue)
(stop:)
]}
(live: 10s)[{
(stop:)\
(track: 'satanic', 'fadein',5)
}]
<div id="black-out"></div>
</tw-passagedata><tw-passagedata pid="46" name="Κάνε επίθεση στο Επίδρομο" tags="" position="3121,3700" size="200,100">|clue)[<div class="story"><span class="tsak-cur">(text-colour:#CCCA8D)[-Τσακ]:</span> 'Οουεν! Πρόσεχε!</div>]
|clue1)[<div class="story"><span class="tsak-cur">(text-colour:#CCCA8D)[-Τσακ]:</span> Kάνε στην άκρη!
(text-colour:#B1723A)[Η σφαίρα του Τσακ διαπερνάει το κρανίο του Επίδρομου.]</div>
<div class="options">[[Συνέχεια| Πρίν το τέλος]]</div>]
(track: 'fight', 'play')
{(live: 4s)[
(show: ?clue)
(stop:)
]}
{(live: 8s)[
(show: ?clue1)
(stop:)
]}
(track: 'mystery1', 'fadeout', 2)
(track: 'myheart', 'fadeout',3)</tw-passagedata><tw-passagedata pid="47" name="Φύγετε από την πόρτα" tags="" position="3401,3717" size="200,100"><div class="story">(text-colour:#B1723A)[Ο Τσακ και εσύ τρέχετε από την πίσω πόρτα και κατεβαίνετε τις σκάλες. Ο Επίδρομος από πίσω κάνει την προσπάθεια να πυροβολήσει αλλά αστοχεί αξιοθρήνητα.</div>]
|clue)[<div class="story">(text-colour:#B1723A)[Πρωτού βγείτε από την κεντρική έξοδο νιώθεις τον Τσακ να σου πιάνει τον ώμο και να σε σταματάει.]