-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1228 lines (685 loc) · 346 KB
/
index.html
File metadata and controls
1228 lines (685 loc) · 346 KB
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>
<meta charset="utf-8">
<title>index</title>
<style title="Twine CSS">@-webkit-keyframes appear{0%{opacity:0}to{opacity:1}}@keyframes appear{0%{opacity:0}to{opacity:1}}@-webkit-keyframes fade-in-out{0%,to{opacity:0}50%{opacity:1}}@keyframes fade-in-out{0%,to{opacity:0}50%{opacity:1}}@-webkit-keyframes rumble{50%{-webkit-transform:translateY(-0.2em);transform:translateY(-0.2em)}}@keyframes rumble{50%{-webkit-transform:translateY(-0.2em);transform:translateY(-0.2em)}}@-webkit-keyframes shudder{50%{-webkit-transform:translateX(0.2em);transform:translateX(0.2em)}}@keyframes shudder{50%{-webkit-transform:translateX(0.2em);transform:translateX(0.2em)}}@-webkit-keyframes box-flash{0%{background-color:white;color:white}}@keyframes box-flash{0%{background-color:white;color:white}}@-webkit-keyframes pulse{0%{-webkit-transform:scale(0, 0);transform:scale(0, 0)}20%{-webkit-transform:scale(1.2, 1.2);transform:scale(1.2, 1.2)}40%{-webkit-transform:scale(0.9, 0.9);transform:scale(0.9, 0.9)}60%{-webkit-transform:scale(1.05, 1.05);transform:scale(1.05, 1.05)}80%{-webkit-transform:scale(0.925, 0.925);transform:scale(0.925, 0.925)}to{-webkit-transform:scale(1, 1);transform:scale(1, 1)}}@keyframes pulse{0%{-webkit-transform:scale(0, 0);transform:scale(0, 0)}20%{-webkit-transform:scale(1.2, 1.2);transform:scale(1.2, 1.2)}40%{-webkit-transform:scale(0.9, 0.9);transform:scale(0.9, 0.9)}60%{-webkit-transform:scale(1.05, 1.05);transform:scale(1.05, 1.05)}80%{-webkit-transform:scale(0.925, 0.925);transform:scale(0.925, 0.925)}to{-webkit-transform:scale(1, 1);transform:scale(1, 1)}}@-webkit-keyframes shudder-in{0%, to{-webkit-transform:translateX(0em);transform:translateX(0em)}5%, 25%, 45%{-webkit-transform:translateX(-1em);transform:translateX(-1em)}15%, 35%, 55%{-webkit-transform:translateX(1em);transform:translateX(1em)}65%{-webkit-transform:translateX(-0.6em);transform:translateX(-0.6em)}75%{-webkit-transform:translateX(0.6em);transform:translateX(0.6em)}85%{-webkit-transform:translateX(-0.2em);transform:translateX(-0.2em)}95%{-webkit-transform:translateX(0.2em);transform:translateX(0.2em)}}@keyframes shudder-in{0%, to{-webkit-transform:translateX(0em);transform:translateX(0em)}5%, 25%, 45%{-webkit-transform:translateX(-1em);transform:translateX(-1em)}15%, 35%, 55%{-webkit-transform:translateX(1em);transform:translateX(1em)}65%{-webkit-transform:translateX(-0.6em);transform:translateX(-0.6em)}75%{-webkit-transform:translateX(0.6em);transform:translateX(0.6em)}85%{-webkit-transform:translateX(-0.2em);transform:translateX(-0.2em)}95%{-webkit-transform:translateX(0.2em);transform:translateX(0.2em)}}@-webkit-keyframes rumble-in{0%, to{-webkit-transform:translateY(0em);transform:translateY(0em)}5%, 25%, 45%{-webkit-transform:translateY(-1em);transform:translateY(-1em)}15%, 35%, 55%{-webkit-transform:translateY(1em);transform:translateY(1em)}65%{-webkit-transform:translateY(-0.6em);transform:translateY(-0.6em)}75%{-webkit-transform:translateY(0.6em);transform:translateY(0.6em)}85%{-webkit-transform:translateY(-0.2em);transform:translateY(-0.2em)}95%{-webkit-transform:translateY(0.2em);transform:translateY(0.2em)}}@keyframes rumble-in{0%, to{-webkit-transform:translateY(0em);transform:translateY(0em)}5%, 25%, 45%{-webkit-transform:translateY(-1em);transform:translateY(-1em)}15%, 35%, 55%{-webkit-transform:translateY(1em);transform:translateY(1em)}65%{-webkit-transform:translateY(-0.6em);transform:translateY(-0.6em)}75%{-webkit-transform:translateY(0.6em);transform:translateY(0.6em)}85%{-webkit-transform:translateY(-0.2em);transform:translateY(-0.2em)}95%{-webkit-transform:translateY(0.2em);transform:translateY(0.2em)}}@-webkit-keyframes slide-right{0%{-webkit-transform:translateX(-100vw);transform:translateX(-100vw)}}@keyframes slide-right{0%{-webkit-transform:translateX(-100vw);transform:translateX(-100vw)}}@-webkit-keyframes slide-left{0%{-webkit-transform:translateX(100vw);transform:translateX(100vw)}}@keyframes slide-left{0%{-webkit-transform:translateX(100vw);transform:translateX(100vw)}}@-webkit-keyframes slide-up{0%{-webkit-transform:translateY(100vh);transform:translateY(100vh)}}@keyframes slide-up{0%{-webkit-transform:translateY(100vh);transform:translateY(100vh)}}@-webkit-keyframes slide-down{0%{-webkit-transform:translateY(-100vh);transform:translateY(-100vh)}}@keyframes slide-down{0%{-webkit-transform:translateY(-100vh);transform:translateY(-100vh)}}@-webkit-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 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}}.debug-mode tw-expression[type=hookref]{background-color:rgba(115,123,140,0.15)}.debug-mode tw-expression[type=hookref]::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"?" attr(name)}.debug-mode tw-expression[type=variable]{background-color:rgba(140,128,115,0.15)}.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]{background-color:rgba(140,128,115,0.15)}.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[type=macro]:nth-of-type(4n+0){background-color:rgba(136,153,102,0.15)}.debug-mode tw-expression[type=macro]:nth-of-type(2n+1){background-color:rgba(102,153,102,0.15)}.debug-mode tw-expression[type=macro]:nth-of-type(4n+2){background-color:rgba(102,153,136,0.15)}.debug-mode tw-expression[type=macro][name="for"],.debug-mode tw-expression[type=macro][name="loop"],.debug-mode tw-expression[type=macro][name="print"],.debug-mode tw-expression[type=macro][name="enchant"],.debug-mode tw-expression[type=macro][name="display"]{background-color:rgba(0,170,255,0.1) !important}.debug-mode tw-expression[type=macro][name="if"],.debug-mode tw-expression[type=macro][name="if"]+tw-hook:not([name]),.debug-mode tw-expression[type=macro][name="unless"],.debug-mode tw-expression[type=macro][name="unless"]+tw-hook:not([name]),.debug-mode tw-expression[type=macro][name="elseif"],.debug-mode tw-expression[type=macro][name="elseif"]+tw-hook:not([name]),.debug-mode tw-expression[type=macro][name="else"],.debug-mode tw-expression[type=macro][name="else"]+tw-hook:not([name]){background-color:rgba(0,255,0,0.1) !important}.debug-mode tw-expression[type=macro][name="hidden"],.debug-mode tw-expression[type=macro].false{background-color:rgba(255,0,0,0.2) !important}.debug-mode tw-expression[type=macro][name="hidden"]+tw-hook:not([name]),.debug-mode tw-expression[type=macro].false+tw-hook:not([name]){display:none}.debug-mode tw-expression[type=macro][name="either"],.debug-mode tw-expression[type=macro][name="a"],.debug-mode tw-expression[type=macro][name="dm"],.debug-mode tw-expression[type=macro][name="ds"],.debug-mode tw-expression[type=macro][name="array"],.debug-mode tw-expression[type=macro][name^="sub"],.debug-mode tw-expression[type=macro][name="altered"],.debug-mode tw-expression[type=macro][name="count"],.debug-mode tw-expression[type=macro][name^="data"],.debug-mode tw-expression[type=macro][name="find"],.debug-mode tw-expression[type=macro][name$="ed"],.debug-mode tw-expression[type=macro][name$="-pass"],.debug-mode tw-expression[type=macro][name="range"],.debug-mode tw-expression[type=macro][name^="num"],.debug-mode tw-expression[type=macro][name^="str"],.debug-mode tw-expression[type=macro][name="text"],.debug-mode tw-expression[type=macro][name^="lower"],.debug-mode tw-expression[type=macro][name^="upper"],.debug-mode tw-expression[type=macro][name="words"],.debug-mode tw-expression[type=macro][name="ceil"],.debug-mode tw-expression[type=macro][name="floor"],.debug-mode tw-expression[type=macro][name="random"],.debug-mode tw-expression[type=macro][name="abs"],.debug-mode tw-expression[type=macro][name="cos"],.debug-mode tw-expression[type=macro][name="exp"],.debug-mode tw-expression[type=macro][name^="log"],.debug-mode tw-expression[type=macro][name="max"],.debug-mode tw-expression[type=macro][name="min"],.debug-mode tw-expression[type=macro][name="pow"],.debug-mode tw-expression[type=macro][name="sign"],.debug-mode tw-expression[type=macro][name="sin"],.debug-mode tw-expression[type=macro][name="sqrt"],.debug-mode tw-expression[type=macro][name="tan"],.debug-mode tw-expression[type=macro][name="round"],.debug-mode tw-expression[type=macro][name^="hsl"],.debug-mode tw-expression[type=macro][name^="rgb"]{background-color:rgba(255,255,0,0.2) !important}.debug-mode tw-expression[type=macro][name$="-game"],.debug-mode tw-expression[type=macro][name="move"],.debug-mode tw-expression[type=macro][name="put"],.debug-mode tw-expression[type=macro][name="set"]{background-color:rgba(255,128,0,0.2) !important}.debug-mode tw-expression[type=macro][name^="link"],.debug-mode tw-expression[type=macro][name$="-link"],.debug-mode tw-expression[type=macro][name="dropdown"],.debug-mode tw-expression[type=macro][name^="click"],.debug-mode tw-expression[type=macro][name="goto"],.debug-mode tw-expression[type=macro][name="undo"],.debug-mode tw-expression[type=macro][name^="mouseo"]{background-color:rgba(32,191,223,0.2) !important}.debug-mode tw-expression[type=macro][name^="replace"],.debug-mode tw-expression[type=macro][name^="prepend"],.debug-mode tw-expression[type=macro][name^="append"],.debug-mode tw-expression[type=macro][name="show"],.debug-mode tw-expression[type=macro][name^="remove"]{background-color:rgba(223,96,32,0.2) !important}.debug-mode tw-expression[type=macro][name="event"],.debug-mode tw-expression[type=macro][name="live"]{background-color:rgba(32,32,223,0.2) !important}.debug-mode tw-expression[type=macro][name="align"],.debug-mode tw-expression[type=macro][name^="colo"],.debug-mode tw-expression[type=macro][name="background"],.debug-mode tw-expression[type=macro][name="css"],.debug-mode tw-expression[type=macro][name="font"],.debug-mode tw-expression[type=macro][name="hook"],.debug-mode tw-expression[type=macro][name$="-style"],.debug-mode tw-expression[type=macro][name^="text-"],.debug-mode tw-expression[type=macro][name^="transition"],.debug-mode tw-expression[type=macro][name^="t8n"],.debug-mode tw-expression[type=macro][name="live"]{background-color:rgba(255,191,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;-webkit-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(title) '"'}@keyframes enchantment{0%,to{border-color:#ffb366}50%{border-color:#6fc}}@-webkit-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 1em 1em 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:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-direction:normal;-webkit-box-orient:vertical;-webkit-flex-direction:column;-moz-flex-direction:column;-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 table{border-spacing:0px}tw-debugger .variable-row{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-direction:normal;-webkit-box-orient:horizontal;-webkit-flex-direction:row;-moz-flex-direction:row;-ms-flex-direction:row;flex-direction:row;flex-shrink:0}tw-debugger .variable-row:nth-child(2n){background:#EEE}tw-debugger .variable-name{display:inline-block;width:50%}tw-debugger .temporary-variable-scope{opacity:0.8;font-size:0.75em}tw-debugger .temporary-variable-scope::before{content:" in "}tw-debugger .global::before{content:"$"}tw-debugger .temporary::before{content:"_"}tw-debugger .variable-path{opacity:0.4}tw-debugger .variable-value{display:inline-block;width:50%}tw-debugger .error-row{background-color:rgba(230,101,204,0.3)}tw-debugger .error-row:nth-child(2n){background-color:rgba(237,145,219,0.3)}tw-debugger .error-row *{padding:0.25em 0.5em}tw-debugger .error-row .error-message{cursor:help}tw-debugger .panel-source{font-family:monospace;overflow-x:scroll;white-space:pre}tw-debugger .tabs{padding-bottom:0.5em}tw-debugger .tab{border-radius:0px 0px 0.5em 0.5em;border-top:none}tw-dialog{z-index:999997;position:fixed;left:auto;right:auto;bottom:auto;top:auto;border:#fff solid 2px;padding:2em;color:#fff;background-color:#000;display:block;max-width:50vw;max-height:75vh;overflow:hidden}tw-dialog input[type=text]{font-size:inherit;width:100%}tw-backdrop{z-index:999996;position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.8);display:flex;align-items:center;justify-content:center}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 tw-enchantment[style^="color"] tw-link:not(:hover),tw-passage tw-enchantment[style*=" color"] tw-link:not(:hover),tw-passage tw-enchantment[style^="color"] .enchantment-link:not(:hover),tw-passage tw-enchantment[style*=" color"] .enchantment-link:not(:hover){color:inherit}tw-link:hover,.enchantment-link:hover{color:#00bfff}tw-link:active,.enchantment-link:active{color:#DD4B39}.visited{color:#6941e1}tw-passage tw-enchantment[style^="color"] .visited:not(:hover),tw-passage tw-enchantment[style*=" color"] .visited:not(:hover){color:inherit}.visited:hover{color:#E3E}tw-broken-link{color:#993333;border-bottom:2px solid #993333;cursor:not-allowed}tw-passage tw-enchantment[style^="color"] tw-broken-link:not(:hover),tw-passage tw-enchantment[style*=" color"] tw-broken-link:not(:hover){color:inherit}.enchantment-mouseover{border-bottom:1px dashed #666}.enchantment-mouseout{border:rgba(64,149,191,0.25) 1px solid}.enchantment-mouseout:hover{background-color:rgba(64,149,191,0.25);border:transparent 1px solid;border-radius:0.2em}.enchantment-clickblock{box-shadow:inset 0 0 0 0.5vmax;display:block;color:rgba(65,105,225,0.5);transition:color 0.2s ease-in-out}.enchantment-clickblock:hover{color:rgba(0,191,255,0.5)}.enchantment-clickblock:active{color:rgba(222,78,59,0.5)}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:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-direction:normal;-webkit-box-orient:vertical;-webkit-flex-direction:column;-moz-flex-direction:column;-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% 20%;margin:0;overflow:hidden;background-color:#000;color:#fff}tw-story br[data-cons]{display:block;height:0;margin:0.8ex 0}tw-story select{background-color:transparent;font:inherit;border-style:solid;padding:2px}tw-story select:not([disabled]){color:inherit}tw-passage{display:block}tw-sidebar{left:-5em;width:3em;position:absolute;text-align:center;display:block}tw-icon{display:block;margin:0.5em 0;opacity:0.2;font-size:2.75em}tw-icon:hover{opacity:0.4}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}tw-error.error{background-color:rgba(223,58,190,0.4);color:#fff}tw-error.warning{background-color:rgba(223,140,58,0.4);color:#fff;display:none}.debug-mode tw-error.warning{display:inline}tw-error-explanation{display:block;font-size:0.8rem;line-height:1rem}tw-error-explanation-button{cursor:pointer;line-height:0em;border-radius:1px;border:1px solid black;font-size:0.8rem;margin:0 0.4rem;opacity:0.5}tw-error-explanation-button .folddown-arrowhead{display:inline-block}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}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;-webkit-animation:fade-in-out 1s steps(1, end) infinite alternate}tw-align{display:block}tw-columns{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-direction:normal;-webkit-box-orient:horizontal;-webkit-flex-direction:row;-moz-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;-moz-justify-content:space-between;justify-content:space-between}tw-outline{color:white;text-shadow:-1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000}tw-shadow{text-shadow:0.08em 0.08em 0.08em #000}tw-emboss{text-shadow:0.08em 0.08em 0em #000;color:white}tw-condense{letter-spacing:-0.08em}tw-expand{letter-spacing:0.1em}tw-blur{color:transparent;text-shadow:0em 0em 0.08em #000}tw-blurrier{color:transparent;text-shadow:0em 0em 0.2em #000}tw-blurrier::selection{background-color:transparent;color:transparent}tw-blurrier::-moz-selection{background-color:transparent;color:transparent}tw-smear{color:transparent;text-shadow:0em 0em 0.02em rgba(0,0,0,0.75),-0.2em 0em 0.5em rgba(0,0,0,0.5),0.2em 0em 0.5em rgba(0,0,0,0.5)}tw-mirror{display:inline-block;transform:scaleX(-1);-webkit-transform:scaleX(-1)}tw-upside-down{display:inline-block;transform:scaleY(-1);-webkit-transform:scaleY(-1)}tw-fade-in-out{text-decoration:none;animation:fade-in-out 2s ease-in-out infinite alternate;-webkit-animation:fade-in-out 2s ease-in-out infinite alternate}tw-rumble{-webkit-animation:rumble linear 0.1s 0s infinite;animation:rumble linear 0.1s 0s infinite;display:inline-block}tw-shudder{-webkit-animation:shudder linear 0.1s 0s infinite;animation:shudder linear 0.1s 0s infinite;display:inline-block}tw-shudder-in{animation:shudder-in 1s ease-out;-webkit-animation:shudder-in 1s ease-out}.transition-in{-webkit-animation:appear 0ms step-start;animation:appear 0ms step-start}.transition-out{-webkit-animation:appear 0ms step-end;animation:appear 0ms step-end}[data-t8n^=dissolve].transition-in{-webkit-animation:appear .8s;animation:appear .8s}[data-t8n^=dissolve].transition-out{-webkit-animation:appear .8s reverse;animation:appear .8s reverse}[data-t8n^=shudder].transition-in{display:inline-block;-webkit-animation:shudder-in .8s;animation:shudder-in .8s}[data-t8n^=shudder].transition-out{display:inline-block;-webkit-animation:shudder-in .8s reverse;animation:shudder-in .8s reverse}[data-t8n^=rumble].transition-in{display:inline-block;-webkit-animation:rumble-in .8s;animation:rumble-in .8s}[data-t8n^=rumble].transition-out{display:inline-block;-webkit-animation:rumble-in .8s reverse;animation:rumble-in .8s reverse}[data-t8n^=boxflash].transition-in{-webkit-animation:box-flash .8s;animation:box-flash .8s}[data-t8n^=pulse].transition-in{-webkit-animation:pulse .8s;animation:pulse .8s;display:inline-block}[data-t8n^=pulse].transition-out{-webkit-animation:pulse .8s reverse;animation:pulse .8s reverse;display:inline-block}[data-t8n^=slideleft].transition-in{-webkit-animation:slide-left .8s;animation:slide-left .8s;display:inline-block}[data-t8n^=slideleft].transition-out{-webkit-animation:slide-right .8s reverse;animation:slide-right .8s reverse;display:inline-block}[data-t8n^=slideright].transition-in{-webkit-animation:slide-right .8s;animation:slide-right .8s;display:inline-block}[data-t8n^=slideright].transition-out{-webkit-animation:slide-left .8s reverse;animation:slide-left .8s reverse;display:inline-block}[data-t8n^=slideup].transition-in{-webkit-animation:slide-up .8s;animation:slide-up .8s;display:inline-block}[data-t8n^=slideup].transition-out{-webkit-animation:slide-down .8s reverse;animation:slide-down .8s reverse;display:inline-block}[data-t8n^=slidedown].transition-in{-webkit-animation:slide-down .8s;animation:slide-down .8s;display:inline-block}[data-t8n^=slidedown].transition-out{-webkit-animation:slide-up .8s reverse;animation:slide-up .8s reverse;display:inline-block}[data-t8n^=flicker].transition-in{-webkit-animation:flicker .8s;animation:flicker .8s}[data-t8n^=flicker].transition-out{-webkit-animation:flicker .8s reverse;animation:flicker .8s reverse}[data-t8n$=fast]{animation-duration:.4s;-webkit-animation-duration:.4s}[data-t8n$=slow]{animation-duration:1.6s;-webkit-animation-duration:1.6s}
</style>
</head>
<body>
<tw-story></tw-story>
<tw-storydata name="index" startnode="16" creator="Twine" creator-version="2.3.9" ifid="F60A686C-7277-4037-850D-A127DBD7B07D" zoom="0.6" format="Harlowe" format-version="3.1.0" options="" hidden><style role="stylesheet" id="twine-user-stylesheet" type="text/twine-css">/* text should be white, curier font, text fits on computer or mobile screen, do not need to see too much of the blue background, the background in each passage will indicate location change */
body, tw-story
{
font-family: courier;
font-size: 35px;
background-color: #B5CDE7;
padding: 50px;
}
/* links should be light pink */
tw-link, enchantment-link
{
color: #F6C5DF;
}
/* visited links should be light blue */
tw-link:visited, .enchantment-link:visited
{
color: #B3CAEF;
}
/* link hovers should be light green */
tw-link:hover, .enchantment-link:hover
{
color: #B7EFB3;
}
/* active links should be a yellow color */
tw-link:active, .enchantment-link:active
{
color: #FBF9AB;
}
/*remove undo and redo arrows*/
tw-sidebar {
display: none;
}</style><script role="script" id="twine-user-script" type="text/twine-javascript"></script><tw-passagedata pid="1" name="EarthLore" tags="" position="675,200" size="100,100">(background: (gradient:45, 0,#942920, 0.2,#945A20, 0.4,#948320, 0.6,#339420, 0.8,#206994, 1,#762094))+(align: "=><=")
[
\
Earth is not where it all began, but it is all we know.
\
The first element humans encounter is earth.
\
[[Continue|WaterLore]]
\
]</tw-passagedata><tw-passagedata pid="2" name="ElementLore" tags="" position="900,350" size="100,100">(background: (gradient:45, 0,#942920, 0.2,#945A20, 0.4,#948320, 0.6,#339420, 0.8,#206994, 1,#762094))+(align: "=><=")
[
\
The elements make up our world.
\
The elements also make up //you//, $name.
\
[[Continue|Lore 2]]
\
]</tw-passagedata><tw-passagedata pid="3" name="Lore 2" tags="" position="900,500" size="100,100">(background: (gradient:45, 0,#942920, 0.2,#945A20, 0.4,#948320, 0.6,#339420, 0.8,#206994, 1,#762094))+(align: "=><=")
[
\
Outside of the elemental world, beyond matter and time-space, lives an entity called The Original Soul.
\
The Original Soul is immaterial and has called its home
\
''The Facility.''
\
[[Continue|Lore 3]]
\
]</tw-passagedata><tw-passagedata pid="4" name="Draft Things" tags="" position="50,100" size="200,100">/*remembering grammar for character name*/$name. (upperfirst: $gender) is someone who really likes $genderposessive material items around $genderdescriptive.
/*tools*/
$summertool(sunglasses, parasol)
/*outside the facility*/(background: (gradient:45, 0,#942920, 0.2,#945A20, 0.4,#948320, 0.6,#339420, 0.8,#206994, 1,#762094))+(align: "=><=")[ ]
/*entrance hallway with doors*/(background: (gradient:90, 0,#2A1727, 0.1,#5F515D, 0.2,#2A1727, 0.3,#5F515D, 0.4,#2A1727, 0.5, #5F515D, 0.6, #2A1727, 0.7, #5F515D, 0.8, #2A1727, 0.9, #5F515D, 1, #2A1727))+(align: "=><=")[ ]
/*summer room*/(background: (gradient:90, 0, #C73C3C, 0.5, #C73C8D, 1,#9F3CC7))+(align: "=><=")
[ ]
/*fall room*/(background: (gradient:90, 0, #E5871D, 0.5, #E5B91D, 1, #DFE51D))+(align: "=><=")
[ ]
/*winter room*/(background: (gradient:90, 0, #79E710, 0.5, #35B510, 1, #0A7F19))+(align: "=><=")
[ ]
/*spring room*/(background: (gradient:90, 0,#34DDBB, 0.5, #34ABDD, 1, #3456DD))+(align: "=><=")
[ ]
/*no more walls*/(background: (gradient:135, 0, #942D6B, 0.33, #AF7F35, 0.66, #4BA120, 1, #694AC3))+(align: "=><=")
[ ]
/*singularity*/(background: (gradient:0, 0, #9EB3CA, 1, #171A1D))+(align: "=><=")
[ ]</tw-passagedata><tw-passagedata pid="5" name="Entrance" tags="" position="850,800" size="200,200">(background: (gradient:90, 0,#2A1727, 0.1,#5F515D, 0.2,#2A1727, 0.3,#5F515D, 0.4,#2A1727, 0.5, #5F515D, 0.6, #2A1727, 0.7, #5F515D, 0.8, #2A1727, 0.9, #5F515D, 1, #2A1727))+(align: "=><=")
[
\
''{(if: $tools is 1)[One of four tools collected.]
(if: $tools is 2)[Two of four tools collected.]
(if: $tools is 3)[Three of four tools collected.]
(if: $tools is 4)[All four tools collected. Area Complete.]
(event: when visits is 1)[A short, dark hallway. Two doors on either side of you and one in front of you. Impressive decoration on the ceilling might be welded or painted.]}''
\
[[WWW.Summer]]
\
[[HigherArkee.Fall]]
\
[[SpecTron.Winter]]
\
[[ProPet.Spring]]
\
[[Singularity]]
\
]</tw-passagedata><tw-passagedata pid="6" name="WWW.Summer" tags="" position="700,450" size="100,100">(background: (gradient:90, 0,#C73C3C, 0.5,#C73C8D, 1,#9F3CC7))+(align: "=><=")
[
\
''Three figures, seemingly unaware of each other. Dream architecture: formless and colorless, yet vibrant and familiar.''
\
A confused pink figure approaches you. What do you want to do?
\
[[Turn around|Entrance]]
\
(link-replace: "Learn what you can from them.")[(show: ?pinktalk)]
\
|pinktalk)["Hello, I'm $name. I seem to be lost."
\
They respond, "Hi $name. I think I'm lost too. Do you know where we are?"
\
[[Continue|WWW.Summer1]]]
\
]</tw-passagedata><tw-passagedata pid="7" name="HigherArkee.Fall" tags="" position="1100,450" size="100,100">(background: (gradient:90, 0, #AC6516, 0.5, #E4A314, 1, #EFEE3B))+(align: "=><=")
[
\
''You notice them first, while they are all three busy at work. Once one of them stops to notice you, the others do as well.''
\
The one who first noticed you is yellow. In a scolding voice she asks, "What is the meaning of this?"
\
You try despite the situation to make a good first impression on her, "I'm sorry to disturb you. I'm $name and I was hoping you could help me figure out how I got here in the first place."
\
The other two, the light orange and dark orange ones, whisper among themselves. The one in yellow turns to confer with them. Silence. A neutral courtsey to the one in yellow, a nod from her to them.
\
"I am MotherCreator. I will guide you in this mutually enlightening spiritual and material experiment."
\
[[Continue|HigherArkee.Fall1]]
\
]</tw-passagedata><tw-passagedata pid="8" name="SpecTron.Winter" tags="" position="1100,1250" size="100,100">(background: (gradient:90, 0, #79E710, 0.5, #35B510, 1, #0A7F19))+(align: "=><=")
[
\
''You notice three of them, but they seem not to notice each other. They are each fixated on whichever wall they happen to be facing, none of them facing the door.''
\
What do you do?
\
[[Go back, try another room.|Entrance]]
\
(link-replace: "Talk to them.")[(show: ?attention)]
\
|attention)[Not sure how else to get their attention, you start, "Hello? I am $name and I am wandering around looking for information because there is nothing else to do."
\
All at once, the three of them turned toward you to see who spoke, and they became hazy yet then more vibrant than before. Then, they noticed each other. No one spoke for a moment. The three of them shared many thoughtful and happy looks at each other.
\
[[Continue|SpecTron.Winter1]]]
\
]</tw-passagedata><tw-passagedata pid="9" name="ProPet.Spring1" tags="" position="500,1450" size="100,100">(background: (gradient:90, 0,#34DDBB, 0.5, #34ABDD, 1, #3456DD))+(align: "=><=")
[
\
''The knowledge that these victims are also unaware of how they were victimized cuts deep.''
\
You try to backpedal, "How could I have done this, I've never been here or seen any of you before!"
\
"You're right, but we are desperate..." adds the one in indigo.
\
The turquoise one speaks up, "Is there a mortal here? In our room in The Facility?"
\
You pity them, and wish to give them whatever they want: assistance, information, whatever. You tell them, "Yeah. I'm still not sure how I even came to be here. I can't bear to see you all suffering, though. I won't leave until I can at least try to help you."
\
[[Continue|ProPet.Spring2]]
\
]</tw-passagedata><tw-passagedata pid="10" name="Singularity" tags="" position="900,1150" size="100,200">(background: (gradient:0, 0, #9EB3CA, 1, #171A1D))+(align: "=><=")
[
\
''All you can see is darkness. It pulls you in. What do you do?''
\
Go back to the [[Hallway|Entrance]].
\
[[Continue|FusionWarp]] to discover more about The Facility.
\
(confirm: "Only Continue if you have collected four items.")]</tw-passagedata><tw-passagedata pid="11" name="WWW.Summer1" tags="" position="500,250" size="100,100">(background: (gradient:90, 0,#C73C3C, 0.5,#C73C8D, 1,#9F3CC7))+(align: "=><=")
[
\
''It sounds like someone is calling you a fool. You notice the red one looks like he is calling toward the pink one.''
\
"Oh dear where have you been? TheFool! I've missed you! Please tell me you are alright!"
\
The pink one responds, "What? Who is the fool?"
\
"Why, you are called TheFool, silly! What ever happened to you? It was bad enough we all got stuck in our rooms like this then I lost you both!"
\
You clear your throat. The red one notices you now. He seems suddenly grave, but still polite. "Well, hello there. Umm. I am TheLover. Is there anything I can do for you, um, what was your name again?"
You introduce yourself, "$name."
\
[[Continue|WWW.Summer2]]
\
]</tw-passagedata><tw-passagedata pid="12" name="WWW.Summer2" tags="" position="300,350" size="100,100">(background: (gradient:90, 0,#C73C3C, 0.5,#C73C8D, 1,#9F3CC7))+(align: "=><=")
[
\
''The room feels much larger but somehow more cramped now.''
\
TheLover pauses a moment. Then he says,
\
"Last I remember seeing my beloved, TheFool was having a private argument with MotherCreator."
\
"Oh, are you talking about the lady over there in the corner," you ask.
\
"You mean you can see her?"
\
"Well, I see somebody."
\
"That must be TheIsolated. But TheFool, do you remember what happened between you and MotherCreator?"
\
They think for a minute, "I don't know who that is."
\
[[Continue|WWW.Summer3]]
\
]</tw-passagedata><tw-passagedata pid="13" name="WWW.Summer3" tags="" position="200,550" size="100,100">(background: (gradient:90, 0,#C73C3C, 0.5,#C73C8D, 1,#9F3CC7))+(align: "=><=")
[
\
''TheLover stomped his foot down twice and the floor opened up revealing an uprising, shining chest.''
\
He opens it, takes something out, turns to you, and says, "Take this. It will help you later."
\
[[sunglasses]] or [[parasol]]
\
]</tw-passagedata><tw-passagedata pid="14" name="HigherArkee.Fall1" tags="" position="1300,250" size="100,100">(background: (gradient:90, 0, #E5871D, 0.5, #E5B91D, 1, #DFE51D))+(align: "=><=")
[
\
''They whisper among themselves until MotherCreator moves dramatically and gracefully toward a chest.''
\
The dark orange one begins, "I am CareGiver."
\
Then light orange, "And I am FatherOfRules."
\
In synch, "And we would like to interview you."
\
Do you accept?
\
[[No. Turn back.|Entrance]]
\
(link-replace: "Be interviewed.")[(show: ?interview)]
\
|interview)[The two of them in their different shades of orange motion you to a chair. They pull up matching chairs to face you. One of them seems to be preparing to take notes on the interview, but with very unfamiliar technology.
\
[[Continue|HigherArkee.Fall2]]]
\
]</tw-passagedata><tw-passagedata pid="15" name="HigherArkee.Fall2" tags="" position="1500,350" size="100,100">(background: (gradient:90, 0, #E5871D, 0.5, #E5B91D, 1, #DFE51D))+(align: "=><=")
[
\
''More an interrogation than an interview, the one in dark orange begins questioning you with a distinct emotional distance.''
\
She begins, "Tell us what you remember about arriving here."
\
You tell them everything you know, which isn't much.
\
FatherOfRules, in light orange, turns to MotherCreator in yellow, "Extreme limitation of choices. One, keep $gender here for observation and experimentation. Two, give $gender -"
\
She already knows where this is going, "I've already went through the trouble of unpacking it from the chest. This will be our most successful experiment yet."
\
FatherOfRules and CareGiver synchronize their speech again, "Very well."
\
MotherCreator holds in her hands what seem to be a sacred item and beacons you toward her, offering it to you.
\
[[scythe]] or [[wide-brimmed hat]]
\
]</tw-passagedata><tw-passagedata pid="16" name="Welcome" tags="" position="700,0" size="100,100">(background: (gradient:45, 0,#942920, 0.2,#945A20, 0.4,#948320, 0.6,#339420, 0.8,#206994, 1,#762094))+(align: "=><=")
[
\
''//The Facility//''
\
[[Begin|Create Character]]
\
]</tw-passagedata><tw-passagedata pid="17" name="FusionWarp" tags="" position="900,1450" size="100,100">(background: (gradient:0, 0, #171A1D, 1, #9EB3CA))+(align: "=><=")
[
\
''Through the door you feel air pressure weigh you down and squeezing every cell of your body. Suddenly, the pressure releases and it sounds like rain for a moment.''
\
Silence.
\
No more doors, mosaic, or placards. No more walls. Only an internal sensation suggests that this is somehow the same hallway as before, as in a dream when the place looks unrecognizeable but you somehow know or remember where you are.
\
There are four enormous figures spread out on the holographic landscape. As if they were inside of rooms, they do not notice or engage with you.
\
The figures do not seem to notice or engage each other either.
\
As if on cue, the figues all turn to face the door you just came through. Simultaneously, they kneel. It is the vision of physical defense and spiritual surrender.
\
One step farther. The door you just stepped through dissolves before your eyes.
\
[[Explore|Hallway]]
\
]</tw-passagedata><tw-passagedata pid="18" name="Create Character" tags="" position="900,0" size="100,100">(background: (gradient:45, 0,#942920, 0.2,#945A20, 0.4,#948320, 0.6,#339420, 0.8,#206994, 1,#762094))+(align: "=><=")
[(set: $name to (prompt: "Type your name here:", "Dee Fault"))
\
What will you be called?
\
Name: $name
\
(cycling-link: bind $gender, "he", "she", "they")/(cycling-link: bind $genderdescriptive, "him", "her", "them")/(cycling-link: bind $genderposessive, "his", "her", "their")/(cycling-link: bind $gendersposessive, "his", "hers", "theirs")
\
[[Continue|EarthLore]]
\
]</tw-passagedata><tw-passagedata pid="19" name="SpecTron.Winter1" tags="" position="1300,1450" size="100,100">(background: (gradient:90, 0, #79E710, 0.5, #35B510, 1, #0A7F19))+(align: "=><=")
[
\
''They hold each others' hands. Then let go, turning back toward you.''
\
The three of them wore different shades of green, one had light green, one was true green, and the other was dark green, like grass or a jungle. The one in true green spoke,
\
"Greetings, $name. Welcome to our room in The Facility. We are grateful to you. You woke us up from somewhat of a trance. I would like to introduce myself all to you, since you showed us such kindness and polite manners. I am EnLight."
\
"And I am AliEn," said the light green one.
\
"And I am EXPLore," said the dark green one.
\
They all seem so excited to have found a new friend, but EnLight seems less trusting.
\
"I wonder how it is you are here, and how it is that you are talking to us."
\
You apologetically reply, "I wish I could tell you, but I am trying to find that out for myself as well. Is there any way that you could help me?"
\
[[Continue|SpecTron.Winter2]]
\
]</tw-passagedata><tw-passagedata pid="20" name="SpecTron.Winter2" tags="" position="1500,1350" size="100,100">(background: (gradient:90, 0, #79E710, 0.5, #35B510, 1, #0A7F19))+(align: "=><=")
[
\
''EnLight seems to know more than the others.''
\
You wonder why he has such a look about him.
\
EnLight has something to ask you, "I can tell by your color that your destiny brought you here. It makes sense that a mortal such as you will be affected deeply if you remember your time here, but I wonder how you will change The Facility."
\
You ask, "What do you mean, color? And how can I have any affect on this place... I don't even know how I got here!"
\
EXPLore speaks up, "There has never been a human inside The Facility, or one who even knew about it. Yet the one who shows up is utterly clueless. How funny."
\
[[Continue|SpecTron.Winter3]]
\
]</tw-passagedata><tw-passagedata pid="21" name="SpecTron.Winter3" tags="" position="1600,1150" size="100,100">(background: (gradient:90, 0, #79E710, 0.5, #35B510, 1, #0A7F19))+(align: "=><=")
[
\
''The laughter from everyone in this room, though brief, is enough to affect your vibration. You feel slower and more in control.''
\
The three of them take each others hands again. A light emerges from the triangle their arms create. Inside the light, a chest appears.
\
Almost like a ritual, they chant, "Twelve divide four, three to a pen, humanity without human. The items four combined with life will turn the tide and shake our strife. The end will come with sacrifice. Reanimate our soul suffice."
\
The chest opens and an item gently floats, inviting you to take it.
\
[[pair of boots]] or [[jacket]]
\
]</tw-passagedata><tw-passagedata pid="22" name="ProPet.Spring2" tags="" position="300,1350" size="100,100">(background: (gradient:90, 0,#34DDBB, 0.5, #34ABDD, 1, #3456DD))+(align: "=><=")
[
\
''The two kneeling figures stand up synchroniously, intimidating.''
\
Together, they ask, "Why would //you// want to help //us//?" The indigo one adds, "Do you really not understand how this place works? How could we trust that when you already made it here."
\
"Well, I don't know how to prove my innocence but I do hate to see anyone suffering, even strangers in a strange place."
\
The chained one speaks up to everyone's surprise, "This is no place."
\
You ask, "What do you mean, no place?" The indigo one seems slightly offended and equally as curious about the turquoise one's explination.
\
Turquoise says, "Place implies a material nature. The Facility is as much a symbolic reflection of energy as it is a result of the dynamic frequency of light in a timeless, spaceless, vacuum."
\
The one in blue almost cuts him off, "What are you getting at? This mortal made the connection and showed up, why wouldn't $gender know about all that? (upperfirst: $gender)
\
Pulling at the chains and straining his eyes open, shocking everyone, he exclaims, "MOTHERCREATOR!"
\
Silence. Pain radiates out of the turquoise one and affects everyone in the room. It feels darker now.
\
You ask, "What's up? Why did he scream 'MotherCreator'?"
\
The one in blue, "You have to go to the Chamber of Randomizations to see for yourself. She won't tell you herself, but you will understand if you can make it there."
\
"Where is that? I didn't notice any rooms with that name."
\
The one in indigo, "What are you telling $genderdescriptive?"
\
[[Continue|ProPet.Spring3]]
\
]</tw-passagedata><tw-passagedata pid="23" name="ProPet.Spring3" tags="" position="200,1150" size="100,100">(background: (gradient:90, 0,#34DDBB, 0.5, #34ABDD, 1, #3456DD))+(align: "=><=")
[
\
''The frequency of vibration in the room and inside your body grows more erratic.''
You attempt to take the heat off you, "Excuse me, I'm sorry I seem to have arrived at an unusual time, but I would like to introduce myself so that I can try to get off on a better foot. They call me $name."
\
The turquiose one in chains is first to reply, "I am HappyTrigger. Welcome to The Facility. I hope to be able to stand up soon and shake your hand."
\
Next is the one in blue, "I am ShapeShifter." They bow their head politely greeting you.
\
Third, the one in indigo, "I am PhoeNix." She bows her head the same as ShapeShifter. Then she adds, "Will you go to The Chamber of Randomizations and reverse our diffusion?"
\
ShapeShifter butts in, "What are you getting at? We have no idea what $name is doing here. How do we know $gender won't take advantage of the situation? Or even get hurt when we... when... as the //door// to the Chamber of Randomizations opens?!?"
\
HappyTrigger says, "It's not that I necessarily think the risk is worth the possibilities, but I simply don't see any other way that any of us will be able to move foward until it happens. $name or not."
\
More curious than anything, you ask, "How come I can't just break those chains? Isn't there some straight-foward way I can help you and avoid this now dangerous seeming mystery?"
\
They all let out a chuckle. ShapeShifter retorts, "Regardless your understanding of our home, the fact remains that we //all// have no other options. Just see what you can find out around here and when you've come to the same conclusion I have, go through //that// door."
\
[[Continue|ProPet.Spring4]]
\
]</tw-passagedata><tw-passagedata pid="24" name="ProPet.Spring4" tags="" position="400,950" size="100,100">(background: (gradient:90, 0,#34DDBB, 0.5, #34ABDD, 1, #3456DD))+(align: "=><=")
[
\
''Courage and fear mix your blood like cool wind on a hot day. Your spiritual inertia causes a vortex to appear on a screen viewed in another room of The Facility.''
\
HappyTrigger still sounds like he has incredible authority even blindfolded in chains, he says, "Please, open the chest. The time has come."
\
ShapeShifter and PhoeNix nod politely to him and join hands. They begin murmuring "Ooooooooopen, ooooooooopen, ooooooooooopen..." in deep and righteous voices.
\
The chest fazed into the room as if it were invisibly there the whole time and there was simply a mirage concealing it. On the last "ooooooooopen" the chest did indeed open. The item inside began floating above the chest, revealing itself without anyone lifting it. It is a
\
[[cross-body bag]] or [[inscribed ring]]
\
]</tw-passagedata><tw-passagedata pid="25" name="Hallway" tags="" position="850,1750" size="200,200">(background: (gradient:135, 0, #942D6B, 0.33, #AF7F35, 0.66, #4BA120, 1, #694AC3))+(align: "=><=")
[
\
''All you see are the four kneeling figures around you. When you focus on them, their names are pronounced into your ears, or mind.''
\
[[WWW]]
\
[[HigherArkee]]
\
[[SpecTron]]
\
[[Propet]]
\
]</tw-passagedata><tw-passagedata pid="26" name="WWW" tags="" position="700,1600" size="100,100">More coming soon! You have been redirected to the README.md file from this project's GitHub repository. (open-url: "https://github.com/sofiafightmaster/TheFacility/blob/main/README.md")</tw-passagedata><tw-passagedata pid="27" name="HigherArkee" tags="" position="1100,1600" size="100,100">More coming soon! You have been redirected to the README.md file from this project's GitHub repository. (open-url: "https://github.com/sofiafightmaster/TheFacility/blob/main/README.md")</tw-passagedata><tw-passagedata pid="28" name="SpecTron" tags="" position="1100,2000" size="100,100">More coming soon! You have been redirected to the README.md file from this project's GitHub repository. (open-url: "https://github.com/sofiafightmaster/TheFacility/blob/main/README.md")</tw-passagedata><tw-passagedata pid="29" name="Propet" tags="" position="700,2000" size="100,100">More coming soon! You have been redirected to the README.md file from this project's GitHub repository. (open-url: "https://github.com/sofiafightmaster/TheFacility/blob/main/README.md")</tw-passagedata><tw-passagedata pid="30" name="WWW.Summer4" tags="" position="400,750" size="100,100">(background: (gradient:90, 0,#C73C3C, 0.5,#C73C8D, 1,#9F3CC7))+(align: "=><=")
[
\
''The room feels much smaller. You feel the door pressed against your back.''
\
"TheLover! What are you thinking? I can't leave you two alone for the life of me - oh. Hello there, and who might you be? Accepting gifts so soon?"
\
Embarassed, you say, "I'm sorry. I'm very lost and confused. I'm $name. TheLover, here, was trying to help me, and I think your friend TheFool, as well."
\
"TheFool sews what they reap. I warned them both not to go against MotherCreator."
\
TheLover, interrupting, says, "But you never told us why! What do you know? Why do you keep disappearing?"
\
She tells him, "I know what you are planning, opening the chest and all. It might help TheFool, but it will hurt us all. I told you anything that affects MotherCreator will come back to haunt us. We just need to mind our own business until we all //naturally// get back together."
\
[[Continue|WWW.Summer5]]
\
](print: $tools)</tw-passagedata><tw-passagedata pid="31" name="WWW.Summer5" tags="" position="600,650" size="100,100">(background: (gradient:90, 0, #C73C3C, 0.5, #C73C8D, 1,#9F3CC7))+(align: "=><=")
[
\
''Faintly, you hear something that sounds like a camera taking a snapshot.''
\
TheIsolated continued, "All I'm saying is that meddling won't make this go away."
He pleaded with her, "But don't you want to help TheFool? Don't you miss being //together//? I do..."
\
She said, "If we were supposed to be together, we would be. And what would happen to //$genderdescriptive//?"
\
"That's why I gave it to $genderdescriptive."
\
"There's no way to know $gender will know what to do when the time comes."
\
TheLover turns toward you with grace and pride. "Trusting you is our only chance at helping TheFool and getting through to MotherCreator. Helping us is //your// only choice if you want to return to the Earth you know and love. Please go on and do what you can for us."
\
[[Back to hallway|Entrance]]
\
]</tw-passagedata><tw-passagedata pid="32" name="HigheeArkee.Fall4" tags="" position="1400,750" size="100,100">(background: (gradient:90, 0, #E5871D, 0.5, #E5B91D, 1, #DFE51D))+(align: "=><=")
[
\
''"So what am I supposed to do?"''
\
MotherCreator speaks, "Nothing like this has ever happened before. When we decided to build up the walls and confine ourselves to our diffused bodies, we also created keepsakes that could be used to reestablish connections between the parts of us that have become self-sufficient."
\
FatherOfRules continues, "I am aware of your confusion, $name. MotherCreator is kind enough to disclose to you, a stranger and a mortal, some of the mysteries of The Facility. Althgouh we are not exactly sure what would happen if a material being became integrated and embedded their personality and biology into our matrix, we assume it would only increase our own knowledge of existance. This is the purpose of experimentation."
\
Silence.
\
[[Continue|HigherArkee.Fall5]]</tw-passagedata><tw-passagedata pid="33" name="HigherArkee.Fall5" tags="" position="1200,650" size="100,100">(background: (gradient:90, 0, #E5871D, 0.5, #E5B91D, 1, #DFE51D))+(align: "=><=")
[
\
''Your hand hesitates at the doorknob.''
\
You turn back, almost without thinking, and ask, "So what is this place exactly? A science lab?"
\
CareGiver answers this time, "You will be able discover the reality of The Facility and you must. You need all four items to withstand fusion. Explore. We will be watching with anticipation, taking notes on your every move."
\
"Okay. Well, thanks for... this. I hope I don't disappoint."
\
They all snicker amongst themselves as you walk away.
\
[[Back to the hallway.|Entrance]]
\
]</tw-passagedata><tw-passagedata pid="34" name="SpecTron.Winter5" tags="" position="1200,975" size="100,100">(background: (gradient:90, 0, #79E710, 0.5, #35B510, 1, #0A7F19))+(align: "=><=")
[
\
''The room reflects your energy by vibrating with ascending intensity.''
\
EXPLore speaks, "It seems you have a heavy quest ahead of you, $name."
\
Feeling more dutiful and courageous than ever, you tell them all, "I will do whatever I can. If life means anything to me, it means that I get to choose. Maybe this is all a dream, but that just means I am living my dream. Even if it doesn't make sense to me."
\
EnLight responds, "Ah, yes. Dreams are rarely naturalistic or realistic. But they exist like you, me, the Earth, and The Facility."
\
You turn to them all one last time, "Hmm, yeah. That makes sense. I hope I am the right person, I mean, I hope... I don't know anymore. It was nice to meet you."
\
[[Back to hallway.|Entrance]]
\
]</tw-passagedata><tw-passagedata pid="35" name="ProPet.Spring" tags="" position="700,1250" size="100,100">(background: (gradient:90, 0,#34DDBB, 0.5, #34ABDD, 1, #3456DD))+(align: "=><=")
[
\
''It's like a jail cell in here. Two mildly injured figures one looks indigo the other looks blue, are kneeling oneither side of a third turquoise one who is strapped to a throne and blindfolded.''
\
An incredible sadness, or heaviness washes over you despite yourself. Suddenly an unshakable urge to leave washes over you. What do you do?
\
[[Turn back.|Entrance]]
\
(link-replace: "Ask if they need help.")[(show: ?prisoners)]
\
|prisoners)[You clear your throat and try to introduce yourself, "Hello-"
\
The two kneeling figures jump. The one in chains does not seem to notice you, or do anything. There is a deep sadness radiating from him which affects you when you turn your attention to him.
\
One of the two who notice you, the blue one, turns to you. They say, "Are you responsible for this?"
\
[[Continue|ProPet.Spring1]]]
\
]</tw-passagedata><tw-passagedata pid="36" name="FireLore" tags="" position="975,200" size="100,100">(background: (gradient:45, 0,#942920, 0.2,#945A20, 0.4,#948320, 0.6,#339420, 0.8,#206994, 1,#762094))+(align: "=><=")
[
\
How many stories are there of the discovery of fire? Prometheus... The brothers Ioalox...
\
Fire is the third element, illuminating a higher purpose for humans.
\
[[Continue|AirLore]]
\
]</tw-passagedata><tw-passagedata pid="37" name="WaterLore" tags="" position="825,200" size="100,100">(background: (gradient:45, 0,#942920, 0.2,#945A20, 0.4,#948320, 0.6,#339420, 0.8,#206994, 1,#762094))+(align: "=><=")
[
\
Water grants us not only a material existance, but a biological one.
\
Water is the second human element.
[[Continue|FireLore]]
\
]</tw-passagedata><tw-passagedata pid="38" name="AirLore" tags="" position="1125,200" size="100,100">(background: (gradient:45, 0,#942920, 0.2,#945A20, 0.4,#948320, 0.6,#339420, 0.8,#206994, 1,#762094))+(align: "=><=")
[
\
In stillness there is awareness of something.
\
That is air.
\
The presence around us creating the atmosphere and closing the environmental circuits all interconnected throughout this planet.
\
Air is the fourth element.