-
Notifications
You must be signed in to change notification settings - Fork 0
/
babel.html
4848 lines (3864 loc) · 470 KB
/
babel.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>
<meta charset="utf-8">
<title>Babel2_FolderLinks</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)}}.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="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].false{background-color:rgba(255,0,0,0.2) !important}.debug-mode tw-expression[type=macro].false+tw-hook:not([name]){display:none}.debug-mode tw-expression[type=macro][name="a"],.debug-mode tw-expression[type=macro][name="array"],.debug-mode tw-expression[type=macro][name="datamap"],.debug-mode tw-expression[type=macro][name="dataset"],.debug-mode tw-expression[type=macro][name="colour"],.debug-mode tw-expression[type=macro][name="color"],.debug-mode tw-expression[type=macro][name="num"],.debug-mode tw-expression[type=macro][name="number"],.debug-mode tw-expression[type=macro][name="text"],.debug-mode tw-expression[type=macro][name="print"]{background-color:rgba(255,255,0,0.2) !important}.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="script"]{background-color:rgba(255,191,0,0.2) !important}.debug-mode tw-expression[type=macro][name="style"]{background-color:rgba(185,198,198,0.2) !important}.debug-mode tw-expression[type=macro][name^="link"],.debug-mode tw-expression[type=macro][name^="click"],.debug-mode tw-expression[type=macro][name^="mouseover"],.debug-mode tw-expression[type=macro][name^="mouseout"]{background-color:rgba(128,223,32,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^="remove"]{background-color:rgba(223,96,32,0.2) !important}.debug-mode tw-expression[type=macro][name="live"]{background-color:rgba(32,96,223,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:1em;font-size:1.25em;font-family:sans-serif;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}tw-debugger button.enabled{background-color:#eee;box-shadow:inset #ddd 3px 5px 0.5em}tw-debugger .variables{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-top-left-radius:.5em;border-bottom-left-radius:.5em;font-size:0.8em}tw-debugger .variables:empty,tw-debugger .variables[hidden]{display:none}tw-debugger .variables .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 .variables .variable-row:nth-child(2n){background:#EEE}tw-debugger .variables .variable-name{display:inline-block;width:50%}tw-debugger .variables .variable-name::before{content:"$"}tw-debugger .variables .variable-name.temporary::before{content:"_"}tw-debugger .variables .variable-name .temporary-variable-scope{opacity:0.8;font-size:0.75em}tw-debugger .variables .variable-name .temporary-variable-scope::before{content:" in "}tw-debugger .variables .variable-value{display:inline-block;width:50%}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-enchantment[style^="color"] tw-link:not(:hover),tw-enchantment[style*=" color"] tw-link:not(:hover),tw-enchantment[style^="color"] .enchantment-link:not(:hover),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-enchantment[style^="color"] .visited:not(:hover),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-enchantment[style^="color"] tw-broken-link:not(:hover),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;background-color:#000;color:#fff}tw-passage{display:block}br+br{display:block;height:0;margin:0.8ex 0}tw-sidebar{left:-5em;width:3em;position:absolute;text-align:center;display:block}tw-icon{display:block;margin:0.5em 0;opacity:0.1;font-size:2.75em}tw-icon:hover{opacity:0.3}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}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^=fade-in].transition-in{-webkit-animation:appear .8s;animation:appear .8s}[data-t8n^=fade-in].transition-out{display:none}[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-in].transition-in,.transition-in[data-t8n^=shudder]{display:inline-block;-webkit-animation:shudder-in .8s;animation:shudder-in .8s}[data-t8n^=shudder-out].transition-out,.transition-out[data-t8n^=shudder]{display:inline-block;-webkit-animation:shudder-out .8s;animation:shudder-out .8s}[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$=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="Babel2_FolderLinks" startnode="2" creator="Twine" creator-version="2.2.1" ifid="D7740255-1B4F-4EF5-809E-84D40C32CC7E" zoom="1" format="Harlowe" format-version="2.1.0" options="" hidden><style role="stylesheet" id="twine-user-stylesheet" type="text/twine-css">@import url('https://fonts.googleapis.com/css?family=Abril+Fatface|Alice|Droid+Serif|Playfair+Display|Aguafina+Script|Monsieur+La+Doulaise|IM+Fell+Double+Pica+SC|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
/*==========PASSAGE STYLING==========*/
tw-sidebar {
display: none;
}
tw-story{
font-family: 'Source Serif Pro', serif;
font-weight: 400;
color:#D4D4D4;
background:#3E4651;
}
tw-passage {
width:1000px;
}
tw-story[tags~="title"]{
background:url('ltc3Graphics/TitleWebOptimized.png?raw=true') no-repeat, 10%, #30110E;
background-position: 50% 10%;
}
tw-story[tags~="tutorial"]{
background:url('ltc3Graphics/tutorialBackground.png?raw=true') no-repeat, #77CCA4;
background-size: 100%;
color:black;
}
tw-story[tags~="bookshelves"]{
background-color: #524656;
}
tw-story[tags~="characterSelect"]{
background:black;
}
tw-story[tags~="dialogue"]{
background: url(ltc3Graphics/DialogueBackground.png?raw=true) no-repeat,#5A2E2E;
background-size:100%;
color:#DFBA69;
}
tw-story[tags~="fortuneTeller"]{
background: #351330;
}
tw-story[tags~="mechanic"]{
background:#E6AC57;
color:black;
}
tw-story[tags~="historian"]{
background:#003333;
}
tw-story[tags~="playwright"]{
background:#C06C84;
}
tw-story[tags~="Book"] {
/*background-image: url("https://c1.staticflickr.com/5/4018/4708861208_7b2a8a8704_b.jpg");*/
background-image: url('ltc3Graphics/page_texture.jpg');
text-indent:2em;
font-size: 1.5em;
font-family:'Source Serif Pro', serif;
background-color:#1e1c1c;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 99% 97%;
background-position: center;
color:#1c1b1b;
/*background-color: Beige;*/
}
tw-story[tags~="dark"]{
background: black;
color:#D4D4D4;
}
tw-story[tags~="light"]{
background: white;
color:black;
}
tw-story[tags~="inventory"]{
background: url(ltc3Graphics/InventoryBackground.png?raw=true) no-repeat, #253342;
background-size:100%;
color:5E9188;
}
tw-story[tags~="Quests"]{
background: url(ltc3Graphics/QuestsBackground.png?raw=true) no-repeat, #253342;
background-size:100%;
color:5E9188;
}
/*=====Specific Characters=====*/
/*---Cryptographer---*/
tw-story[tags~="cryptographer"]{
background:#0E504B;
}
tw-story[tags~="cryptographerProfile"]{
background: url("ltc3Graphics/cyrptographerSnap.JPG?raw=true") no-repeat,#12504B;
background-size:100%;
}
/*---Explorer---*/
tw-story[tags~="explorer"]{
background: #A11D32;
}
tw-story[tags~="explorerProfile"]{
background: url("ltc3Graphics/ExplorerSnap.JPG?raw=true") no-repeat, #A21D32;
background-size:100%;
}
/*---Leader---*/
tw-story[tags~="leader"]{
background: #CB4628;
}
tw-story[tags~="leaderProfile"]{
background: url("ltc3Graphics/LeaderSnap.JPG?raw=true") no-repeat, #CD4628;
background-size:100%;
}
/*==========HOOK STYLING==========*/
tw-hook[name=small]{
font-family: 'Roboto', sans-serif;
font-weight:100;
font-size:0.75em;}
tw-hook[name=subtitle]{
font-family: 'Roboto', sans-serif;
font-weight:700;
font-size:1.2em;
color: #FFFFFF;}
tw-hook[name=title]{
font-family: 'Roboto', sans-serif;
font-weight:700;
font-size:4em;}
tw-hook[name=smalltitleyellow]{
font-family: 'Roboto', sans-serif;
font-weight:700;
color:#DFBA69;
font-size:1em;}
tw-hook[name=smalltitleblue]{
font-family: 'Roboto', sans-serif;
font-weight:700;
color:#69D2E7;
font-size:1em;}
/* Added \/ */
tw-hook[name=quote]{
font-family: 'IM Fell Double Pica SC', serif;
font-size:1.0em;
text-align: center;}
tw-hook[name=code]{
font-family: 'Courier New',sans-serif;
font-size:1em;}
tw-hook[name=textOnLight]{
background:rgba(0,0,0,0.8);
}
img {
display: block;
margin: auto;
}
.book_img {
display: inline-block;
width: 80px;
height: 260px;
border: 0px solid #000;
border-radius: 24px;
padding: 5px;
}
.book_img:hover {
border: 1px solid white;
border-radius: 24px;
}
/*Links*/
.enchantment-link, tw-link {
font-family: 'Roboto', sans-serif;
font-weight: 700;
color: white;
}
.enchantment-link:hover, tw-link:hover {
font-family: 'Roboto', sans-serif;
font-weight: 700;
color: #F1654C;
}
.enchantment-link.visited, tw-link.visited{
font-family: 'Roboto', sans-serif;
font-weight: 700;
color: white;
}
.enchantment-link.visited:hover, tw-link.visited:hover{
font-family: 'Roboto', sans-serif;
font-weight: 700;
color: #F1654C;
}
tw-link.click {
font-weight: 700;
color: black;
}
</style><script role="script" id="twine-user-script" type="text/twine-javascript">var _state = State;
window._state = _state;
function setHarloweVariable(prop, val) {
if (typeof(prop) === typeof(undefined) ||
prop === '' ||
typeof(val) === typeof(undefined)) {
return;
}
if (prop[0] === '$') {
prop = prop.slice(1, prop.length);
}
_state.variables[prop] = val;
}
window.setHarloweVariable = setHarloweVariable;
if (typeof SeedString == "undefined") {
var SeedString = "nothing yet";
}
window.SeedString = SeedString
/**
function getHarloweVariable(name) {
if (typeof(name) === typeof(undefined) ||
name === '') {
return;
}
if (name[0] === '$') {
name = name.slice(1, name.length);
}
return _state.variables[name];
}
window.getHarloweVariable = getHarloweVariable;
**/
// Sound namespace.
if (typeof Sound == "undefined") {
var Sound = {
play: function(tune) {
if (! tune) {
// no tune, no play.
return;
}
var audio = $('#nowplaying')[0];
if (typeof audio === 'undefined') {
audio = document.createElement('audio');
audio.setAttribute('id', 'nowplaying');
$("body").append(audio);
}
// setup the tune to play.
audio.src = tune;
audio.loop = true;
audio.volume = 1;
audio.play();
},
// fade the music in / out. newvolume range between 0.0 -> 1.0
fade: function(newvolume, period) {
// assign defaults.
newvolume = newvolume || 0;
period = period || 1000;
var audio = $('#nowplaying');
if (audio.length == 1) {
audio.animate({volume: newvolume}, period);
}
},
pause: function() {
// find the audio element.
var audio = $('#nowplaying')[0];
if (typeof audio != 'undefined') {
audio.pause();
}
},
resume: function() {
// find the audio element.
var audio = $('#nowplaying')[0];
if (typeof audio != 'undefined' && audio.paused) {
audio.play();
}
},
stop: function() {
// find the audio element.
var audio = $('#nowplaying')[0];
if (typeof audio != 'undefined') {
audio.pause();
audio.currentTime = 0;
}
}
};
window.Sound = Sound;
}
// Sound2 namespace.
if(void 0===Sound2){var Sound2={play:function(n){if(n){var r=$("#nowplaying2")[0];void 0===r&&(r=document.createElement("audio"),r.setAttribute("id","nowplaying2"),$("body").append(r)),r.src=n,r.loop=!0,r.volume=1,r.play()}},fade:function(n,r){n=n||0,r=r||1e3;var t=$("#nowplaying2");1==t.length&&t.animate({volume:n},r)},pause:function(){var n=$("#nowplaying2")[0];void 0!==n&&n.pause()},resume:function(){var n=$("#nowplaying2")[0];void 0!==n&&n.paused&&n.play()},stop:function(){var n=$("#nowplaying2")[0];void 0!==n&&(n.pause(),n.currentTime=0)}};window.Sound2=Sound2}
// Sound3 namespace.
if(void 0===Sound3){var Sound3={play:function(n){if(n){var r=$("#nowplaying3")[0];void 0===r&&(r=document.createElement("audio"),r.setAttribute("id","nowplaying3"),$("body").append(r)),r.src=n,r.loop=!0,r.volume=1,r.play()}},fade:function(n,r){n=n||0,r=r||1e3;var t=$("#nowplaying3");1==t.length&&t.animate({volume:n},r)},pause:function(){var n=$("#nowplaying3")[0];void 0!==n&&n.pause()},resume:function(){var n=$("#nowplaying3")[0];void 0!==n&&n.paused&&n.play()},stop:function(){var n=$("#nowplaying3")[0];void 0!==n&&(n.pause(),n.currentTime=0)}};window.Sound3=Sound3}
// Sound4 namespace.
if(void 0===Sound4){var Sound4={play:function(n){if(n){var r=$("#nowplaying4")[0];void 0===r&&(r=document.createElement("audio"),r.setAttribute("id","nowplaying4"),$("body").append(r)),r.src=n,r.loop=!0,r.volume=1,r.play()}},fade:function(n,r){n=n||0,r=r||1e3;var t=$("#nowplaying4");1==t.length&&t.animate({volume:n},r)},pause:function(){var n=$("#nowplaying4")[0];void 0!==n&&n.pause()},resume:function(){var n=$("#nowplaying4")[0];void 0!==n&&n.paused&&n.play()},stop:function(){var n=$("#nowplaying4")[0];void 0!==n&&(n.pause(),n.currentTime=0)}};window.Sound4=Sound4}
// Sound5 namespace.
if(void 0===Sound5){var Sound5={play:function(n){if(n){var r=$("#nowplaying5")[0];void 0===r&&(r=document.createElement("audio"),r.setAttribute("id","nowplaying5"),$("body").append(r)),r.src=n,r.loop=!0,r.volume=1,r.play()}},fade:function(n,r){n=n||0,r=r||1e3;var t=$("#nowplaying5");1==t.length&&t.animate({volume:n},r)},pause:function(){var n=$("#nowplaying5")[0];void 0!==n&&n.pause()},resume:function(){var n=$("#nowplaying5")[0];void 0!==n&&n.paused&&n.play()},stop:function(){var n=$("#nowplaying5")[0];void 0!==n&&(n.pause(),n.currentTime=0)}};window.Sound5=Sound5}
if (typeof stringGen == "undefined") {
var stringGen = {
generate: function(len, identifier, passageName) {
var text = " ";
Math.seedrandom(passageName);
var elem = document.getElementById(identifier);
var charset = " aaaa bcddd eeeeef ghhhh iiiijkll mnnnn oooop qrrrrr ssssttt ttuuvwxyz . , ";
for( var i=0; i < len; i++ )
text += charset.charAt(Math.floor(Math.random() * charset.length));
elem.innerHTML = text;
//return text;
}
};
window.stringGen = stringGen;
}
/*
Copyright 2014 David Bau.
http://cdnjs.cloudflare.com/ajax/libs/seedrandom/2.3.10/seedrandom.min.js
--> (module block has been removed)
https://github.com/davidbau/seedrandom/blob/released/seedrandom.js
*/
!function(n,r){function t(t,c,s){var p=[];c=1==c?{entropy:!0}:c||{};var S=u(i(c.entropy?[t,f(n)]:null==t?a():t,3),p),m=new o(p),j=function(){for(var n=m.g(l),r=v,t=0;y>n;)n=(n+t)*g,r*=g,t=m.g(1);for(;n>=d;)n/=2,r/=2,t>>>=1;return(n+t)/r};return j.int32=function(){return 0|m.g(4)},j.quick=function(){return m.g(4)/4294967296},j.double=j,u(f(m.S),n),(c.pass||s||function(n,t,o,i){return i&&(i.S&&e(i,m),n.state=function(){return e(m,{})}),o?(r[h]=n,t):n})(j,S,"global"in c?c.global:this==r,c.state)}function o(n){var r,t=n.length,o=this,e=0,i=o.i=o.j=0,u=o.S=[];for(t||(n=[t++]);g>e;)u[e]=e++;for(e=0;g>e;e++)u[e]=u[i=S&i+n[e%t]+(r=u[e])],u[i]=r;(o.g=function(n){for(var r,t=0,e=o.i,i=o.j,u=o.S;n--;)r=u[e=S&e+1],t=t*g+u[S&(u[e]=u[i=S&i+r])+(u[i]=r)];return o.i=e,o.j=i,t})(g)}function e(n,r){return r.i=n.i,r.j=n.j,r.S=n.S.slice(),r}function i(n,r){var t,o=[],e=typeof n;if(r&&"object"==e)for(t in n)try{o.push(i(n[t],r-1))}catch(u){}return o.length?o:"string"==e?n:n+"\x00"}function u(n,r){for(var t,o=n+"",e=0;e<o.length;)r[S&e]=S&(t^=19*r[S&e])+o.charCodeAt(e++);return f(r)}function a(){try{var r;return c&&(r=c.randomBytes)?r=r(g):(r=new Uint8Array(g),(s.crypto||s.msCrypto).getRandomValues(r)),f(r)}catch(t){var o=s.navigator,e=o&&o.plugins;return[+new Date,s,e,s.screen,f(n)]}}function f(n){return String.fromCharCode.apply(0,n)}var c,s=this,g=256,l=6,p=52,h="random",v=r.pow(g,l),y=r.pow(2,p),d=2*y,S=g-1;r["seed"+h]=t,u(r.random(),n)}([],Math);
</script><tw-passagedata pid="1" name="Intro2" tags="Passage donotshowinventory" position="1200,401" size="100,100">{
<script>
Sound.play('ltc3AudioFiles/warm-ambient-drone-satellites.mp3');
</script>
(live:1.5s)[(if: time > 1.5s)[
<script>
var audio = new Audio('ltc3AudioFiles/book-close-the-matt-freeman.mp3');
audio.play();
</script>
](stop:)]
}
<==>
You shut this book, which is the literal, ten-thousandth book you’ve read. Decades in this grand, dark library have dulled the zest of words. You’re worn out. You’re sick of the books, words, and letters but you know that to leave the books behind, you’re going to have to bear with reading a little more. You’re going to have to strain your eyes and sharpen your focus for the final sprint. The end is in sight and no matter what, you’re going to find a way out of this coffin.
=><=
(link: "Next")[
<script>
var audio = new Audio('ltc3AudioFiles/next_button.mp3');
audio.volume = 0.8;
audio.play();
</script>
<script>Sound.fade(0,500);</script>
(set: $tmp2 to time)
(live: 0.5s)[
(set: $tmp to (time - $tmp2) / 1000)
(if: $tmp > 0.5)[
(go-to: "Character Select")
]
]
]
<!--[[Next->Character Select]]--></tw-passagedata><tw-passagedata pid="2" name="Title" tags="title donotshowinventory" position="1199,98" size="100,100">{
<script>
Sound.fade(0,500);
Sound.play("ltc3AudioFiles/intro-music-dramatic-uprising.mp3");
</script>
}
=><=
<small>This game is best played on Google Chrome with sound on.
Keep your anthology handy; have fun and explore, those who want to
finish the game can expect to spend about 40 minutes.
</small>
(link: "Start")[{
<script>
var audio = new Audio('ltc3AudioFiles/next_button.mp3');
audio.volume = 0.3;
audio.play();
</script>
<script>Sound.fade(0,1200);</script>
(set: $tmp2 to time)
(live: 0.1s)[
(set: $tmp to (time - $tmp2) / 1000)
(if: $tmp > 1)[
(go-to: "Intro1")
]
]
}]
(link: "Credits")[{
<script>
var audio = new Audio('ltc3AudioFiles/next_button.mp3');
audio.volume = 0.3;
audio.play();
</script>
<script>Sound.fade(0,1200);
Sound2.play('ltc3AudioFiles/erokia_timelift-rhodes-piano.mp3');
</script>
(set: $tmp2 to time)
(live: 0.1s)[
(set: $tmp to (time - $tmp2) / 1000)
(if: $tmp > 1)[
(go-to: "Credits1")
]
]
}]
<!--
You can find relevant L&T (link-repeat:"excerpts here")[(open-url:"resources/Anthology2017_5pages.pdf")].
-->
<!--[[Start->Intro1]]--></tw-passagedata><tw-passagedata pid="3" name="Character Select" tags="characterSelect donotshowinventory" position="1200,547" size="100,100">{
<script>
Sound.play('ltc3AudioFiles/erokia__ambient-wave-12-stretched.mp3');
</script>
}
<==>
No one cares about how they got here. Everyone cares about how they leave. What most overlook is the question of how they live. Tell me, how do //you// live? What do you seek most from life in the library? Hit confirm at the bottom once you've made your choice.
|=
(align:"=><=")[{
(link: "INSIGHT")[
<script>
var audio = new Audio('ltc3AudioFiles/button_click1.mp3');
audio.play();
</script>
(go-to: "cryptographerSelect")
]
}
|small>[The Wise]]
|=
(align:"=><=")[{
(link: "DIRECTION")[
<script>
var audio = new Audio('ltc3AudioFiles/button_click1.mp3');
audio.play();
</script>
(go-to: "explorerSelect")
]
}
|small>[The Daring]]
|=
(align:"=><=")[{
(link: "HARMONY")[
<script>
var audio = new Audio('ltc3AudioFiles/button_click1.mp3');
audio.play();
</script>
(go-to: "leaderSelect")
]
}
|small>[The Leader]]
|==|
<img src='ltc3Graphics/UnknownWebOptimized.png?raw=true'>
<!--[[leaderSelect]]-->
<!--[[cryptographerSelect]]-->
<!--[[explorerSelect]]--></tw-passagedata><tw-passagedata pid="4" name="cryptographer" tags="cryptographerProfile donotshowinventory" position="650,799" size="100,100">{
<script>
Sound.play('ltc3AudioFiles/erokia__ambient-wave-14-stretched.mp3');
</script>
(set:$playerCharacter to "cryptographer")
(set:$inv to $inv+(a:"codex"))
}
|subtitle>[**Seeker of**]
|title>[INSIGHT]
(align:"<==>")[You hold a codex which helps you with puzzles. At places where you can insert text, you will have an option to use the codex.]
{(link:"Tutorial")[
<script>
var audio = new Audio('ltc3AudioFiles/next_button.mp3');
audio.play();
</script>
(go-to:"TutorialPage")] (highly recommended) }
(link: "Start")[{
<script>
var audio = new Audio('ltc3AudioFiles/next_button.mp3');
audio.play();
</script>
(go-to:"StartingArea")
}]
<!--[[Tutorial->TutorialPage]]--></tw-passagedata><tw-passagedata pid="5" name="explorer" tags="explorerProfile donotshowinventory" position="800,801" size="100,100">{
<script>
Sound.play('ltc3AudioFiles/erokia__ambient-wave-14-stretched.mp3');
</script>
(set:$playerCharacter to "explorer")
(set:$inv to $inv + (a:"lantern"))
}
|subtitle>[**Seeker of**]
|title>[DIRECTION]
(align:"<==>")[With your lantern, rooms that are dark are immediately illuminated upon entering.]
{(link:"Tutorial")[
<script>
var audio = new Audio('ltc3AudioFiles/next_button.mp3');
audio.play();
</script>
(go-to:"TutorialPage")] (highly recommended) }
(link: "Start")[{
<script>
var audio = new Audio('ltc3AudioFiles/next_button.mp3');
audio.play();
</script>
(go-to:"StartingArea")
}]
<!--[[Tutorial->TutorialPage]]--></tw-passagedata><tw-passagedata pid="6" name="leader" tags="leaderProfile donotshowinventory" position="949,800" size="100,100">{
<script>
Sound.play('ltc3AudioFiles/erokia__ambient-wave-14-stretched.mp3');
</script>
}
(set:$playerCharacter to "leader")
(set:$inv to $inv + (a:"map"))
|subtitle>[**Seeker of**]
|title>[HARMONY]
(align:"<==>")[You have a map of this section of the library. Be sure to open it by clicking the inventory button at the bottom of any page when you start the game. Once in the inventory, press the map text to open the map.]
{(link:"Tutorial")[
<script>
var audio = new Audio('ltc3AudioFiles/next_button.mp3');
audio.play();
</script>
(go-to:"TutorialPage")] (highly recommended) }
(link: "Start")[{
<script>
var audio = new Audio('ltc3AudioFiles/next_button.mp3');
audio.play();
</script>
(go-to:"StartingArea")
}]
<!--[[Tutorial->TutorialPage]]--></tw-passagedata><tw-passagedata pid="7" name="cryptographerSelect" tags="cryptographer donotshowinventory" position="1102,700" size="100,100">
<==>
No one cares about how they got here. Everyone cares about how they leave. But what most overlook is the question to how they live. Tell me, how do //you// live? what do you seek most in your life at the library? Hit confirm at the bottom once you've made your choice.
|=
(align:"=><=")[{
INSIGHT
}
|small>[The Wise]]
=||=
(align:"=><=")[{
(link: "DIRECTION")[
<script>
var audio = new Audio('ltc3AudioFiles/button_click1.mp3');
audio.play();
</script>
(go-to: "explorerSelect")
]
}
|small>[The Daring]]
=|
(align:"=><=")[{
(link: "HARMONY")[
<script>
var audio = new Audio('ltc3AudioFiles/button_click1.mp3');
audio.play();
</script>
(go-to: "leaderSelect")
]
}
|small>[The Leader]]
|==|
<img src='ltc3Graphics/CrytographyWebOptimized.png?raw=true'>
=><=
Codes and hints are much more visible and decipherable to you. You start with a mysterious book of knowledge.
(link: "Confirm")[
{<script>
var audio = new Audio('ltc3AudioFiles/next_button.mp3');
audio.play();
</script>
<script>Sound.fade(0,1000);</script>
}
(set: $tmp2 to time)
(live: 0.2s)[
(set: $tmp to (time - $tmp2) / 1000)
(if: $tmp > 1.0)[
(go-to: "cryptographer")
]
]
]
<!--[[leaderSelect]]-->
<!--[[explorerSelect]]--></tw-passagedata><tw-passagedata pid="8" name="explorerSelect" tags="explorer donotshowinventory" position="1201,847" size="100,100">
<==>
No one cares about how they got here. Everyone cares about how they leave. But what most overlook is the question to how they live. Tell me, how do //you// live? what do you seek most in your life at the library? Hit confirm at the bottom once you've made your choice.
|=
(align:"=><=")[{
(link: "INSIGHT")[
<script>
var audio = new Audio('ltc3AudioFiles/button_click1.mp3');
audio.play();
</script>
(go-to: "cryptographerSelect")
]
}
|small>[The Wise]]
=||=
(align:"=><=")[{
DIRECTION
}
|small>[The Daring]]
=|
(align:"=><=")[{
(link: "HARMONY")[
<script>
var audio = new Audio('ltc3AudioFiles/button_click1.mp3');
audio.play();
</script>
(go-to: "leaderSelect")
]
}
|small>[The Leader]]
|==|
<img src='ltc3Graphics/ExplorerWebOptimized.png?raw=true'>
=><=
Exploring is in your blood. You carry your lantern which you’ve always relied on to light the way.
(link: "Confirm")[
{
<script>
var audio = new Audio('ltc3AudioFiles/next_button.mp3');
audio.play();
</script>
<script>Sound.fade(0,1000);</script>
}
(set: $tmp2 to time)
(live: 0.2s)[
(set: $tmp to (time - $tmp2) / 1000)
(if: $tmp > 1.0)[
(go-to: "explorer")
]
]
]
<!--[[cryptographerSelect]]-->
<!--[[leaderSelect]]--></tw-passagedata><tw-passagedata pid="9" name="leaderSelect" tags="leader donotshowinventory" position="1300,701" size="100,100">
<==>
No one cares about how they got here. Everyone cares about how they leave. But what most overlook is the question to how they live. Tell me, how do //you// live? what do you seek most in your life at the library? Hit confirm at the bottom once you've made your choice.
|=
(align:"=><=")[{
(link: "INSIGHT")[
<script>
var audio = new Audio('ltc3AudioFiles/button_click1.mp3');
audio.play();
</script>
(go-to: "cryptographerSelect")
]
}
|small>[The Wise]]
=||=
(align:"=><=")[{
(link: "DIRECTION")[
<script>
var audio = new Audio('ltc3AudioFiles/button_click1.mp3');
audio.play();
</script>
(go-to: "explorerSelect")
]
}
|small>[The Daring]]
=|
(align:"=><=")[{
HARMONY
}
|small>[The Leader]]
|==|
<img src='ltc3Graphics/LeaderWebOptimized.png?raw=true'>
=><=
You have a silver tongue and an inherit understanding of what makes people tick. Among the many strangers you've interacted with, one has graciously given you a map of the area.
(link: "Confirm")[
{<script>
var audio = new Audio('ltc3AudioFiles/next_button.mp3');
audio.play();
</script>
<script>Sound.fade(0,1000);</script>
}
(set: $tmp2 to time)
(live: 0.2s)[
(set: $tmp to (time - $tmp2) / 1000)
(if: $tmp > 1.0)[
(go-to: "leader")
]
]
]
<!--[[cryptographerSelect]]-->
<!--[[explorerSelect]]--></tw-passagedata><tw-passagedata pid="10" name="Intro1" tags="donotshowinventory Book" position="1200,251" size="100,100">{<style>
p.small {
font-family: merriweather;
font-size: 0.95em;
}
</style>
}{
<script>
var audio = new Audio('ltc3AudioFiles/book_opening.mp3');
audio.play();
</script>
}
(live: 1s)[(if: time > 0.5s)[(transition:"dissolve")[
<p class="small">
"Those who imagine it to be without limit forget that the possible number of books does have such a limit. I venture to suggest this solution to the ancient problem: The Library is unlimited and cyclical.
My solitude is gladdened by this elegant hope."</p>
|quote>[<center>Jorge Luis Borges</center>]](stop:)]]
|==|
=><=
{(live: 0.3s)[
(if: time>2s)[
(transition:"dissolve")[(css: "color:black")[Next]<nextButton|]
(click: ?nextButton)[{
<script>
var audio = new Audio('ltc3AudioFiles/next_button.mp3');
audio.volume = 0.8;
audio.play();
</script>
}
<!--fade out?-->
(go-to: "Intro2")]
{
<!--#F1654C-->
<!--(css: "color:#ce5039")[Translate]<hookToClick|
(click: ?hookToClick)[Blah]-->
}
(stop:)
]]
}
<!--[[Next->Intro2]]--></tw-passagedata><tw-passagedata pid="11" name="Startup" tags="startup" position="950,247" size="100,100">{
(set:$playerCharacter to "unknown")
(set: $inv to (a:))
(set: $quests to (a:))
<!--Setting NPC Relations-->
(set:$tellerRelation to "unvisited")
(set:$mechanicRelation to "unvisited")
(set:$fallenManRelation to "unvisited")
(set:$playwrightRelation to "unvisited")
(set:$basement to "closed")
(set:$FortuneTellerLocation to "1main")
(set:$tutorial to "stage1")
<!--Random Values-->
(set:$fortuneTellerBioAsked to false)
(set:$fortuneReadingAsked to false)
<!--Setting inventory values-->
(set:$invPage to 0)
(set:$invFruit to 0)
<!--Setting value of library objects-->
(set:$inputText to "")
(set:$linkText1 to "")
(set:$linkText2 to "")
(set:$linkText3 to "")
<!--Setting the lights and pages of the rooms-->
(set:$tutorialFruit to true)
(set:$1aFruit to true)
(set:$1bFruit to true)
(set:$1cFruit to false)
(set:$1dFruit to true)
(set:$1eFruit to true)
(set:$1fFruit to false)
(set:$1aPage to true)
(set:$1ePage to true)
(set:$1dPage to true)
<!--Setting unvisited status-->
(set:$1aVisited to false)
(set:$1aVisited to false)
(set:$1aVisited to false)
(set:$1aVisited to false)
(set:$1aVisited to false)
(set:$1aVisited to false)
(set:$1aVisited to false)
<!--Debugging-->
}</tw-passagedata><tw-passagedata pid="12" name="PrintingPress" tags="machine" position="2201,2199" size="100,100">{
<script>
Sound2.play('ltc3AudioFiles/printing-press-room.mp3');
</script>
|title>[THE PRINTING PRESS]}
{(set:$inputText to "")
(if:not($inv contains "blank book"))[
You push a blank sheet of paper into the machine
](else:)[
Your empty book is full of pages that fit into the machine. You tear one off and feed it in.
]}
<textarea rows="15" cols="75" name="fname">Printing press input</textarea>
(live:100ms)[{
<script>
setHarloweVariable('inputText', $('textarea')[0].value);
setHarloweVariable('hiddenText',$('textarea')[0].value.replace(/ /g, "").replace(/\n/g,"").toLowerCase());
</script>}
**//Your page reads://**
$inputText
]
---
{(link: "Take printed paper and walk away")[
<script>
var audio = new Audio('ltc3AudioFiles/pagerustle-tomoyo-ichijouji.mp3');
audio.play();
</script>
(go-to: "PrintingPressPage")]
}(if:$inv contains "repeater")[
(link:"Use repeater on the printing press and take paper")[
{
<script>
var audio = new Audio('ltc3AudioFiles/gear-clink-nebyoolae.mp3');
audio.play();
var audio2 = new Audio('ltc3AudioFiles/pagerustle-tomoyo-ichijouji.mp3');
audio2.play();
</script>
} (set:$repeaterInputText to $inputText)
(for:each _i,...(range:1,9))[
(set: $repeaterInputText to $repeaterInputText + $inputText)]
(set:$inputText to $repeaterInputText)
(set:$repeaterInputText to $hiddenText)
(for:each _i ,...(range:1,9))[
(set: $repeaterInputText to $repeaterInputText + $hiddenText)]
(set:$hiddenText to $repeaterInputText)
(go-to:"PrintingPressPage")
]
]
</tw-passagedata><tw-passagedata pid="13" name="Inventory" tags="donotshowinventory inventory" position="798,397" size="100,100">{
<script>
var audio = new Audio('ltc3AudioFiles/open_inventory__j1987__backpack.mp3');
audio.play();
</script>
}
(set:$inventoryLook to "Click on the inventory items above to examine them.")
|title>[**Inventory**]
Pieces of fruit you have: $invFruit
Number of pages you have: $invPage
(if: $inv's length <= 0) [You don't have anything in your inventory]
(elseif:$inv's length <= 2)[You don't have much, but everything you own is treasured.
Your key items are: (print: $inv.join(", "))]
(elseif:$inv's length <= 6)[You open your inventory which has recently grown larger.
Your key items are: (print: $inv.join(", "))]
(else:)[You have collected many useful items over your journey.
Your key items are: (print:$inv.join(", "))]
---
(live:0.5s)[$inventoryLook]
---
(link: "Return")[{
<script>
var audio = new Audio('ltc3AudioFiles/next_button.mp3');
audio.play();
</script>
}(go-to: (history:)'s last)
]
<!--ITEM INFO-->
<!--Quest Items-->
{(click:"fruit")[