forked from giorgiacrosilla/cena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1046 lines (958 loc) · 557 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
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">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>CENA</title>
<style title="Twine CSS">@keyframes appear{0%{opacity:0}to{opacity:1}}@keyframes fade-in-out{0%,to{opacity:0}50%{opacity:1}}@keyframes rumble{25%{top:-0.1em}75%{top:.1em}0%,to{top:0px}}@keyframes shudder{25%{left:.1em}75%{left:-0.1em}0%,to{left:0px}}@keyframes buoy{25%{top:.25em}75%{top:-0.25em}0%,to{top:0px}}@keyframes sway{25%{left:.25em}75%{left:-0.25em}0%,to{left:0px}}@keyframes pulse{0%{transform:scale(0, 0)}20%{transform:scale(1.2, 1.2)}40%{transform:scale(0.9, 0.9)}60%{transform:scale(1.05, 1.05)}80%{transform:scale(0.925, 0.925)}to{transform:scale(1, 1)}}@keyframes zoom-in{0%{transform:scale(0, 0)}to{transform:scale(1, 1)}}@keyframes shudder-in{0%,to{transform:translateX(0em)}5%,25%,45%{transform:translateX(-1em)}15%,35%,55%{transform:translateX(1em)}65%{transform:translateX(-0.6em)}75%{transform:translateX(0.6em)}85%{transform:translateX(-0.2em)}95%{transform:translateX(0.2em)}}@keyframes rumble-in{0%,to{transform:translateY(0em)}5%,25%,45%{transform:translateY(-1em)}15%,35%,55%{transform:translateY(1em)}65%{transform:translateY(-0.6em)}75%{transform:translateY(0.6em)}85%{transform:translateY(-0.2em)}95%{transform:translateY(0.2em)}}@keyframes fidget{0%,8.1%,82.1%,31.1%,38.1%,44.1%,40.1%,47.1%,74.1%,16.1%,27.1%,72.1%,24.1%,95.1%,6.1%,36.1%,20.1%,4.1%,91.1%,14.1%,87.1%,to{left:0px;top:0px}8%,82%,31%,38%,44%{left:-1px}40%,47%,74%,16%,27%{left:1px}72%,24%,95%,6%,36%{top:-1px}20%,4%,91%,14%,87%{top:1px}}@keyframes slide-right{0%{transform:translateX(-100vw)}}@keyframes slide-left{0%{transform:translateX(100vw)}}@keyframes slide-up{0%{transform:translateY(100vh)}}@keyframes slide-down{0%{transform:translateY(-100vh)}}@keyframes fade-right{0%{opacity:0;transform:translateX(-1em)}to{opacity:1}}@keyframes fade-left{0%{opacity:0;transform:translateX(1em)}to{opacity:1}}@keyframes fade-up{0%{opacity:0;transform:translateY(1em)}to{opacity:1}}@keyframes fade-down{0%{opacity:0;transform:translateY(-1em)}to{opacity:1}}@keyframes flicker{0%,29%,31%,63%,65%,77%,79%,86%,88%,91%,93%{opacity:0}30%{opacity:.2}64%{opacity:.4}78%{opacity:.6}87%{opacity:.8}92%,to{opacity:1}}@keyframes blur{0%{filter:blur(2rem);opacity:0}25%{opacity:1}to{filter:blur(0rem);opacity:1}}.dom-debug-mode tw-story,.dom-debug-mode tw-passage,.dom-debug-mode tw-sidebar,.dom-debug-mode tw-include,.dom-debug-mode tw-hook,.dom-debug-mode tw-expression,.dom-debug-mode tw-link,.dom-debug-mode tw-dialog,.dom-debug-mode tw-columns,.dom-debug-mode tw-column,.dom-debug-mode tw-align{outline:1px solid #f5a3da;min-height:32px;display:block !important}.dom-debug-mode tw-story::before,.dom-debug-mode tw-passage::before,.dom-debug-mode tw-sidebar::before,.dom-debug-mode tw-include::before,.dom-debug-mode tw-hook::before,.dom-debug-mode tw-expression::before,.dom-debug-mode tw-link::before,.dom-debug-mode tw-dialog::before,.dom-debug-mode tw-columns::before,.dom-debug-mode tw-column::before,.dom-debug-mode tw-align::before{position:absolute;top:0;left:0;height:16px;background-color:#f5a3da;color:#000;font-size:16px;font-weight:normal;font-style:normal;font-family:monospace;display:inline-block;line-height:100%;white-space:pre;z-index:999997}.dom-debug-mode tw-story:hover,.dom-debug-mode tw-passage:hover,.dom-debug-mode tw-sidebar:hover,.dom-debug-mode tw-include:hover,.dom-debug-mode tw-hook:hover,.dom-debug-mode tw-expression:hover,.dom-debug-mode tw-link:hover,.dom-debug-mode tw-dialog:hover,.dom-debug-mode tw-columns:hover,.dom-debug-mode tw-column:hover,.dom-debug-mode tw-align:hover{outline:1px solid #fc9}.dom-debug-mode tw-story:hover::before,.dom-debug-mode tw-passage:hover::before,.dom-debug-mode tw-sidebar:hover::before,.dom-debug-mode tw-include:hover::before,.dom-debug-mode tw-hook:hover::before,.dom-debug-mode tw-expression:hover::before,.dom-debug-mode tw-link:hover::before,.dom-debug-mode tw-dialog:hover::before,.dom-debug-mode tw-columns:hover::before,.dom-debug-mode tw-column:hover::before,.dom-debug-mode tw-align:hover::before{background-color:#fc9;transition:background-color 1s}.dom-debug-mode tw-passage,.dom-debug-mode tw-include,.dom-debug-mode tw-hook,.dom-debug-mode tw-expression,.dom-debug-mode tw-link,.dom-debug-mode tw-dialog,.dom-debug-mode tw-columns,.dom-debug-mode tw-column,.dom-debug-mode tw-align{padding:1em;margin:0}.dom-debug-mode tw-story::before{content:'<tw-story tags="' attr(tags) '">'}.dom-debug-mode tw-passage::before{top:-16px;content:'<tw-passage tags="' attr(tags) '">'}.dom-debug-mode tw-sidebar::before{top:-16px;content:"<tw-sidebar>"}.dom-debug-mode tw-hook::before{content:'<tw-hook name="' attr(name) '">'}.dom-debug-mode tw-expression::before{content:'<tw-expression name="' attr(name) '">'}.dom-debug-mode tw-link::before{content:'<tw-link name="' attr(name) '">'}.dom-debug-mode tw-dialog::before{content:"<tw-dialog>"}.dom-debug-mode tw-columns::before{content:"<tw-columns>"}.dom-debug-mode tw-column::before{content:"<tw-column>"}.dom-debug-mode tw-align::before{content:"<tw-align>"}.dom-debug-mode tw-include::before{content:'<tw-include type="' attr(type) '" name="' attr(name) '">'}tw-open-button[goto]{display:none}.debug-mode tw-open-button[replay],.debug-mode tw-open-button[goto]{display:inline}.debug-mode tw-expression{display:inline-block !important}.debug-mode tw-expression[type=variable]::after{font-size:.8rem;padding-left:.2rem;padding-right:.2rem;vertical-align:top;content:"$" attr(name)}.debug-mode tw-expression[type=tempVariable]::after{font-size:.8rem;padding-left:.2rem;padding-right:.2rem;vertical-align:top;content:"_" attr(name)}.debug-mode tw-expression[return=boolean]{background-color:rgba(179,179,179,.2)}.debug-mode tw-expression[return=array]{background-color:rgba(255,102,102,.2)}.debug-mode tw-expression[return=dataset]{background-color:rgba(255,128,0,.2)}.debug-mode tw-expression[return=number]{background-color:rgba(255,179,102,.2)}.debug-mode tw-expression[return=datamap]{background-color:rgba(255,255,102,.2)}.debug-mode tw-expression[return=changer]{background-color:rgba(179,255,102,.2)}.debug-mode tw-expression[return=lambda]{background-color:rgba(102,255,102,.2)}.debug-mode tw-expression[return=hookname]{background-color:rgba(102,255,204,.2)}.debug-mode tw-expression[return=string]{background-color:rgba(102,255,255,.2)}.debug-mode tw-expression[return=datatype]{background-color:rgba(102,153,255,.2)}.debug-mode tw-expression[return=gradient],.debug-mode tw-expression[return=colour]{background-color:rgba(204,102,255,.2)}.debug-mode tw-expression[return=instant],.debug-mode tw-expression[return=macro]{background-color:rgba(240,117,199,.2)}.debug-mode tw-expression[return=command]{background-color:rgba(153,153,255,.2)}.debug-mode tw-expression.false{background-color:rgba(255,0,0,.2) !important}.debug-mode tw-expression[type=macro]::before{content:"(" attr(name) ":)";padding:0 .5rem;font-size:1rem;vertical-align:middle;line-height:normal;background-color:inherit;border:1px solid rgba(255,255,255,.5)}.debug-mode tw-expression[title]:not([title=""]){cursor:help}.debug-mode tw-hook{background-color:rgba(0,85,255,.1) !important}.debug-mode tw-hook::before{font-size:.8rem;padding-left:.2rem;padding-right:.2rem;vertical-align:top;content:"["}.debug-mode tw-hook::after{font-size:.8rem;padding-left:.2rem;padding-right:.2rem;vertical-align:top;content:"]"}.debug-mode tw-hook[name]::after{font-size:.8rem;padding-left:.2rem;padding-right:.2rem;vertical-align:top;content:"]<" attr(name) "|"}.debug-mode tw-pseudo-hook{background-color:rgba(255,170,0,.1) !important}.debug-mode tw-collapsed::before{font-size:.8rem;padding-left:.2rem;padding-right:.2rem;vertical-align:top;content:"{"}.debug-mode tw-collapsed::after{font-size:.8rem;padding-left:.2rem;padding-right:.2rem;vertical-align:top;content:"}"}.debug-mode tw-verbatim::before,.debug-mode tw-verbatim::after{font-size:.8rem;padding-left:.2rem;padding-right:.2rem;vertical-align:top;content:"`"}.debug-mode tw-align[style*="text-align: center"]{background:linear-gradient(to right, hsla(14deg, 100%, 87%, 0) 0%, hsla(14deg, 100%, 87%, 0.25) 50%, hsla(14deg, 100%, 87%, 0) 100%)}.debug-mode tw-align[style*="text-align: left"]{background:linear-gradient(to right, hsla(14deg, 100%, 87%, 0.25) 0%, hsla(14deg, 100%, 87%, 0) 100%)}.debug-mode tw-align[style*="text-align: right"]{background:linear-gradient(to right, hsla(14deg, 100%, 87%, 0) 0%, hsla(14deg, 100%, 87%, 0.25) 100%)}.debug-mode tw-column{background-color:rgba(189,228,255,.2)}.debug-mode tw-enchantment{animation:enchantment .5s infinite;border:1px solid}.debug-mode tw-link::after,.debug-mode tw-broken-link::after{font-size:.8rem;padding-left:.2rem;padding-right:.2rem;vertical-align:top;content:attr(passage-name)}.debug-mode tw-include{background-color:rgba(204,128,51,.1)}.debug-mode tw-include::before{font-size:.8rem;padding-left:.2rem;padding-right:.2rem;vertical-align:top;content:attr(type) ' "' attr(name) '"'}.debug-dialogs tw-backdrop:not(.eval-replay):not(.harlowe-crash){pointer-events:none;opacity:.1}tw-eval-replay tw-eval-code,tw-eval-replay tw-eval-explanation{max-height:20vh;overflow:auto;margin:10px auto}tw-eval-replay tw-eval-code{display:block;font-family:monospace;padding-bottom:1ex;border-bottom:2px solid gray}tw-eval-replay tw-eval-explanation{display:block;text-align:center}tw-eval-replay tw-eval-explanation>code{white-space:pre-wrap}tw-eval-replay tw-eval-explanation>code.from-block{width:40%;display:inline-block;text-align:left;max-height:4em;overflow-wrap:anywhere;overflow-y:scroll}tw-eval-replay tw-eval-explanation>code.from-block~.to-desc{width:calc(40% - 2em);margin-left:2em;display:inline-block}tw-eval-replay tw-eval-explanation>code.from-block+span::after{content:"..."}tw-eval-replay tw-eval-explanation>code.from-inline{text-align:right}tw-eval-replay tw-eval-explanation>:nth-child(2){white-space:pre}tw-eval-replay tw-eval-explanation>.to-desc{text-align:left}tw-eval-replay tw-eval-explanation>table{width:100%;margin-top:1em}tw-eval-replay tw-eval-explanation>table td{white-space:pre-wrap !important;word-wrap:anywhere}tw-eval-replay tw-eval-reason{text-align:center;font-size:80%;font-style:italic;display:block}tw-eval-replay tw-eval-it{text-align:center;font-size:80%;display:block}tw-eval-replay tw-dialog-links{display:-ms-flexbox;display:flex;-ms-flex-pack:distribute;justify-content:space-around}@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:14em;min-height:1em;padding:0em .5em .5em 1em;font-size:1.25em;font-family:sans-serif;color:#262626;background-color:#fff;border-left:solid #262626 2px;border-top:solid #262626 2px;border-top-left-radius:.5em;opacity:1}tw-debugger.fade-panel:not(:hover){opacity:.33}tw-debugger.theme-dark{color:#d9d9d9;background-color:#000}tw-debugger.theme-dark{border-color:#d9d9d9 rgba(0,0,0,0) rgba(0,0,0,0) #d9d9d9}tw-debugger select{margin-right:1em;width:12em}tw-debugger button,tw-debugger tw-link{border-radius:3px;border:solid #999 1px;margin:auto 4px;color:#262626;background-color:#fff;cursor:pointer}tw-debugger button.enabled,tw-debugger tw-link.enabled{color:#000;background-color:#d9d9d9;box-shadow:inset #999 3px 5px .5em}tw-debugger.theme-dark button,tw-debugger.theme-dark tw-link{color:#d9d9d9;background-color:#000;border-color:#666}tw-debugger.theme-dark button.enabled,tw-debugger.theme-dark tw-link.enabled{color:#e6e6e6;background-color:#424242;box-shadow:inset #666 3px 5px .5em}tw-debugger button{font-size:1em;overflow-x:hidden;text-overflow:ellipsis;white-space:pre}tw-debugger tw-link{font-size:1.25em;border-radius:16px;border-style:solid;border-width:2px;text-align:center;padding:0px 8px;display:block}tw-debugger tw-link:hover{border-color:#262626;color:#262626}tw-debugger.theme-dark tw-link:hover{border-color:#d9d9d9;color:#d9d9d9}tw-debugger tw-dialog{background-color:#fff;color:#000;font-size:1.25em}tw-debugger.theme-dark tw-dialog{background-color:#000;color:#e6e6e6}tw-debugger .panel{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:absolute;bottom:100%;left:-2px;right:0;padding:1em;overflow-y:scroll;overflow-x:hidden;border:inherit;box-sizing:content-box;background-color:#fff;border-bottom:solid #999 2px;border-top-left-radius:.5em;border-bottom-left-radius:.5em;font-size:.8em}tw-debugger .panel:empty,tw-debugger .panel[hidden]{display:none}tw-debugger.theme-dark .panel{background-color:#000;border-bottom-color:#666}tw-debugger .panel-source .panel-row-buttons{width:2rem}tw-debugger .panel-source .source-tags{width:20%;font-style:italic}tw-debugger .panel-row-source td{font-family:monospace;font-size:1rem;white-space:pre-wrap;overflow-wrap:anywhere;max-height:8rem;padding:1rem}tw-debugger .panel-rows{width:100%;overflow-x:scroll}tw-debugger .panel-rows>*{display:table-row}tw-debugger .panel-rows>div:nth-of-type(2n){background-color:#e6e6e6}tw-debugger .panel-tools .panel-rows>*,tw-debugger .panel-options .panel-rows>*{margin-top:.4rem;display:block}tw-debugger.theme-dark .panel-rows>div:nth-of-type(2n){background-color:#212121}tw-debugger .panel-row-buttons{text-align:right}tw-debugger .panel-variables .panel-rows:empty::before{content:"~ No variables ~";font-style:italic;color:#575757;text-align:center}tw-debugger .panel-enchantments .panel-rows:empty::before{content:"~ No enchantments ~";font-style:italic;color:#575757;text-align:center}tw-debugger .panel-errors .panel-rows:empty::before{content:"~ No errors... for now. ~";font-style:italic;color:#575757;text-align:center}tw-debugger .panel-errors .panel-rows:empty+.panel-errors-bottom{display:none}tw-debugger.theme-dark .panel-variables .panel-rows:empty::before,tw-debugger.theme-dark .panel-enchantments .panel-rows:empty::before,tw-debugger.theme-dark .panel-errors .panel-rows:empty::before{color:#a8a8a8}tw-debugger .panel-rows:empty+.panel-variables-bottom{display:none}tw-debugger th[data-col]{text-decoration:underline;cursor:pointer}tw-debugger th[data-col][data-order=asc]::after{content:"↓"}tw-debugger th[data-col][data-order=desc]::after{content:"↑"}tw-debugger .panel-storylets:not(.panel-exclusive) .storylet-exclusive,tw-debugger .panel-storylets:not(.panel-urgent) .storylet-urgent{display:none}tw-debugger .storylet-exclusive,tw-debugger .storylet-urgent,tw-debugger .storylet-open{text-align:center}tw-debugger .panel-variables-bottom{padding-top:5px}tw-debugger .enchantment-row{min-height:1.5em}tw-debugger .variable-path{opacity:.4}tw-debugger .temporary-variable-scope,tw-debugger .enchantment-local{font-family:sans-serif;font-weight:normal;opacity:.8;font-size:.75em}tw-debugger .temporary-variable-scope:not(:empty)::before,tw-debugger .enchantment-local:not(:empty)::before{content:" in "}tw-debugger .variable-name,tw-debugger .enchantment-name{font-family:monospace;font-weight:bold}tw-debugger .variable-type{color:#575757;font-weight:normal;text-overflow:ellipsis;overflow:hidden;max-width:10em}tw-debugger.theme-dark .variable-type{color:#a8a8a8}tw-debugger .error-row{display:table-row;background-color:rgba(230,101,204,.3)}tw-debugger .error-row:nth-of-type(2n){background-color:rgba(237,145,219,.3)}tw-debugger .error-row>*{display:table-cell;padding:.25em .5em}tw-debugger .error-row .error-message[title]:not([title=""]){cursor:help}tw-debugger .error-row .error-passage{color:#575757}tw-debugger.theme-dark .error-row .error-passage{color:#a8a8a8}tw-debugger .storylet-row{background-color:rgba(193,240,225,.3)}tw-debugger .storylet-row:nth-child(2n){background-color:rgba(152,231,204,.3)}tw-debugger .storylet-row.storylet-closed{font-style:italic;background-color:#fff}tw-debugger .storylet-row.storylet-closed:nth-child(2n){background-color:#e6e6e6}tw-debugger .storylet-row.storylet-closed>:not(.storylet-lambda){opacity:.6}.storylet-error tw-debugger .storylet-row{background-color:rgba(230,101,204,.3)}.storylet-error tw-debugger .storylet-row:nth-child(2n){background-color:rgba(237,145,219,.3)}tw-debugger .storylet-row .storylet-name,tw-debugger .storylet-row .storylet-value{display:inline-block;width:50%}tw-debugger .storylet-row .storylet-lambda{font-family:monospace;font-size:1rem;white-space:pre-wrap;overflow-wrap:anywhere}tw-debugger.theme-dark .storylet-row.storylet-closed{background-color:#000}tw-debugger.theme-dark .storylet-row.storylet-closed:nth-child(2n){background-color:#212121}tw-debugger .tabs{padding-bottom:.5em}tw-debugger .tab{border-radius:0px 0px .5em .5em;border-top:none;top:-2px}tw-debugger .resizer-h{position:absolute;height:14em;border-left:2px solid #999;border-right:2px solid #999;top:10px;left:4px;width:8px;cursor:ew-resize}tw-debugger.theme-dark .resizer-h{border-color:rgba(0,0,0,0) #666}tw-debugger .resizer-v{position:absolute;height:8px;border-top:2px solid #999;border-bottom:2px solid #999;margin-bottom:4px;top:4px;left:10px;width:95%;cursor:ns-resize;box-sizing:border-box}tw-debugger.theme-dark .resizer-v{border-color:#666 rgba(0,0,0,0)}tw-debugger mark{color:inherit;background-color:rgba(101,230,230,.3) !important}tw-dialog{z-index:999997;border:#fff solid 2px;padding:2em;color:#fff;background-color:#000;display:block}@media(min-width: 576px){tw-dialog{max-width:50vw}}tw-dialog input[type=text]{font-size:inherit;width:100%;border:solid #fff !important}tw-dialog-links{text-align:right;display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end}tw-backdrop{z-index:999996;position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.8);display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}tw-backdrop~tw-backdrop{display:none}tw-link,.enchantment-link{cursor:pointer;color:#4169e1;font-weight:bold;text-decoration:none;transition:color .2s ease-in-out}tw-passage [style^=color] tw-link:not(:hover),tw-passage [style*=" color"] tw-link:not(:hover),tw-passage [style^=color][hover=true] tw-link:hover,tw-passage [style*=" color"][hover=true] tw-link:hover,tw-passage [style^=color] .enchantment-link:not(:hover),tw-passage [style*=" color"] .enchantment-link:not(:hover),tw-passage [style^=color][hover=true] .enchantment-link:hover,tw-passage [style*=" color"][hover=true] .enchantment-link:hover{color:inherit}tw-link:hover,.enchantment-link:hover{color:#00bfff}tw-link:active,.enchantment-link:active{color:#dd4b39}.visited{color:#6941e1}tw-passage [style^=color] .visited:not(:hover),tw-passage [style*=" color"] .visited:not(:hover),tw-passage [style^=color][hover=true] .visited:hover,tw-passage [style*=" color"][hover=true] .visited:hover{color:inherit}.visited:hover{color:#e3e}tw-broken-link{color:#933;border-bottom:2px solid #933;cursor:not-allowed}tw-passage [style^=color] tw-broken-link:not(:hover),tw-passage [style*=" color"] tw-broken-link:not(:hover),tw-passage [style^=color][hover=true] tw-broken-link:hover,tw-passage [style*=" color"][hover=true] tw-broken-link:hover{color:inherit}tw-link.enchantment-mouseover,.link.enchantment-mouseover,tw-expression.enchantment-mouseover>tw-link{color:inherit;font-weight:inherit;transition:none;cursor:inherit;border-bottom:2px dashed #999}tw-link.enchantment-mouseover:hover,tw-link.enchantment-mouseover:active,.link.enchantment-mouseover:hover,.link.enchantment-mouseover:active,tw-expression.enchantment-mouseover>tw-link:hover,tw-expression.enchantment-mouseover>tw-link:active{color:inherit}tw-link.enchantment-mouseover.enchantment-button,.link.enchantment-mouseover.enchantment-button,tw-expression.enchantment-mouseover>tw-link.enchantment-button{border-style:dashed}tw-link.enchantment-mouseout,.link.enchantment-mouseout,tw-expression.enchantment-mouseout>tw-link{color:inherit;font-weight:inherit;transition:none;cursor:inherit;border:rgba(64,149,191,.6) 1px solid;border-radius:.2em}tw-link.enchantment-mouseout:hover,tw-link.enchantment-mouseout:active,.link.enchantment-mouseout:hover,.link.enchantment-mouseout:active,tw-expression.enchantment-mouseout>tw-link:hover,tw-expression.enchantment-mouseout>tw-link:active{color:inherit}tw-link.enchantment-mouseout:hover,.link.enchantment-mouseout:hover,tw-expression.enchantment-mouseout>tw-link:hover{background-color:rgba(175,197,207,.75);border:rgba(0,0,0,0) 1px solid}tw-link.enchantment-dblclick,.link.enchantment-dblclick,tw-expression.enchantment-dblclick>tw-link{color:inherit;font-weight:inherit;transition:none;cursor:inherit;cursor:pointer;border:2px solid #999;border-radius:0}tw-link.enchantment-dblclick:hover,tw-link.enchantment-dblclick:active,.link.enchantment-dblclick:hover,.link.enchantment-dblclick:active,tw-expression.enchantment-dblclick>tw-link:hover,tw-expression.enchantment-dblclick>tw-link:active{color:inherit}tw-link.enchantment-dblclick:active,.link.enchantment-dblclick:active,tw-expression.enchantment-dblclick>tw-link:active{background-color:#999}tw-link.enchantment-button,.link.enchantment-button,.enchantment-button:not(.link) tw-link,.enchantment-button:not(.link) .link{border-radius:16px;border-style:solid;border-width:2px;text-align:center;padding:0px 8px;display:block}.enchantment-button{display:block}.enchantment-clickblock{cursor:pointer;width:100%;height:100%;display:block}.enchantment-clickblock>:not(tw-enchantment)::after{content:"";width:100%;height:100%;top:0;left:0;display:block;box-sizing:border-box;position:absolute;pointer-events:none;color:rgba(65,105,225,.5);transition:color .2s ease-in-out}.enchantment-clickblock>:not(tw-enchantment):hover::after{color:rgba(0,191,255,.5)}.enchantment-clickblock>:not(tw-enchantment):active::after{color:rgba(222,78,59,.5)}.enchantment-clickblock>:not(tw-enchantment)::after{box-shadow:inset 0 0 0 .5vmax}.enchantment-clickblock>tw-passage::after,.enchantment-clickblock>tw-sidebar::after{box-shadow:0 0 0 .5vmax}.enchantment-mouseoverblock>:not(tw-enchantment)::after{content:"";width:100%;height:100%;top:0;left:0;display:block;box-sizing:border-box;position:absolute;pointer-events:none;border:2px dashed #999}.enchantment-mouseoutblock>:not(tw-enchantment)::after{content:"";width:100%;height:100%;top:0;left:0;display:block;box-sizing:border-box;position:absolute;pointer-events:none;border:rgba(64,149,191,.6) 2px solid}.enchantment-mouseoutblock:hover>:not(tw-enchantment)::after{content:"";width:100%;height:100%;top:0;left:0;display:block;box-sizing:border-box;position:absolute;pointer-events:none;background-color:rgba(175,197,207,.75);border:rgba(0,0,0,0) 2px solid;border-radius:.2em}.enchantment-dblclickblock>:not(tw-enchantment)::after{content:"";width:100%;height:100%;top:0;left:0;display:block;box-sizing:border-box;position:absolute;pointer-events:none;cursor:pointer;border:2px solid #999}tw-dialog-links{padding-top:1.5em}tw-dialog-links tw-link{border-radius:16px;border-style:solid;border-width:2px;text-align:center;padding:0px 8px;display:block;display:inline-block}html{margin:0;height:100%;overflow-x:hidden}*,:before,:after{position:relative;box-sizing:inherit}body{margin:0;height:100%}tw-storydata{display:none}tw-story{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;font:100% Georgia,serif;box-sizing:border-box;width:100%;min-height:100%;font-size:1.5em;line-height:1.5em;padding:5% 5%;overflow:hidden;background-color:#000;color:#fff}tw-story [style*=content-box] *{box-sizing:border-box}@media(min-width: 576px){tw-story{padding:5% 20%}}tw-story tw-consecutive-br{display:block;height:1.6ex;visibility:hidden}tw-story select{background-color:rgba(0,0,0,0);font:inherit;border-style:solid;padding:2px}tw-story select:not([disabled]){color:inherit}tw-story textarea{resize:none;background-color:rgba(0,0,0,0);font:inherit;color:inherit;border-style:none;padding:2px}tw-story input[type=text]{background-color:rgba(0,0,0,0);font:inherit;color:inherit;border-style:none}tw-story input[type=checkbox]{transform:scale(1.5);margin:0 .5em .5em .5em;vertical-align:middle}tw-story tw-noscript{animation:appear .8s}tw-passage{display:block}tw-sidebar{text-align:center;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}@media(min-width: 576px){tw-sidebar{left:-5em;width:3em;position:absolute;-ms-flex-direction:column;flex-direction:column}tw-enchantment[style*=width]>tw-sidebar{width:inherit}}tw-icon{display:inline-block;margin:.5em 0;font-size:66px;font-family:"Verdana",sans-serif}tw-icon[alt]{opacity:.2;cursor:pointer}tw-icon[alt]:hover{opacity:.4}tw-icon[data-label]::after{font-weight:bold;content:attr(data-label);font-size:20px;bottom:-20px;left:-50%;white-space:nowrap}tw-meter{display:block}tw-hook:empty,tw-expression:empty{display:none}tw-error{display:inline-block;border-radius:.2em;padding:.2em;font-size:1rem;cursor:help;white-space:pre-wrap}tw-error.error{background-color:rgba(223,58,190,.6);color:#fff}tw-error.warning{background-color:rgba(223,140,58,.6);color:#fff;display:none}.debug-mode tw-error.warning{display:inline}tw-error-explanation{display:block;font-size:.8rem;line-height:1rem}tw-open-button,tw-folddown{cursor:pointer;line-height:0em;border-radius:4px;border:1px solid rgba(255,255,255,.5);font-size:.8rem;margin:0 .2rem;padding:3px;white-space:pre}tw-folddown::after{content:"▶"}tw-folddown.open::after{content:"▼"}tw-open-button[replay]{display:none}tw-error tw-open-button,tw-eval-replay tw-open-button{display:inline !important}tw-open-button::after{content:attr(label)}tw-notifier{border-radius:.2em;padding:.2em;font-size:1rem;background-color:rgba(223,182,58,.4);display:none}.debug-mode tw-notifier{display:inline}tw-notifier::before{content:attr(message)}tw-colour{border:1px solid #000;display:inline-block;width:1em;height:1em}tw-enchantment:empty{display:none}h1{font-size:3em}h2{font-size:2.25em}h3{font-size:1.75em}h1,h2,h3,h4,h5,h6{line-height:1em;margin:.3em 0 .6em 0}pre{font-size:1rem;line-height:initial}small{font-size:70%}big{font-size:120%}mark{color:rgba(0,0,0,.6);background-color:#ff9}ins{color:rgba(0,0,0,.6);background-color:rgba(255,242,204,.5);border-radius:.5em;box-shadow:0em 0em .2em #ffe699;text-decoration:none}center{text-align:center;margin:0 auto;width:60%}blink{text-decoration:none;animation:fade-in-out 1s steps(1, end) infinite alternate}tw-align{display:block}tw-columns{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:justify;justify-content:space-between}.transition-in{animation:appear 0ms step-start}.transition-out{animation:appear 0ms step-end}[data-t8n^=dissolve].transition-in,[data-t8n=fade].transition-in{animation:appear .8s}[data-t8n^=dissolve].transition-out,[data-t8n=fade].transition-out{animation:appear .8s reverse}[data-t8n^=shudder].transition-in{display:inline-block !important;animation:shudder-in .8s}[data-t8n^=shudder].transition-out{display:inline-block !important;animation:shudder-in .8s reverse}[data-t8n^=rumble].transition-in{display:inline-block !important;animation:rumble-in .8s}[data-t8n^=rumble].transition-out{display:inline-block !important;animation:rumble-in .8s reverse}[data-t8n^=pulse].transition-in{animation:pulse .8s;display:inline-block !important}[data-t8n^=pulse].transition-out{animation:pulse .8s reverse;display:inline-block !important}[data-t8n^=zoom].transition-in{animation:zoom-in .8s;display:inline-block !important}[data-t8n^=zoom].transition-out{animation:zoom-in .8s reverse;display:inline-block !important}[data-t8n^=blur].transition-in{animation:blur .8s;display:inline-block !important}[data-t8n^=blur].transition-out{animation:blur .8s reverse;display:inline-block !important}[data-t8n^=slideleft].transition-in{animation:slide-left .8s;display:inline-block !important}[data-t8n^=slideleft].transition-out{animation:slide-right .8s reverse;display:inline-block !important}[data-t8n^=slideright].transition-in{animation:slide-right .8s;display:inline-block !important}[data-t8n^=slideright].transition-out{animation:slide-left .8s reverse;display:inline-block !important}[data-t8n^=slideup].transition-in{animation:slide-up .8s;display:inline-block !important}[data-t8n^=slideup].transition-out{animation:slide-down .8s reverse;display:inline-block !important}[data-t8n^=slidedown].transition-in{animation:slide-down .8s;display:inline-block !important}[data-t8n^=slidedown].transition-out{animation:slide-up .8s reverse;display:inline-block !important}[data-t8n^=fadeleft].transition-in{animation:fade-left .8s;display:inline-block !important}[data-t8n^=fadeleft].transition-out{animation:fade-right .8s reverse;display:inline-block !important}[data-t8n^=faderight].transition-in{animation:fade-right .8s;display:inline-block !important}[data-t8n^=faderight].transition-out{animation:fade-left .8s reverse;display:inline-block !important}[data-t8n^=fadeup].transition-in{animation:fade-up .8s;display:inline-block !important}[data-t8n^=fadeup].transition-out{animation:fade-down .8s reverse;display:inline-block !important}[data-t8n^=fadedown].transition-in{animation:fade-down .8s;display:inline-block !important}[data-t8n^=fadedown].transition-out{animation:fade-up .8s reverse;display:inline-block !important}[data-t8n^=flicker].transition-in{animation:flicker .8s}[data-t8n^=flicker].transition-out{animation:flicker .8s reverse}
</style>
</head>
<body>
<tw-story><noscript><tw-noscript>JavaScript needs to be enabled to play CENA.</tw-noscript></noscript></tw-story>
<tw-storydata name="CENA" startnode="27" creator="Twine" creator-version="2.6.2" format="Harlowe" format-version="3.3.5" ifid="81BE0AE5-07E1-4622-9F0F-C778087AAB25" options="" tags="" zoom="1" hidden><style role="stylesheet" id="twine-user-stylesheet" type="text/twine-css">@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
video {
position: fixed;
left: 60%;
top: 50%;
transform: translate(-60%, -50%);
min-width: 100%;
min-height: 100%;
}
tw-story[tags="place"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/nebraska.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="start"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/immagine1.jpg?raw=true');
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="presentazione"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/thumbnail_IMG_3100.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="arrival"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/big%20drum%20sees%20Capellini.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="arrivo"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/capellini%20see%20the%20village.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="mappa"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/thumbnail_IMG_3099.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="users"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/how%20many%20users.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="capellini"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/mirror_capellini.png?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="indiano"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/mirror_bigdrum.png?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="bambini"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/BD%20sees%20Cap%20and%20kid.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="children"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/BD%20sees%20Cap%20and%20kid.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="talking"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/capellini%20+%20big%20drum%20talking.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="portrait"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/portrait.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="telescope1"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/telescope.png?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="telescope"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/1.6%20-%201.16%20-%20native%20tries%20telescope.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="pipa"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/pipe.png?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="rana"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/frog.png?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="tents"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/visit%20tents.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-story[tags="finalbd"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/final%20BD.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
.health-3 {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/frog.png?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
.health-2 {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/mocassin.png?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
.health-1 {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/pipe.png?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
.health-4 {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/mocassin.png?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-include[type="startup"], tw-include[title="Health Based Styling"] {
display: none;
}
tw-story[tags="diario"] {
background-image: url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/diario.jpg?raw=true');
background-position: 0% 0%;
background-size: 100% 100%;
color: black;
font-style: italic;
}
tw-passage {
position:absolute;
left: 57%;
right:3%;
top:5%;
bottom:5%;
font-size: 18px;
}
.box-container {
position:absolute;
left: 0%;
right:0%;
top:0%;
bottom:0%;
font-size: 18px;
overflow:auto;
}
tw-passage[tags="diario"] {
color: black;
}
tw-passage[tags="start"] {
position:absolute;
left: 80%;
right:3%;
top:5%;
bottom:5%;
font-size: 18px;
}
tw-story[tags="form"] {
background-image: url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/immagine1.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-passage[tags="form"] {
position: absolute;
left: 20%;
right: 20%;
top: 5%;
bottom:5%;
background-color:white;
color:black;
width: 60%;
border-radius: 15px;
padding-top:10px;
padding-right: 20px;
padding-bottom: 10px;
padding-left: 30px;
}
tw-passage[tags="form"] h1{
text-align: center;
font-weight: bold;
font-size: 25px;
color:green;
}
.sketchfab-embed-wrapper{
text-align: center;
}
tw-passage[tags="form"] p{
text-align: justify;
margin-left: 8px;
}
.red tw-link{
padding: 15px;
background:green;
color:white;
border:0;
outline:none;
cursor:pointer;
width:150px;
margin:auto 0;
border-radius: 30px;
}
tw-story[tags="card"] {
background-image: url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/immagine1.jpg?raw=true');
background-position:50% 50%;
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-passage[tags="card"] {
position: absolute;
left: 15%;
right: 15%;
top: 5%;
bottom:5%;
background-color:white;
color:black;
width: 70%;
border-radius: 15px;
}
.box-container {
position:absolute;
left: 0%;
right:0%;
top:0%;
bottom:0%;
font-size: 18px;
overflow:auto;
}
tw-passage[tags="card"] h1{
text-align: center;
font-weight: bold;
font-size: 25px;
color:green;
}
.sketchfab-embed-wrapper{
text-align: center;
}
tw-passage[tags="card"] p{
margin-left: 8px;
}
tw-story[tags="form1"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/immagine1.jpg?raw=true');
background-size:cover;
background-position: relative;
margin-left: auto;
}
tw-passage[tags="form1"]{
position: absolute;
left: 25%;
right: 25%;
top: 0%;
bottom:0%;
}
.box-container {
position:absolute;
left: 0%;
right:0%;
top:0%;
bottom:0%;
font-size: 18px;
overflow:auto;
}
tw-story[tags="final"] {
background-image:url('https://github.com/giorgiacrosilla/cena/blob/main/background-images/night%20sky.jpg?raw=true');
background-size:cover;
background-position: relative;
margin-left: auto;
}
/* width */
::-webkit-scrollbar {
background:transparent;
width: 20px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: grey;
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background:#c8c8c8;
}</style><script role="script" id="twine-user-script" type="text/twine-javascript">if (typeof window.CustomScripts == "undefined") {
window.CustomScripts = {
updateVariable(inputName) {
// Get the value from the input textbox at time of click.
var value = $("input[name='" + inputName + "']")[0].value;
// Update the variable.
State.variables[inputName] = value;
}
};
};
</script><tw-passagedata pid="1" name="Users" tags="users" position="1000,150" size="100,100">[How many users will be involved in this narrative?]
[[1]]
[[2]]
</tw-passagedata><tw-passagedata pid="2" name="1" tags="capellini" position="1000,275" size="100,100">A mirror reflects my image: I impersonate Giovanni Capellini.
[[Continue ->1.1]]
</tw-passagedata><tw-passagedata pid="3" name="2" tags="users" position="1300,150" size="100,100">Choose one of the two items:
[[<img src="https://github.com/giorgiacrosilla/cena/blob/main/Open-book-isolated-on-transparent-background-PNG.png?raw=true" width="70px">->Diary]]
[[<img src="https://github.com/giorgiacrosilla/cena/blob/main/1467267.png?raw=true" width="70px">->Feather]]</tw-passagedata><tw-passagedata pid="4" name="1.1" tags="mappa" position="1000,400" size="100,100">(live: 0s)[(t8n:"dissolve")[I am in the middle of my trip to North America to study fossils and rocks. ](stop:)]
(live: 2s)[(t8n:"dissolve")[I have decided to deviate from the agreed route to visit the village of Black Bird in Nebraska.](stop:)]
(live: 4s)[(t8n:"dissolve")[It's the 30th of September 1863...](stop:)]
(live: 5s)[(transition-arrive:"dissolve")[[Continue -> 1.2]](stop:)]
</tw-passagedata><tw-passagedata pid="5" name=" 1.2" tags="arrivo" position="1000,525" size="100,100">(live: 0s)[(t8n:"dissolve")[I reach the indigenous village with an interpreter and I glance at the tents and horses. ](stop:)]
(live: 2s)[(t8n:"dissolve")[I can see the indigenous people dressed in the traditional way.](stop:)]
(live: 4s)[(t8n:"dissolve")[There's a man outside the biggest tent that seems to be the chieftain.](stop:)]
(live: 6s)[(t8n:"dissolve")[What do I do?](stop:)]
(live: 7s)[(transition-arrive:"dissolve")[[I go there and talk to him]](stop:)]
(live: 7s)[(transition-arrive:"dissolve")[[ I explore a little bit more the village]](stop:)]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.50%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="6" name=" I explore a little bit more the village" tags="bambini" position="850,650" size="100,100"><div class="box-container">(live: 0s)[(t8n:"dissolve")[I immediately see something that captures my attention: some indigenous children, dressed like europeans, are coming back home escorted by soldiers.](stop:)]
(live: 2s)[(t8n:"dissolve")[Their mothers are waiting for them.](stop:)]
(live: 4s)[(t8n:"dissolve")[One of the children sees me and gives me a weird look. ](stop:)]
(live: 6s)[(t8n:"dissolve")[He has recognized me as a stranger. ](stop:)]
(live: 8s)[(t8n:"dissolve")[He comes closer and asks, in english, why I am there.](stop:)]
(live: 10s)[(t8n:"dissolve")[I am astonished to hear a child speak english so well. ](stop:)]
(live: 12s)[(t8n:"dissolve")[The child sees my reaction and thinks that I am there to talk to the chieftain so he takes me to the chieftain's tent. ](stop:)]
(live: 13s)[(transition-arrive:"dissolve")[[Continue ->I go there and talk to him]] (stop:)]
</div>
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.50%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="7" name=" 1.3" tags="talking" position="1000,775" size="100,100">(live: 0s)[(t8n:"dissolve")[What do I do now?](stop:)]
(live: 2s)[(t8n:"dissolve")[
[[Do I want to know more about the children of the village?]]
[[Do I want to tell the chieftain who I am and why I am there?]]](stop:)]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/nature_fire_burning_crackle_fireplace.mp3"> </audio></tw-passagedata><tw-passagedata pid="8" name="Do I want to know more about the children of the village?" tags="talking" position="1000,900" size="100,100"><div class="box-container">(set:$capellini to "children")
(live: 0s)[(t8n:"dissolve")[The chieftain explains that the children are separated from their parents and sent to the mission to learn english and the christian religion.](stop:)]
(live: 2s)[(t8n:"dissolve")[Whenever they come back home, they feel unconfortable living their parents' life, they reject all the traditions and aspire only at leaving the village in the future.
In this way their community will disappear soon. ](stop:)]
(live: 5s)[(t8n:"dissolve")[I agree with what he said because I think that this minority and their culture needs to be preserved somehow. ](stop:)]
(live: 7s)[(transition-arrive:"dissolve")[I introduce myself to him saying that I am very interested in knowing more about his tribe, traditions and how they live in close contact with nature. I've studied it all my life but, I have never experienced such a special connection with it in my daily life. So I'd like to learn that from them.]
[[Continue -> 1.4]](stop:)]
</div>
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/nature_fire_burning_crackle_fireplace.mp3"> </audio></tw-passagedata><tw-passagedata pid="9" name="Do I want to tell the chieftain who I am and why I am there?" tags="talking" position="1125,900" size="100,100"><div class="box-container">(set:$capellini to "capellini")
(live: 0s)[(t8n:"dissolve")[I am an italian scientist, I have traveled through the "great waters" to come here to study rocks and fossils.
I was very curious to visit a sandstone quarry nearby and so I decided to come here and meet your tribe. ](stop:)]
(live: 2s)[(t8n:"dissolve")[ I am very interested in knowing more about your tribe, traditions and how you live in close contact with nature. You know, I've studied it all my life but I have never experienced such a a special connection with it in my daily life. So I'd like to learn that from you. ](stop:)]
(live: 5s)[(t8n:"dissolve")[[[Continue ->1.14]]](stop:)]
</div>
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/nature_fire_burning_crackle_fireplace.mp3"> </audio></tw-passagedata><tw-passagedata pid="10" name=" 1.4" tags="portrait" position="1000,1025" size="100,100"><div class="box-container">(live: 0s)[(t8n:"dissolve")[I ask one of the natives to take a portrait of him and he agrees. ](stop:)]
(live: 2s)[(t8n:"dissolve")[When the natives realize that I am taking a profile portrait they suggest to change my point of view. I did not know that the indians do not allow to take profile portraits, but only frontal ones. ](stop:)]
(live: 5s)[(t8n:"dissolve")[I try to respect their traditions and beliefs as much as possible and so I erase everything that I sketched and I start my drawing again.](stop:)]
(live: 6s)[(transition-arrive:"dissolve")[[Continue -> 1.5]](stop:)]
</div>
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/nature_fire_burning_crackle_fireplace.mp3"> </audio></tw-passagedata><tw-passagedata pid="11" name=" 1.5" tags="telescope1" position="1000,1150" size="100,100">(live: 0s)[(t8n:"dissolve")[I feel so happy about the portrait, so I decided to gift a telescope to the natives as a reward for their patience and respect.](stop:)]
(live: 2s)[(t8n:"dissolve")[[[Continue -> 1.6]]](stop:)]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="12" name=" 1.6" tags="telescope" position="1000,1275" size="100,100">(live: 0s)[(t8n:"dissolve")[The indians are so surprised by my gift, and so almost every member of the tribe gathers around the telescope and is eager to try it to admire the moon. ](stop:)]
(live: 2s)[(t8n:"dissolve")[[[Continue -> 1.7]]](stop:)]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="13" name=" 1.7" tags="rana" position="1000,1400" size="100,100"><div class="box-container">(set:$result to "Frog")
(live: 0s)[(t8n:"dissolve")[I notice a very strange frog that is jumping near the chieftain.](stop:)]
(live: 2s)[(t8n:"dissolve")[I am very excited, so I ask the him what kind of frog it is.](stop:)]
(live: 5s)[(t8n:"dissolve")[He sees my reaction and decides to gift it to me because I have given them the telescope and I respected them.](stop:)]
(live: 7s)[(transition-arrive:"dissolve")[He says that it's the most suited gift for me since I'm very passionate for nature.](stop:)]
(live: 8s)[(transition-arrive:"dissolve")[What do I do?
[[Accept]]
[[Refuse]]](stop:)]
</div>
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/smartsound_ANIMAL_FROG_Frog_Call_Croak_01.mp3"> </audio></tw-passagedata><tw-passagedata pid="14" name="Accept" tags="tents" position="1000,1525" size="100,100">(live: 0s)[(t8n:"dissolve")[I wander around the village a little bit more.
I have the chance to visit some tents and eat some food. ](stop:)]
(live: 2s)[(t8n:"dissolve")[[[Continue -> 1.8]]](stop:)]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="15" name="Refuse" tags="tents" position="1125,1525" size="100,100">(live: 0s)[(t8n:"dissolve")[I free the frog saying that it would be better if it lived in its natural background.](stop:)]
(live: 2s)[(t8n:"dissolve")[I wander around the village a little bit more.
I have the chance to visit some tents and eat some food.](stop:)]
(live: 4s)[(t8n:"dissolve")[[[Continue -> 1.8]]](stop:)]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="16" name=" 1.8" tags="tents" position="1000,1650" size="100,100">(live: 0s)[(t8n:"dissolve")[What do I do now?
I can decide to know a little bit more about the traditional dances or I can sit around the fire and hear a man telling the story of Black Bird.](stop:)]
(live: 2s)[(t8n:"dissolve")[
[[Dances]]
[[Story]]](stop:)]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="17" name="Dances" tags="diario" position="1375,1900" size="100,100"><div class="box-container">The 1st of October there should have been the pipe dance, a ceremony used to confirm friendly relationships between tribes; and in this context it was considered as a ratification of peace and friendship between the Omahas and the Ponkas sealed since Black Bird was still alive.
That day, the rain and intense cold did not allow the Indian dance to take place, this dance is done by semi-naked people that jump in the strangest ways and the grimaces, bizarre transformations and ridiculous attitudes help create a beautiful celebration; that ceremony was postponed, and so I was not able to attend it.
Apart from the pipe dance that is performed while having a calumet in one hand and smoking a k’nick k'neck, the natives do a lot of other ceremonial dances that are descripted and pictured by Catlin, and I would like to talk briefly about them. There’s a dance called poor dance, there’s another called slaves dance, there’s also one that is done to celebrate dogs; the war dance precedes the departure for the battlefield, the snowshoes dance is done when the first snow covers the prairies, there are special dances that are used to celebrate the sun, the hunting, the corn, and the scalp. The corn dance is done as soon as the corn ripens: a small quantity of it is boiled and given to the Big Spirit as a sacrifice, the rest of the harvest is kept for the celebration. The natives are insatiable and there’s no limit in the quantity of corn that can be eaten in that circumstance: for this reason, the celebration can often last for more than a day and since the quantity of harvested corn is not abundant, almost all of it is eaten to celebrate the beginning of maturation. The scalp dance exists only in the wildest tribes that still continue to adorn themselves with the enemies’ scalps.
<audio controls autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/ttsMP3.com_VoiceText_2023-6-2_23_50_32.mp3"> </audio>
[[Continue -> Continue2]]
</div></tw-passagedata><tw-passagedata pid="18" name="Story" tags="diario" position="1500,1900" size="100,100"><div class="box-container">Black Bird, or Vash-ing-guh-sah-ba in Omahas’ language, is considered by some writers as a personification of barbarity and natives’ slyness. It has been passed on that Black Bird discovered the infamous properties of arsenic thanks to a leather merchant that gave him a small quantity of it; Black Bird fooled everyone making them believe that he had supernatural powers, like predicting the death of those who disputed his authority, where, in reality, he secretly gave them this drug.
Black Bird’s tribe became famous thanks to his power and lots of victories in the battlefield, for this reason every time someone dared to insult one of them, Black Bird would avenge him.
Black Bird was kept as prisoner by the Sioux at the beginning of his career as Omahas’ chieftain, then he became one of their worst nightmares. Someday, while he was chasing some enemies, he frequently fired shots to the fugitives’ footprints reassuring his soldiers that they would have reached and killed them before dark; he became famous as soon as he managed to do that.
Black Bird had a proud soul but also a sensible heart. He swore he would kill all the Ponkas because of their raids in Omahas territories. Right before their defeat, they sent peace heralds that have been killed as soon as they arrived to the Omahas border. The Ponkas were desperate, so their chieftain thought to send his daughter to Black Bird. She gave him a peace pipe and she made him fall in love with her because she was very young and attractive; the two tribes became allies from then on, as I have had the opportunity to see.
After some years, the girl became the queen of Black Bird’s Wigwan and she gave birth to a child: Black Bird killed the woman he loved more than himself while having an anger attack, as a consequence he was so sad that he would not eat nor speak.
He was invited to visit Washington city along with the government agent and some members of the leather company, he got sick with smallpox while he was near some hills that now are named after him, and he died few days after.
Before his death, Black Bird told some of his warriors where and how he wanted to be buried.
He was carried on the biggest “bluff” and then he was put on his favorite white horse that was buried alive with him. All the members of the tribe and the tribe’s agent were present while Black Bird was buried with a bow, shield, arrows, a pipe, a medicine-bag, a bag full of tobacco, a lighter, and some dried meat that could be useful for his journey to “the regions where his ancestors’ shadows hunt”. Eagles’ feathers decorated his head, and some scalps were hanging from the horse’s bridle.
After the medicine-men finished the ceremonies, each warrior painted his hand red and left a handprint on the sacred horse’s mantle, they covered both the horse and the man with soil.
<audio controls autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/ttsMP3.com_VoiceText_2023-5-31_21_13_13.mp3"> </audio>
[[Continue -> Continue2]]
</div></tw-passagedata><tw-passagedata pid="19" name="1.14" tags="portrait" position="1125,1025" size="100,100"><div class"box-container">(live: 0s)[(t8n:"dissolve")[I ask one of the natives to take a portrait of him and he agrees. ](stop:)]
(live: 2s)[(t8n:"dissolve")[When the indians realize that I am taking a profile portrait they start to feel angry and I realize that by looking at their faces. I do not know that the indians did not allow to take profile portraits, but only frontal ones. ](stop:)]
(live: 5s)[(t8n:"dissolve")[I try to respect their traditions and beliefs as much as possible and so I erase everything that I sketched and I start my drawing again.](stop:)]
(live: 6s)[(transition-arrive:"dissolve")[[Continue -> 1.15]](stop:)]
</div>
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/nature_fire_burning_crackle_fireplace.mp3"> </audio></tw-passagedata><tw-passagedata pid="20" name=" 1.15" tags="telescope1" position="1125,1150" size="100,100">(live: 0s)[(t8n:"dissolve")[I give them a telescope as a gift. By doing this, I hope that their anger will be replaced by enchantment and they will forgive me for the mistake that I have made. ](stop:)]
(live: 2s)[(t8n:"dissolve")[[[Continue -> 1.16]]](stop:)]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="21" name=" 1.16" tags="telescope" position="1125,1275" size="100,100">(live: 0s)[(t8n:"dissolve")[The indians are so surprised by my gift, and so almost every member of the tribe gathers around the telescope and is eager to try it to admire the moon. ](stop:)]
(live: 2s)[(t8n:"dissolve")[[[Continue -> 1.17]]](stop:)]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="22" name=" 1.17" tags="pipa" position="1125,1400" size="100,100">(set:$result to "Calumet")
(live: 0s)[(t8n:"dissolve")[The chieftain orders a man to gift me his traditional pipe, called calumet.](stop:)]
(live: 2s)[(t8n:"dissolve")[The native is very reluctant and starts crying as soon as I get the pipe in my hands.
At first, I don't get why he had such a reaction, then the others tell me that the object had a sentimental value that could not be replaced. ](stop:)]
(live: 5s)[(t8n:"dissolve")[What do I do now?
[[Accept the gift]]
[[Refuse the gift]]](stop:)]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="23" name="Accept the gift" tags="tents" position="1250,1525" size="100,100">(live: 0s)[(t8n:"dissolve")[I wander around the village a little bit more.](stop:)]
(live: 2s)[(t8n:"dissolve")[[[Continue ->1.19]]](stop:)]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="24" name="Refuse the gift" tags="tents" position="1250,1400" size="100,100">(live: 0s)[(t8n:"dissolve")[I do not accept the gift because I am sympathetic with him.](stop:)]
(live: 2s)[(t8n:"dissolve")[[[Continue ->1.19]]](stop:)]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="25" name="Diary" tags="capellini" position="1575,150" size="100,100">A mirror reflects my image: I impersonate Giovanni Capellini.
[[Continue ->2.1]]</tw-passagedata><tw-passagedata pid="26" name="Feather" tags="indiano" position="1425,150" size="100,100">A mirror reflects my image: I impersonate Ne-ki-ga-kuh.
[[Continue ->2.1]]</tw-passagedata><tw-passagedata pid="27" name="start" tags="start" position="750,150" size="100,100">(set: $linkA to false)
(link: "Start")[{[
(show: ?extra)
]
}]
|extra)[Choose a language:
[[<img src="https://upload.wikimedia.org/wikipedia/commons/4/42/Flag_of_the_United_Kingdom.png" width="50px">->0]]
[[<img src="https://upload.wikimedia.org/wikipedia/en/thumb/0/03/Flag_of_Italy.svg/1024px-Flag_of_Italy.svg.png" width="50">->Utenti]]]
</div>
</tw-passagedata><tw-passagedata pid="28" name="1.19" tags="tents" position="1275,1650" size="100,100">(live: 0s)[(t8n:"dissolve")[What do I do now?
I can decide to know a little bit more about the traditional dances or I can sit around the fire and hear a man telling the story of Black Bird.](stop:)]
(live: 2s)[(t8n:"dissolve")[
[[Dances]]
[[Story]]](stop:)]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="29" name="2.1" tags="presentazione" position="1500,300" size="100,100">Ne-ki-ga-huh:
I am the chieftain of the Ponkas tribe.
My tribe recently has decided to ally with the Omahas so we have moved to Black Bird in order to run away from the war.
It's the 30th of September 1863...
<hr>
Capellini:
I am in the middle of my trip to North America to study fossils and rocks.
I have decided to deviate from the agreed route to visit the village of Black Bird in Nebraska.
It's the 30th of September 1863..
[[Continue ->decisione]]
</tw-passagedata><tw-passagedata pid="30" name="decisione" tags="arrival" position="1500,425" size="100,100"><div class="box-container">
Ne-ki-ga-huh:
I see a group of "pale faces" arriving at the village.
There are children coming back to their parents' tents escorted by soldiers.
I recognize everyone apart from one man.
What do I do?(if: $a is > 0 or $b is > 0) [You have already made your decision](else:) [
(link: "I talk to him")[\
(set: $a to it + 1)\
(go-to: "decisione")\
]
(link: "I observe what his intentions are")[\
(set: $b to it + 1)\
(go-to: "decisione")\]]
<hr>
Capellini:
I reach the indigenous village with an interpreter and I glance at the tents and horses.
I can see the indigenous people dressed in the traditional way.
There's a man outside the biggest tent that seems to be the chieftain.
What do I do?(if: $c is > 0 or $d is >0) [You have already made your decision]
(else:) [(link: "I go there and talk to him")[\
(set: $c to it + 1)\
(go-to: "decisione")\
]
(link: "I explore the village a little bit more")[\
(set: $d to it + 1)\
(go-to: "decisione")\
]]
(if: $a is > 0 and $c is > 0) [[Continue ->parlo]](if: $a is > 0 and $d is > 0) [[Continue ->osservo]](if: $b is > 0 and $c is > 0) [[Continue ->parlo]](if: $b is > 0 and $d is > 0) [[Continue ->osservo]]
</div>
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.50%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="31" name="parlo" tags="talking" position="1425,575" size="100,100"><div class="box-container">Capellini:
We exchange a respectful greeting and then we sit in front of each other, near the fire.
I am very curious because I have never encountered an indigenous tribe before, so I ask the chieftain what his name was and some more information about his tribe.
<hr>
Ne-ki-ga-huh:
My name is Ne-hi-ga-kuh and I'm the chieftain of the Ponkas tribe. My tribe is temporarily allied with the Omahas and so we have been invited to stay at Black Bird because we did not want to fight in the war and our harvest was rotten.
I am very curious about this "pale face" because he has lots of objects that I have never seen before and his behavior seems totally different from the other "pale faces" that I've met before.
[[Continue->choice]]
</div>
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/nature_fire_burning_crackle_fireplace.mp3"> </audio></tw-passagedata><tw-passagedata pid="32" name="osservo" tags="children" position="1600,575" size="100,100"><div class="box-container">Ne-ki-ga-huh:
Suddenly a child approaches the stranger and so I have the chance to study his behavior towards the members of our tribe.
<hr>
Capellini:
I immediately see something that captures my attention: some indigenous children, dressed like europeans, are coming back home escorted by soldiers.
Their mothers are waiting for them.
One of the children sees me and gives me a weird look.
He has recognized me as a stranger.
He comes closer and asks, in english, why I am there.
I am astonished to hear a child speak english so well.
The child sees my reaction and thinks that I am there to talk to the chieftain so he takes me to the chieftain's tent.
[[Continue ->parlo]]
</div>
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.50%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="33" name="choice" tags="talking" position="1500,700" size="100,100">Ne-ki-ga-kuh:
What do I do?
(if: $e is > 0 or $f is > 0) [You have already made your decision](else:) [
(link: "Do I listen to what the man has to tell me?")[\
(set: $e to it + 1)\
(go-to: "choice")\
]
(link: "Do I ask him who he is?")[\
(set: $f to it + 1)\
(go-to: "choice")\]]
<hr>
Capellini:
What do I do?
(if: $g is > 0 or $h is > 0) [You have already made your decision](else:) [
(link: "Do I want to tell the chieftain who I am and why I am there? ")[\
(set: $g to it + 1)\
(go-to: "choice")\
]
(link: "Do I want to know more about the children of the village?")[\
(set: $h to it + 1)\
(go-to: "choice")\
]]
(if: $e is > 0 and $g is > 0) [[Continue ->capellini]](if: $e is > 0 and $h is > 0) [[Continue ->children]](if: $f is > 0 and $g is > 0) [[Continue ->capellini]](if: $f is > 0 and $h is > 0) [[Continue ->children]]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/nature_fire_burning_crackle_fireplace.mp3"> </audio></tw-passagedata><tw-passagedata pid="34" name="capellini" tags="talking" position="1425,825" size="100,100">Capellini:
I am an italian scientist, I have traveled through the "great waters" to come here to study rocks and fossils.
I was very curious to visit a sandstone quarry nearby and so I decided to come here and meet your tribe.
I am very interested in knowing more about your tribe, traditions and how you live in close contact with nature. You know, I've studied it all my life but I have never experienced such a a special connection with it in my daily life. So I'd like to learn that from you.
[[Continue ->2.4]]
(set:$capellini to "capellini")
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/nature_fire_burning_crackle_fireplace.mp3"> </audio></tw-passagedata><tw-passagedata pid="35" name="children" tags="talking" position="1600,825" size="100,100"><div class="box-container">
Ne-ki-ga-huh:
I explain that the children are separated from their parents and sent to the mission to learn english and the christian religion.
Whenever they come back home, they feel unconfortable living their parents' life, they reject all the traditions and aspire only at leaving the village in the future.
In this way their community will disappear soon.
<hr>
Capellini:
I agree with what he said because I think that this minority and their culture needs to be preserved somehow.
I introduce myself to him saying that I am very interested in knowing more about his tribe, traditions and how they live in close contact with nature. I've studied it all my life but, I have never experienced such a special connection with it in my daily life. So I'd like to learn that from them.
[[Continue ->2.04]]
(set:$capellini to "children")
</div>
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/nature_fire_burning_crackle_fireplace.mp3"> </audio></tw-passagedata><tw-passagedata pid="36" name="2.4" tags="portrait" position="1425,975" size="100,100"><div class="box-container">Capellini:
I ask one of the natives to take a portrait of him and he agrees.
When the indians realize that I am taking a profile portrait they start to feel angry and I realize that by looking at their faces. I do not know that the indians did not allow to take profile portraits, but only frontal ones.
I try to respect their traditions and beliefs as much as possible and so I erase everything that I sketched and I start my drawing again.
<hr>
Ne-ki-ga-huh:
I see that the stranger asks one of my men to take a portrait of him and he agrees.
I feel that the respect that we've given to him was betrayed and I start feeling angry as soos as I see that he was drawing the profile.
I think that the "pale face" has realized that he did something wrong by looking at our faces, so I explain that it's not allowed to take profile portraits in our culture.
He immediately erases the portrait and starts sketching a frontal one.
[[Continue -> 2.5]]
</div>
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/nature_fire_burning_crackle_fireplace.mp3"> </audio></tw-passagedata><tw-passagedata pid="37" name="2.04" tags="portrait" position="1600,975" size="100,100"><div class="box-container">Capellini:
I ask one of the natives to take a portrait of him and he agrees.
When the natives realize that I am taking a profile portrait they suggest to change my point of view. I did not know that the indians do not allow to take profile portraits, but only frontal ones.
I try to respect their traditions and beliefs as much as possible and so I erase everything that I sketched and I start my drawing again.
<hr>
Ne-ki-ga-huh:
I see that the stranger asks one of my men to take a portrait of him and he agrees.
I feel that the respect that we've given to him was betrayed when he starts drawing the face from a profile point of view. But I realize that, maybe, he doesn't know that it's not allowed to take profile portaits of our people. So I ask him if he can erase everything and draw a frontal portrait instead.
[[Continue -> 2.05]]
</div>
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/nature_fire_burning_crackle_fireplace.mp3"> </audio></tw-passagedata><tw-passagedata pid="38" name=" 2.05" tags="telescope1" position="1600,1100" size="100,100">Capellini:
I feel so happy about the portrait, so I decided to gift a telescope to the natives as a reward for their patience and respect.
<hr>
Ne-ki-ga-huh:
The stranger shows us the finished portrait and it's really well done.
He decides to gift us an object that I've never seen before as a reward of our patience and respect, he says.
[[Continue -> 2.06]]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="39" name=" 2.5" tags="telescope1" position="1425,1100" size="100,100">Capellini:
I give them a telescope as a gift. By doing this, I hope that their anger will be replaced by enchantment and they will forgive me for the mistake that I have made.
<hr>
Ne-ki-ga-huh:
The stranger shows us the finished portrait and it's really well done.
He decides to gift us an object that I've never seen before.
[[Continue -> 2.6]]</tw-passagedata><tw-passagedata pid="40" name=" 2.06" tags="telescope" position="1600,1225" size="100,100"><div class="box-container">Capellini:
The indians are so surprised by my gift, and so almost every member of the tribe gathers around the telescope and is eager to try it to admire the moon.
<hr>
Ne-ki-ga-huh:
The man explains to us that this object will allow us to see the sky, moon and stars. Every member of the tribe seems so excited and starts calling all the others to gather and try to use this object.
[[Continue ->regalo1]]
</div>
<audio autoplay src="C:\Users\crosi\Downloads\WhatsApp Audio 2023-06-09 at 6.01.52 PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="41" name="regalo1" tags="startup" position="1600,1350" size="100,100">(set:$result to "...." )
Ne-ki-ga-huh:
We decide to reciprocate giving the stranger a gift.
Which one do I choose?
(if: $m > 0)[
(set: $result to "Frog")
] (else-if: $n > 0)[
(set: $result to "Mocassin")
] (else:) [(link: "Frog")[
(set: $m to it + 1)
(go-to: "regalo1")]
(link: "Mocassin")[
(set: $n to it + 1)
(go-to: "regalo1")
]]
<hr>
Capellini:
The indians decide to give me a (print: $result). What do I do?
(if: $q is > 0 or $r is > 0) [] (else:) [(link: "Accept ")[\
(set: $q to it + 1)\
(go-to: "regalo1")\
]
(link: "Refuse")[\
(set: $r to it + 1)\
(go-to: "regalo1")\]]
(if: $m is > 0 and $q is > 0) [[Continue->Accept2]]
(if: $m is > 0 and $r is > 0) [[Continue->Refuse2]]
(if: $n is > 0 and $q is > 0) [[Continue->Accept2]]
(if: $n is > 0 and $r is > 0) [[Continue->Refuse2]]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="42" name=" 2.6" tags="telescope" position="1425,1225" size="100,100">Capellini:
The indians are so surprised by my gift, I can perceive that actually they're not angry at me anymore. Almost every member of the tribe gathers around the telescope and is eager to try it to admire the moon.
<hr>
Ne-ki-ga-huh:
The man explains to us that this object will allow us to see the sky, moon and stars. The resentment that everyone felt before is replaced by excitement: I can hear people calling others to gather and try to use this object.
[[Continue ->regalo]]
<audio autoplay src="C:\Users\crosi\Downloads\WhatsApp Audio 2023-06-09 at 6.01.52 PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="43" name="regalo" tags="startup" position="1425,1350" size="100,100">(set:$result to "...." )
Ne-ki-ga-huh:
We decide to reciprocate giving the stranger a gift.
Which one do I choose?
(if: $i > 0)[
(set: $result to "Calumet")
] (else-if: $l > 0)[
(set: $result to "Mocassin")
] (else:) [(link: "Calumet")[
(set: $i to it + 1)
(go-to: "regalo")]
(link: "Mocassin")[
(set: $l to it + 1)
(go-to: "regalo")
]]
<hr>
Capellini:
The indians decide to give me a (print: $result). What do I do?
(if: $o is > 0 or $p is > 0) [] (else:) [(link: "Accept ")[\
(set: $o to it + 1)\
(go-to: "regalo")\
]
(link: "Refuse")[\
(set: $p to it + 1)\
(go-to: "regalo")\]]
(if: $i is > 0 and $o is > 0) [[Continue->Accept1]]
(if: $i is > 0 and $p is > 0) [[Continue->Refuse1]]
(if: $l is > 0 and $o is > 0) [[Continue->Accept1]]
(if: $l is > 0 and $p is > 0) [[Continue->Refuse1]]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="44" name="Accept1" tags="tents" position="1525,1475" size="100,100">Capellini:
The chieftain orders a man to give me his (print: $result).
The native is very reluctant and starts crying as soon as I get the (print: $result) in my hands.
At first, I don't get why he had such a reaction, then the others tell me that the object had a sentimental value that could not be replaced.
[[Continue->End]]
(set: $i to 0)
(set:$l to 0)
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="45" name="Refuse1" tags="tents" position="1375,1475" size="100,100">(set: $i to 0)(set:$l to 0)
Capellini:
I don't accept the gift because these people are living in extreme poverty.
If I accepted a gift, one of the indians had to give up one of their belongings.
[[Continue->End]]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="46" name="Accept2" tags="" position="1725,1350" size="100,100">Capellini:
I accept the (print: $result).
I'm very happy that I can bring home with me something that will remind of this moment.
I wander around the village a little bit more.
[[Continue ->end1]]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="47" name="Refuse2" tags="tents" position="1725,1475" size="100,100">(if: $result is "mocassin")[Capellini:
I don't accept the gift because these people are living in extreme poverty.
If I accepted a gift, one of the indians had to give up one of their belongings. ]
(else:)
[I free the frog saying that it would be better if it lived in its natural background.
I wander around the village a little bit more.]
[[Continue ->end1]]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="48" name="End" tags="tents" position="1475,1600" size="100,100">Capellini:
What do I do now?
I can decide to know a little bit more about the traditional dances or I can sit around the fire and hear a man telling the story of Black Bird.
[[Dances]]
[[Story]]
Ne-ki-ga-huh:
I sit down and start thinking about the future of my tribe.
"We're running away from a war between natives and "pale faces", the colonizers are taking our children away, so our traditions will not be passed on.
In this way, our tribe and our culture will soon disappear..."
[[Continue ->indianend]]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="49" name="end1" tags="finalbd" position="1850,1475" size="100,100">Capellini:
What do I do now?
I can decide to know a little bit more about the traditional dances or I can sit around the fire and hear a man telling the story of Black Bird.
[[Dances]]
[[Story]]
<hr>
Ne-ki-ga-huh:
I sit down and start thinking about the future of my tribe.
"We're running away from a war between natives and "pale faces", the colonizers are taking our children away, so our traditions will not be passed on.
In this way, our tribe and our culture will soon disappear..."
[[Continue->indianend]]
<audio autoplay src="https://github.com/giorgiacrosilla/cena/raw/main/mp3/WhatsApp%20Audio%202023-06-09%20at%206.01.52%20PM.mpeg"> </audio></tw-passagedata><tw-passagedata pid="50" name="indianend" tags="card" position="1850,1650" size="100,100"><div class="box-container" id="boxid">
<h1>Local</h1>
<div class="sketchfab-embed-wrapper"> <iframe title="Monocular telescope" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/e35fa12f7d4243bcad062aa411949fa0/embed"> </iframe> </div>
<p>You think that cultural exchange can enrich yourself and not only the visitors that are curious to know more about your customs. You're very curious to set a special bonding with travelers so that each encounter will be unforgettable.
Which encounter did the experience bring to your mind?
(input-box: bind $code, "XXX=")</p>
</div></tw-passagedata><tw-passagedata pid="51" name=" Continue2" tags="form" position="1425,2050" size="100,100"><div class="box-container">
<h1>A few more questions...</h1>
<p>
1. Which color better describes your experience?
(checkbox: bind $green, "green")
(checkbox: bind $red, "red")
(checkbox: bind $yellow, "yellow")
(checkbox: bind $blue, "blue")
2. Which emotion would you associate to the experience?
(checkbox: bind $surprise, "surprise")
(checkbox: bind $resentment, "resentment")
(checkbox: bind $hope, "hope")
(checkbox: bind $anger, "anger")
3. Which was the most relevant theme of the story?
(checkbox: bind $curiosity, "Curiosity")
(checkbox: bind $rel, "Relationship man-nature")
(checkbox: bind $political, "Political and social change")
(checkbox: bind $imm, "Immersion in a different culture")
<div class='red'>[[Continue->continue3.1]]</div></p>
</div></tw-passagedata><tw-passagedata pid="52" name="continue3" tags="card" position="1425,2200" size="100,100"><div class="box-container">
(if:$capellini is "capellini")[<h1>Tourist</h1>]
(else-if:$capellini is "children")[<h1>Explorer</h1>]
(if:$result is "Calumet")[<div class="sketchfab-embed-wrapper"><iframe title="Ceremonial Pipe" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/a9c438440fe7457ba7c34d44285d8b45/embed"> </iframe></div>](else-if:$result is "Frog")[<div class="sketchfab-embed-wrapper"> <iframe title="タゴガエル 🐸 ♂ Tago's Brown Frog, Rana tagoi tagoi" frameborder="0" allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-tracking execution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/8dfd876bedfa4172922728777ab5ae24/embed"> </iframe> </div>](else-if:$result is "mocassin")[<div class="sketchfab-embed-wrapper"><iframe title="Native American Shoe High Res" frameborder="0"allowfullscreen mozallowfullscreen="true" webkitallowfullscreen="true" allow="autoplay; fullscreen; xr-spatial-tracking" xr-spatial-trackingexecution-while-out-of-viewport execution-while-not-rendered web-share src="https://sketchfab.com/models/dc0d7dcd393345b3bdae3795d18bc279/embed"> </iframe></div>]<p>{(if:$capellini is"capellini")[The choices that you've made inside the experience set that you're a tourist! This means that whenever you're visiting a country, you prefer to stick to a touristic route. For example, you enjoy visiting historical sites and trying the local cuisine but you would never sleep at a local’s home. Therefore, you visit the country from a certain distance, not immersing totally in a new culture. ](else-if:$capellini is "children")[The choices that you've made inside the experience set that you're an explorer! This means that whenever you're visiting a country, you’re very curious and keen to do authentic experiences: meeting the locals, immersing in their culture, and trying to understand social or political changes.]}
{(if:$capellini is "children" and $green is true and $surprise is true and $rel is true)[You’ve chosen green and the relationship between man and nature: this means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way. You believe that since nature respects us, we need to respect it too and be careful about the choices that we make and that could alter this equilibrium.
Whenever you’re visiting a country, you’re always searching for sustainable solutions, and you’re more interested in visiting small communities that still live an authentic life in nature than big cities. ]
(else-if:$capellini is "children" and $green is true and $hope is true and $rel is true)[You’ve chosen green and the relationship between man and nature: this means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way. You believe that since nature respects us, we need to respect it too and be careful about the choices that we make and that could alter this equilibrium.
Whenever you’re visiting a country, you’re always searching for sustainable solutions, and you’re more interested in visiting small communities that still live an authentic life in nature than big cities. ]
(else-if:$capellini is "children" and $green is true and $resentment is true and $rel is true)[You’ve chosen green and the relationship between man and nature: this means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way. You feel frustrated that nowadays nature is not being respected enough, and that climate change is a direct consequence of it. Whenever you’re visiting a country, you’re always searching for sustainable solutions, and you’re more interested in visiting small communities that still live an authentic life in nature than big cities. ]
(else-if:$capellini is "children" and $green is true and $anger is true and $rel is true)[You’ve chosen green and the relationship between man and nature: this means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way. You feel frustrated that nowadays nature is not being respected enough, and that climate change is a direct consequence of it. Whenever you’re visiting a country, you’re always searching for sustainable solutions, and you’re more interested in visiting small communities that still live an authentic life in nature than big cities. ]
(else-if:$capellini is "children" and $green is true and $surprise is true and $curiosity is true)[You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive towards nature and our relationship with it.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and ask them about their living conditions, problems and how the situation could be changed.
You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "capellini" and $green is true and $surprise is true and $political is true)[You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive towards nature and our relationship with it.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and ask them about their living conditions, problems and how the situation could be changed.
You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $green is true and $hope is true and $imm is true)[You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive towards nature and our relationship with it.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and ask them about their living conditions, problems and how the situation could be changed.
You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $green is true and $hope is true and $curiosity is true)[You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive towards nature and our relationship with it.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and ask them about their living conditions, problems and how the situation could be changed.
You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $green is true and $hope is true and $political is true)[You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive towards nature and our relationship with it.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and ask them about their living conditions, problems and how the situation could be changed.
You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $green is true and $surprise is true and $imm is true)[You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive towards nature and our relationship with it.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and ask them about their living conditions, problems and how the situation could be changed.
You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $green is true and $anger is true and $imm is true)[You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way. You feel quite frustrated that all those communities lived and still continue to live in this way are endangered by a capitalistic system.
Whenever you’re visiting a country, you’re always searching for sustainable solutions, and you’re more interested in visiting small communities that still live an authentic life in nature. ]
(else-if:$capellini is "children" and $green is true and $anger is true or $curiosity is true)[You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way. You feel quite frustrated that all those communities lived and still continue to live in this way are endangered by a capitalistic system.
Whenever you’re visiting a country, you’re always searching for sustainable solutions, and you’re more interested in visiting small communities that still live an authentic life in nature. ]
(else-if:$capellini is "children" and $green is true and $anger is true and $political is true)[You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way. You feel quite frustrated that all those communities lived and still continue to live in this way are endangered by a capitalistic system.
Whenever you’re visiting a country, you’re always searching for sustainable solutions, and you’re more interested in visiting small communities that still live an authentic life in nature. ]
(else-if:$capellini is "capellini" and $green is true and $resentment is true and $imm is true)[You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way. You feel quite frustrated that all those communities lived and still continue to live in this way are endangered by a capitalistic system.
Whenever you’re visiting a country, you’re always searching for sustainable solutions, and you’re more interested in visiting small communities that still live an authentic life in nature. ]
(else-if:$capellini is "children" and $green is true and $resentment is true or $curiosity is true)[You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way. You feel quite frustrated that all those communities lived and still continue to live in this way are endangered by a capitalistic system.
Whenever you’re visiting a country, you’re always searching for sustainable solutions, and you’re more interested in visiting small communities that still live an authentic life in nature. ]
(else-if:$capellini is "children" and $green is true and $resentment is true and $political is true)[You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way. You feel quite frustrated that all those communities lived and still continue to live in this way are endangered by a capitalistic system.
Whenever you’re visiting a country, you’re always searching for sustainable solutions, and you’re more interested in visiting small communities that still live an authentic life in nature. ]
(else-if:$capellini is "children" and $red is true and $surprise is true and $political is true)[You’ve chosen red and the political/social change: this means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and ask them about their living conditions, problems and how the situation could be changed.
You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $red is true and $hope is true and $political is true)[You’ve chosen red and the political/social change: this means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and ask them about their living conditions, problems and how the situation could be changed.
You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $red is true and $resentment is true and $political is true)[You’ve chosen red and the political/social change: this means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and ask them about their living conditions, problems and how the situation could be changed. You have these injustices close to your heart and you feel that even you should fight for them.
You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $red is true and $anger is true and $political is true)[You’ve chosen red and the political/social change: this means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and ask them about their living conditions, problems and how the situation could be changed. You have these injustices close to your heart and you feel that even you should fight for them.
You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $red is true and $surprise is true and $rel is true)[You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
You try to immerse yourself in the culture that you’re discovering as much as you can. You hope that these traditions and different ways of living will survive in the future. ]
(else-if:$capellini is "children" and $red is true and $surprise is true and $curiosity is true)[You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
You try to immerse yourself in the culture that you’re discovering as much as you can. You hope that these traditions and different ways of living will survive in the future. ]
(else-if:$capellini is "children" and $red is true and $surprise is true and $imm is true)[You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
You try to immerse yourself in the culture that you’re discovering as much as you can. You hope that these traditions and different ways of living will survive in the future. ]
(else-if:$capellini is "children" and $red is true and $hope is true and $curiosity is true)[You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
You try to immerse yourself in the culture that you’re discovering as much as you can. You hope that these traditions and different ways of living will survive in the future. ]
(else-if:$capellini is "children" and $red is true and $hope is true and $imm is true)[You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
You try to immerse yourself in the culture that you’re discovering as much as you can. You hope that these traditions and different ways of living will survive in the future. ]
(else-if:$capellini is "children" and $red is true and $anger is true and $rel is true)[You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
You try to immerse yourself in the culture that you’re discovering as much as you can. You’re disheartened that traditions and different ways of living are progressively disappearing. You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $red is true and $anger is true and $curiosity is true)[You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
You try to immerse yourself in the culture that you’re discovering as much as you can. You’re disheartened that traditions and different ways of living are progressively disappearing. You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $red is true and $anger is true and $imm is true)[You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
You try to immerse yourself in the culture that you’re discovering as much as you can. You’re disheartened that traditions and different ways of living are progressively disappearing. You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $red is true and $resentment is true and $rel is true)[You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
You try to immerse yourself in the culture that you’re discovering as much as you can. You’re disheartened that traditions and different ways of living are progressively disappearing. You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $red is true and $resentment is true and $curiosity is true)[You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
You try to immerse yourself in the culture that you’re discovering as much as you can. You’re disheartened that traditions and different ways of living are progressively disappearing. You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $red is true and $resentment is true and $imm is true)[You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better.
You try to immerse yourself in the culture that you’re discovering as much as you can. You’re disheartened that traditions and different ways of living are progressively disappearing. You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $yellow is true and $surprise is true)[You’ve chosen yellow as the color that represents the experience the most. This means that you’re always eager to find answers and to discover new things. Whenever you’re visiting a foreign country, you’re always looking at how locals live and learn more about their traditions.
You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $yellow is true and $hope is true)[You’ve chosen yellow as the color that represents the experience the most. This means that you’re always eager to find answers and to discover new things. Whenever you’re visiting a foreign country, you’re always looking at how locals live and learn more about their traditions.
You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $yellow is true and $anger is true)[You’ve chosen yellow as the color that represents the experience the most. This means that you’re always eager to find answers and to discover new things. Whenever you’re visiting a foreign country, you’re perceptive about social differences and the problems that the locals have to face.
You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $yellow is true and $resentment is true)[You’ve chosen yellow as the color that represents the experience the most. This means that you’re always eager to find answers and to discover new things. Whenever you’re visiting a foreign country, you’re perceptive about social differences and the problems that the locals have to face.
You feel that not following touristic routes and making these authentic encounters can enrich your awareness and cultural experience.]
(else-if:$capellini is "children" and $blue is true and $surprise is true)[You’ve chosen blue as the color that represents the experience the most. This means that you’re a very spiritual and sensitive person, you’ve never had prejudices and so you’re always ready to embrace different cultures and ethnicities.
Whenever you’re visiting a foreign country, you’re always searching for authentic experiences, and you wouldn’t mind spending a few days living with a local family.]
(else-if:$capellini is "children" and $blue is true and $hope is true)[You’ve chosen blue as the color that represents the experience the most. This means that you’re a very spiritual and sensitive person, you’ve never had prejudices and so you’re always ready to embrace different cultures and ethnicities.
Whenever you’re visiting a foreign country, you’re always searching for authentic experiences, and you wouldn’t mind spending a few days living with a local family.](else-if:$capellini is "children" and $blue is true and $resentment is true)[You’ve chosen blue as the color that represents the experience the most. This means that you’re a very spiritual and sensitive person, you never have prejudices and so you’re always ready to embrace different cultures and ethnicities. Whenever you’re visiting a foreign country, you feel sympathetic with minorities or communities that are still discriminated. You are likely to take their side and support their legal and social rights.]
(else-if:$capellini is "children" and $blue is true and $anger is true)[You’ve chosen blue as the color that represents the experience the most. This means that you’re a very spiritual and sensitive person, you never have prejudices and so you’re always ready to embrace different cultures and ethnicities. Whenever you’re visiting a foreign country, you feel sympathetic with minorities or communities that are still discriminated. You are likely to take their side and support their legal and social rights.]
(else-if:$capellini is "capellini" and $green is true and $surprise is true and $rel is true)[ You’ve chosen green and the relationship between man and nature: this means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way. You believe that since nature respects us, we need to respect it too and be careful about the choices that we make and that could alter this equilibrium.
Whenever you’re visiting a country, you’re always searching for sustainable solutions, and you’re more interested in visiting national parks or naturalistic spots. ]
(else-if:$capellini is "children" and $green is true and $hope is true and $rel is true)[ You’ve chosen green and the relationship between man and nature: this means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way. You believe that since nature respects us, we need to respect it too and be careful about the choices that we make and that could alter this equilibrium.
Whenever you’re visiting a country, you’re always searching for sustainable solutions, and you’re more interested in visiting national parks or naturalistic spots.]
(else-if:$capellini is "capellini" and $green is true and $resentment is true and $rel is true)[ You’ve chosen green and the relationship between man and nature: this means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way. You feel frustrated that nowadays nature is not being respected enough, and that climate change is a direct consequence of it.
Whenever you’re visiting a country, you’re always searching for sustainable solutions, and you’re more interested in visiting national parks or naturalistic spots.]
(else-if:$capellini is "capellini" and $green is true and $anger is true and $rel is true)[ You’ve chosen green and the relationship between man and nature: this means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way. You feel frustrated that nowadays nature is not being respected enough, and that climate change is a direct consequence of it.
Whenever you’re visiting a country, you’re always searching for sustainable solutions, and you’re more interested in visiting national parks or naturalistic spots.]
(else-if:$capellini is "capellini" and $green is true and $surprise is true and $curiosity is true)[ You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive towards nature and our relationship with it.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and reflect on how their lifestyle is different from yours. ]
(else-if:$capellini is "capellini" and $green is true and $surprise is true and $political is true)[ You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive towards nature and our relationship with it.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and reflect on how their lifestyle is different from yours. ]
(else-if:$capellini is "capellini" and $green is true and $hope is true and $imm is true)[ You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive towards nature and our relationship with it.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and reflect on how their lifestyle is different from yours. ]
(else-if:$capellini is "capellini" and $green is true and $hope is true and $curiosity is true)[ You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive towards nature and our relationship with it.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and reflect on how their lifestyle is different from yours. ]
(else-if:$capellini is "capellini" and $green is true and $hope is true and $political is true)[ You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive towards nature and our relationship with it.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and reflect on how their lifestyle is different from yours. ]
(else-if:$capellini is "capellini" and $green is true and $surprise is true and $imm is true)[ You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive towards nature and our relationship with it.
Whenever you’re visiting a foreign country, you’re always looking at how locals live and reflect on how their lifestyle is different from yours. ]
(else-if:$capellini is "capellini" and $green is true and $anger is true and $imm is true)[ You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way.
Whenever you’re visiting a country, you’re always paying attention to make sustainable choices because you don’t want to further pollute the planet. ]
(else-if:$capellini is "capellini" and $green is true and $anger is true or $curiosity is true)[ You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way.
Whenever you’re visiting a country, you’re always paying attention to make sustainable choices because you don’t want to further pollute the planet. ]
(else-if:$capellini is "capellini" and $green is true and $anger is true and $political is true)[ You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way.
Whenever you’re visiting a country, you’re always paying attention to make sustainable choices because you don’t want to further pollute the planet. ]
(else-if:$capellini is "capellini" and $green is true and $resentment is true and $imm is true)[ You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way.
Whenever you’re visiting a country, you’re always paying attention to make sustainable choices because you don’t want to further pollute the planet. ]
(else-if:$capellini is "capellini" and $green is true and $resentment is true or $curiosity is true)[ You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way.
Whenever you’re visiting a country, you’re always paying attention to make sustainable choices because you don’t want to further pollute the planet. ]
(else-if:$capellini is "capellini" and $green is true and $resentment is true and $political is true)[ You’ve chosen green as the color that represents the experience the most. This means that you’re very sensitive about nature, trying to live in a close contact with it, almost in a symbiotic way.
Whenever you’re visiting a country, you’re always paying attention to make sustainable choices because you don’t want to further pollute the planet. ]
(else-if:$capellini is "capellini" and $red is true and $surprise is true and $political is true)[ You’ve chosen red and the political/social change: this means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. Whenever you’re visiting a foreign country, you’re always looking at how locals live and ask them about their living conditions, problems and how the situation could be changed. ]
(else-if:$capellini is "capellini" and $red is true and $hope is true and $political is true)[ You’ve chosen red and the political/social change: this means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. Whenever you’re visiting a foreign country, you’re always looking at how locals live and ask them about their living conditions, problems and how the situation could be changed. ]
(else-if:$capellini is "capellini" and $red is true and $resentment is true and $political is true)[ You’ve chosen red and the political/social change: this means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. Whenever you’re visiting a foreign country, you’re always looking at how locals live and ask them about their living conditions, problems and how the situation could be changed. You have these injustices close to your heart and you feel that even you should fight for them.]
(else-if:$capellini is "capellini" and $red is true and $anger is true and $political is true)[ You’ve chosen red and the political/social change: this means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. Whenever you’re visiting a foreign country, you’re always looking at how locals live and ask them about their living conditions, problems and how the situation could be changed. You have these injustices close to your heart and you feel that even you should fight for them.]
(else-if:$capellini is "capellini" and $red is true and $surprise is true and $rel is true)[ You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. Whenever you’re traveling abroad, you’re always excited to see everything that the country has to offer. ]
(else-if:$capellini is "capellini" and $red is true and $surprise is true and $curiosity is true)[ You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. Whenever you’re traveling abroad, you’re always excited to see everything that the country has to offer. ]
(else-if:$capellini is "capellini" and $red is true and $surprise is true and $imm is true)[ You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. Whenever you’re traveling abroad, you’re always excited to see everything that the country has to offer. ]
(else-if:$capellini is "capellini" and $red is true and $hope is true and $curiosity is true)[ You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. Whenever you’re traveling abroad, you’re always excited to see everything that the country has to offer. ]
(else-if:$capellini is "capellini" and $red is true and $hope is true and $imm is true)[ You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. Whenever you’re traveling abroad, you’re always excited to see everything that the country has to offer. ]
(else-if:$capellini is "capellini" and $red is true and $anger is true and $rel is true)[ You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. You’re disheartened that traditions and different ways of living are progressively disappearing. ]
(else-if:$capellini is "capellini" and $red is true and $anger is true and $curiosity is true)[ You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. You’re disheartened that traditions and different ways of living are progressively disappearing. ]
(else-if:$capellini is "capellini" and $red is true and $anger is true and $imm is true)[ You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. You’re disheartened that traditions and different ways of living are progressively disappearing. ]
(else-if:$capellini is "capellini" and $red is true and $resentment is true and $rel is true)[ You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. You’re disheartened that traditions and different ways of living are progressively disappearing.]
(else-if:$capellini is "capellini" and $red is true and $resentment is true and $curiosity is true)[ You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. You’re disheartened that traditions and different ways of living are progressively disappearing. ]
(else-if:$capellini is "capellini" and $red is true and $resentment is true and $imm is true)[ You’ve chosen red as the color that represents the experience the most. This means that you’re a very energetic person, focused on the present and constantly trying to change it for the better. You’re disheartened that traditions and different ways of living are progressively disappearing. ]
(else-if:$capellini is "capellini" and $yellow is true and $surprise is true)[ You’ve chosen yellow as the color that represents the experience the most. This means that you’re always eager to find answers and to discover new things. Whenever you’re traveling abroad, you’re always excited to see everything that the country has to offer. ]
(else-if:$capellini is "capellini" and $yellow is true and $hope is true)[ You’ve chosen yellow as the color that represents the experience the most. This means that you’re always eager to find answers and to discover new things. Whenever you’re traveling abroad, you’re always excited to see everything that the country has to offer. ]
(else-if:$capellini is "capellini" and $yellow is true and $anger is true)[You’ve chosen yellow as the color that represents the experience the most. This means that you’re always eager to find answers and to discover new things. Whenever you’re visiting a foreign country, you’re perceptive about social differences and the problems that the locals have to face.]
(else-if:$capellini is "capellini" and $yellow is true and $resentment is true)[You’ve chosen yellow as the color that represents the experience the most. This means that you’re always eager to find answers and to discover new things. Whenever you’re visiting a foreign country, you’re perceptive about social differences and the problems that the locals have to face.]
(else-if:$capellini is "capellini" and $blue is true and $surprise is true)[ You’ve chosen blue as the color that represents the experience the most. This means that you’re a very spiritual and sensitive person, you’ve never had prejudices and so you’re always ready to embrace different cultures and ethnicities. Keep exploring the world and don’t let your curiosity be stopped by the fear of trying new things.]
(else-if:$capellini is "capellini" and $blue is true and $hope is true)[ You’ve chosen blue as the color that represents the experience the most. This means that you’re a very spiritual and sensitive person, you’ve never had prejudices and so you’re always ready to embrace different cultures and ethnicities. Keep exploring the world and don’t let your curiosity be stopped by the fear of trying new things.]
(else-if:$capellini is "capellini" and $blue is true and $anger is true)[ You’ve chosen blue as the color that represents the experience the most. This means that you’re a very spiritual and sensitive person, your soul is very perceptive about political and social injustices.]
(else-if:$capellini is "capellini" and $blue is true and $resentment is true)[ You’ve chosen blue as the color that represents the experience the most. This means that you’re a very spiritual and sensitive person, your soul is very perceptive about political and social injustices.]}
<div class='red'>[[Continue -> finalsky]]</div></p>
</div></tw-passagedata><tw-passagedata pid="53" name="Health Based Styling" tags="footer" position="1150,1825" size="100,100">(if: $i is 1)[<script>$('tw-story').addClass('health-1');</script>]
(else-if: $l is 1)[<script>$('tw-story').addClass('health-4');</script>]
(if: $m is 1)[<script>$('tw-story').addClass('health-3');</script>]
(else-if: $n is 1)[<script>$('tw-story').addClass('health-2');</script>]
</tw-passagedata><tw-passagedata pid="54" name="I go there and talk to him" tags="" position="1000,650" size="100,100"><div class="box-container">
<div class="video-container">
<video autoplay muted loop poster="cake.jpg" id="bgvid">
<source src="https://github.com/giorgiacrosilla/cena/raw/main/background-images/Fireplace.mp4" type="video/webm">
</video>(live: 0s)[(t8n:"dissolve")[We exchange a respectful greeting and then we sit in front of each other, near the fire.](stop:)]
(live: 2s)[(t8n:"dissolve")[I am very curious because I have never encountered an indigenous tribe before, so I ask the chieftain what his name was and some more information about his tribe.](stop:)]