-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1033 lines (866 loc) · 434 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>CS4700</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:0.1em}0%,to{top:0px}}@keyframes shudder{25%{left:0.1em}75%{left:-0.1em}0%,to{left:0px}}@keyframes buoy{25%{top:0.25em}75%{top:-0.25em}0%,to{top:0px}}@keyframes sway{25%{left:0.25em}75%{left:-0.25em}0%,to{left:0px}}@keyframes pulse{0%{transform:scale(0, 0)}20%{transform:scale(1.2, 1.2)}40%{transform:scale(0.9, 0.9)}60%{transform:scale(1.05, 1.05)}80%{transform:scale(0.925, 0.925)}to{transform:scale(1, 1)}}@keyframes zoom-in{0%{transform:scale(0, 0)}to{transform:scale(1, 1)}}@keyframes shudder-in{0%, to{transform:translateX(0em)}5%, 25%, 45%{transform:translateX(-1em)}15%, 35%, 55%{transform:translateX(1em)}65%{transform:translateX(-0.6em)}75%{transform:translateX(0.6em)}85%{transform:translateX(-0.2em)}95%{transform:translateX(0.2em)}}@keyframes rumble-in{0%, to{transform:translateY(0em)}5%, 25%, 45%{transform:translateY(-1em)}15%, 35%, 55%{transform:translateY(1em)}65%{transform:translateY(-0.6em)}75%{transform:translateY(0.6em)}85%{transform:translateY(-0.2em)}95%{transform:translateY(0.2em)}}@keyframes fidget{0%, 8.1%, 82.1%, 31.1%, 38.1%, 44.1%, 40.1%, 47.1%, 74.1%, 16.1%, 27.1%, 72.1%, 24.1%, 95.1%, 6.1%, 36.1%, 20.1%, 4.1%, 91.1%, 14.1%, 87.1%, to{left:0px;top:0px}8%, 82%, 31%, 38%, 44%{left:-1px}40%, 47%, 74%, 16%, 27%{left:1px}72%, 24%, 95%, 6%, 36%{top:-1px}20%, 4%, 91%, 14%, 87%{top:1px}}@keyframes slide-right{0%{transform:translateX(-100vw)}}@keyframes slide-left{0%{transform:translateX(100vw)}}@keyframes slide-up{0%{transform:translateY(100vh)}}@keyframes slide-down{0%{transform:translateY(-100vh)}}@keyframes fade-right{0%{opacity:0;transform:translateX(-1em)}to{opacity:1}}@keyframes fade-left{0%{opacity:0;transform:translateX(1em)}to{opacity:1}}@keyframes fade-up{0%{opacity:0;transform:translateY(1em)}to{opacity:1}}@keyframes fade-down{0%{opacity:0;transform:translateY(-1em)}to{opacity:1}}@keyframes flicker{0%,29%,31%,63%,65%,77%,79%,86%,88%,91%,93%{opacity:0}30%{opacity:0.2}64%{opacity:0.4}78%{opacity:0.6}87%{opacity:0.8}92%, to{opacity:1}}@keyframes blur{0%{filter:blur(2rem);opacity:0}25%{opacity:1}to{filter:blur(0rem);opacity:1}}.dom-debug-mode tw-story,.dom-debug-mode tw-passage,.dom-debug-mode tw-sidebar,.dom-debug-mode tw-include,.dom-debug-mode tw-hook,.dom-debug-mode tw-expression,.dom-debug-mode tw-link,.dom-debug-mode tw-dialog,.dom-debug-mode tw-columns,.dom-debug-mode tw-column,.dom-debug-mode tw-align{outline:1px solid #f5a3da;min-height:32px;display:block !important}.dom-debug-mode tw-story::before,.dom-debug-mode tw-passage::before,.dom-debug-mode tw-sidebar::before,.dom-debug-mode tw-include::before,.dom-debug-mode tw-hook::before,.dom-debug-mode tw-expression::before,.dom-debug-mode tw-link::before,.dom-debug-mode tw-dialog::before,.dom-debug-mode tw-columns::before,.dom-debug-mode tw-column::before,.dom-debug-mode tw-align::before{position:absolute;top:0;left:0;height:16px;background-color:#f5a3da;color:black;font-size:16px;font-weight:normal;font-style:normal;font-family:monospace;display:inline-block;line-height:100%;white-space:pre;z-index:999997}.dom-debug-mode tw-story:hover,.dom-debug-mode tw-passage:hover,.dom-debug-mode tw-sidebar:hover,.dom-debug-mode tw-include:hover,.dom-debug-mode tw-hook:hover,.dom-debug-mode tw-expression:hover,.dom-debug-mode tw-link:hover,.dom-debug-mode tw-dialog:hover,.dom-debug-mode tw-columns:hover,.dom-debug-mode tw-column:hover,.dom-debug-mode tw-align:hover{outline:1px solid #fc9}.dom-debug-mode tw-story:hover::before,.dom-debug-mode tw-passage:hover::before,.dom-debug-mode tw-sidebar:hover::before,.dom-debug-mode tw-include:hover::before,.dom-debug-mode tw-hook:hover::before,.dom-debug-mode tw-expression:hover::before,.dom-debug-mode tw-link:hover::before,.dom-debug-mode tw-dialog:hover::before,.dom-debug-mode tw-columns:hover::before,.dom-debug-mode tw-column:hover::before,.dom-debug-mode tw-align:hover::before{background-color:#fc9;transition:background-color 1s}.dom-debug-mode tw-passage,.dom-debug-mode tw-include,.dom-debug-mode tw-hook,.dom-debug-mode tw-expression,.dom-debug-mode tw-link,.dom-debug-mode tw-dialog,.dom-debug-mode tw-columns,.dom-debug-mode tw-column,.dom-debug-mode tw-align{padding:1em;margin:0}.dom-debug-mode tw-story::before{content:'<tw-story tags="' attr(tags) '">'}.dom-debug-mode tw-passage::before{top:-16px;content:'<tw-passage tags="' attr(tags) '">'}.dom-debug-mode tw-sidebar::before{top:-16px;content:"<tw-sidebar>"}.dom-debug-mode tw-hook::before{content:'<tw-hook name="' attr(name) '">'}.dom-debug-mode tw-expression::before{content:'<tw-expression name="' attr(name) '">'}.dom-debug-mode tw-link::before{content:'<tw-link name="' attr(name) '">'}.dom-debug-mode tw-dialog::before{content:"<tw-dialog>"}.dom-debug-mode tw-columns::before{content:"<tw-columns>"}.dom-debug-mode tw-column::before{content:"<tw-column>"}.dom-debug-mode tw-align::before{content:"<tw-align>"}.dom-debug-mode tw-include::before{content:'<tw-include type="' attr(type) '" title="' attr(title) '">'}.debug-mode tw-expression{display:inline-block !important}.debug-mode tw-expression[type=variable]::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"$" attr(name)}.debug-mode tw-expression[type=tempVariable]::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"_" attr(name)}.debug-mode tw-expression[return=boolean]{background-color:rgba(179,179,179,0.2)}.debug-mode tw-expression[return=array]{background-color:rgba(255,102,102,0.2)}.debug-mode tw-expression[return=dataset]{background-color:rgba(255,128,0,0.2)}.debug-mode tw-expression[return=number]{background-color:rgba(255,179,102,0.2)}.debug-mode tw-expression[return=datamap]{background-color:rgba(255,255,102,0.2)}.debug-mode tw-expression[return=changer]{background-color:rgba(179,255,102,0.2)}.debug-mode tw-expression[return=lambda]{background-color:rgba(102,255,102,0.2)}.debug-mode tw-expression[return=hookname]{background-color:rgba(102,255,204,0.2)}.debug-mode tw-expression[return=string]{background-color:rgba(102,255,255,0.2)}.debug-mode tw-expression[return=datatype]{background-color:rgba(102,153,255,0.2)}.debug-mode tw-expression[return=gradient],.debug-mode tw-expression[return=colour]{background-color:rgba(204,102,255,0.2)}.debug-mode tw-expression[return=instant],.debug-mode tw-expression[return=macro]{background-color:rgba(240,117,199,0.2)}.debug-mode tw-expression[return=command]{background-color:rgba(153,153,255,0.2)}.debug-mode tw-expression.false{background-color:rgba(255,0,0,0.2) !important}.debug-mode tw-expression[type=macro]::before{content:"(" attr(name) ":)";padding:0 0.5rem;font-size:1rem;vertical-align:middle;line-height:normal;background-color:inherit;border:1px solid rgba(255,255,255,0.5)}.debug-mode tw-hook{background-color:rgba(0,85,255,0.1) !important}.debug-mode tw-hook::before{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"["}.debug-mode tw-hook::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"]"}.debug-mode tw-hook[name]::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"]<" attr(name) "|"}.debug-mode tw-pseudo-hook{background-color:rgba(255,170,0,0.1) !important}.debug-mode tw-collapsed::before{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"{"}.debug-mode tw-collapsed::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"}"}.debug-mode tw-verbatim::before,.debug-mode tw-verbatim::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:"`"}.debug-mode tw-align[style*="text-align: center"]{background:linear-gradient(to right, rgba(255,204,189,0) 0%, rgba(255,204,189,0.25) 50%, rgba(255,204,189,0) 100%)}.debug-mode tw-align[style*="text-align: left"]{background:linear-gradient(to right, rgba(255,204,189,0.25) 0%, rgba(255,204,189,0) 100%)}.debug-mode tw-align[style*="text-align: right"]{background:linear-gradient(to right, rgba(255,204,189,0) 0%, rgba(255,204,189,0.25) 100%)}.debug-mode tw-column{background-color:rgba(189,228,255,0.2)}.debug-mode tw-enchantment{animation:enchantment 0.5s infinite;border:1px solid}.debug-mode tw-link::after,.debug-mode tw-broken-link::after{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:attr(passage-name)}.debug-mode tw-include{background-color:rgba(204,128,51,0.1)}.debug-mode tw-include::before{font-size:0.8rem;padding-left:0.2rem;padding-right:0.2rem;vertical-align:top;content:attr(type) ' "' attr(title) '"'}@keyframes enchantment{0%,to{border-color:#ffb366}50%{border-color:#6fc}}tw-debugger{position:fixed;box-sizing:border-box;bottom:0;right:0;z-index:999999;min-width:10em;min-height:1em;padding:0em 0.5em 0.5em 1em;font-size:1.25em;font-family:sans-serif;color:#000;border-left:solid #000 2px;border-top:solid #000 2px;border-top-left-radius:.5em;background:#fff;opacity:1}tw-debugger select{margin-right:1em;width:12em}tw-debugger button{border-radius:3px;border:solid #999 1px;margin:auto 4px;background-color:#fff;font-size:inherit;color:#000}tw-debugger button.enabled{background-color:#eee;box-shadow:inset #ddd 3px 5px 0.5em}tw-debugger .panel{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:absolute;bottom:100%;left:-2px;right:0;padding:1em;max-height:40vh;overflow-y:scroll;overflow-x:hidden;z-index:999998;background:#fff;border:inherit;border-bottom:solid #999 2px;border-top-left-radius:.5em;border-bottom-left-radius:.5em;font-size:0.8em}tw-debugger .panel:empty,tw-debugger .panel[hidden]{display:none}tw-debugger .panel-source,tw-debugger .panel-row-source{font-family:monospace;overflow-x:scroll;white-space:pre;-ms-flex-preferred-size:100%;flex-basis:100%}tw-debugger .panel-row-source{margin:5px 0}tw-debugger .panel-rows{width:100%;overflow-x:scroll}tw-debugger .panel-rows>*{display:table-row}tw-debugger .panel-rows>div:nth-of-type(2n){background:#EEE}tw-debugger .panel-row-buttons{text-align:right}tw-debugger .panel-variables .panel-rows:empty::before{content:"~ No variables ~";font-style:italic;color:#888;text-align:center}tw-debugger .panel-enchantments .panel-rows:empty::before{content:"~ No enchantments ~";font-style:italic;color:#888;text-align:center}tw-debugger .panel-errors .panel-rows:empty::before{content:"~ No errors... for now. ~";font-style:italic;color:#888;text-align:center}tw-debugger .panel-rows:empty+.panel-variables-bottom{display:none}tw-debugger .panel-storylets:not(.panel-exclusive) .storylet-exclusive,tw-debugger .panel-storylets:not(.panel-urgent) .storylet-urgent{display:none}tw-debugger .panel-variables-bottom{padding-top:5px}tw-debugger .enchantment-row{min-height:1.5em}tw-debugger .variable-path{opacity:0.4}tw-debugger .temporary-variable-scope,tw-debugger .enchantment-local{font-family:sans-serif;font-weight:normal;opacity:0.8;font-size:0.75em}tw-debugger .temporary-variable-scope:not(:empty)::before,tw-debugger .enchantment-local:not(:empty)::before{content:" in "}tw-debugger .variable-name,tw-debugger .enchantment-name{font-family:monospace;font-weight:bold}tw-debugger .variable-type{color:#444;font-weight:normal;text-overflow:ellipsis;overflow:hidden;max-width:10em}tw-debugger .error-row{display:table-row;background-color:rgba(230,101,204,0.3)}tw-debugger .error-row:nth-of-type(2n){background-color:rgba(237,145,219,0.3)}tw-debugger .error-row>*{display:table-cell;padding:0.25em 0.5em}tw-debugger .error-row .error-message{cursor:help}tw-debugger .error-row .error-passage{color:#444}tw-debugger .storylet-row{background-color:rgba(201,233,222,0.3)}tw-debugger .storylet-row:nth-child(2n){background-color:rgba(128,203,178,0.3)}tw-debugger .storylet-row.storylet-closed{font-style:italic;opacity:0.4;background-color:rgba(217,217,217,0.3)}tw-debugger .storylet-row.storylet-closed:nth-child(2n){background-color:rgba(166,166,166,0.3)}.storylet-error tw-debugger .storylet-row{background-color:rgba(230,101,204,0.3)}.storylet-error tw-debugger .storylet-row:nth-child(2n){background-color:rgba(237,145,219,0.3)}tw-debugger .storylet-row .storylet-name,tw-debugger .storylet-row .storylet-value{display:inline-block;width:50%}tw-debugger .tabs{padding-bottom:0.5em}tw-debugger .tab{border-radius:0px 0px 0.5em 0.5em;border-top:none}tw-debugger .resizer{position:absolute;height:3em;border-left:2px solid #ccc;border-right:2px solid #ccc;top:10px;left:4px;width:8px;cursor:ew-resize}tw-dialog{z-index:999997;border:#fff solid 2px;padding:2em;color:#fff;background-color:#000;display:block}@media (min-width: 576px){tw-dialog{max-width:50vw}}tw-dialog input[type=text]{font-size:inherit;width:100%}tw-dialog-links{text-align:right;display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end}tw-backdrop{z-index:999996;position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.8);display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}tw-backdrop ~ tw-backdrop{display:none}tw-link,.link,tw-icon,.enchantment-clickblock{cursor:pointer}tw-link,.enchantment-link{color:#4169E1;font-weight:bold;text-decoration:none;transition:color 0.2s ease-in-out}tw-passage [style^="color"] tw-link:not(:hover),tw-passage [style*=" color"] tw-link:not(:hover),tw-passage [style^="color"][hover="true"] tw-link:hover,tw-passage [style*=" color"][hover="true"] tw-link:hover,tw-passage [style^="color"] .enchantment-link:not(:hover),tw-passage [style*=" color"] .enchantment-link:not(:hover),tw-passage [style^="color"][hover="true"] .enchantment-link:hover,tw-passage [style*=" color"][hover="true"] .enchantment-link:hover{color:inherit}tw-link:hover,.enchantment-link:hover{color:#00bfff}tw-link:active,.enchantment-link:active{color:#DD4B39}.visited{color:#6941e1}tw-passage [style^="color"] .visited:not(:hover),tw-passage [style*=" color"] .visited:not(:hover),tw-passage [style^="color"][hover="true"] .visited:hover,tw-passage [style*=" color"][hover="true"] .visited:hover{color:inherit}.visited:hover{color:#E3E}tw-broken-link{color:#993333;border-bottom:2px solid #993333;cursor:not-allowed}tw-passage [style^="color"] tw-broken-link:not(:hover),tw-passage [style*=" color"] tw-broken-link:not(:hover),tw-passage [style^="color"][hover="true"] tw-broken-link:hover,tw-passage [style*=" color"][hover="true"] tw-broken-link:hover{color:inherit}.enchantment-mouseover{border-bottom:2px dashed #999}.enchantment-mouseout{border:rgba(64,149,191,0.6) 1px solid}.enchantment-mouseout:hover{background-color:rgba(175,197,207,0.75);border:transparent 1px solid;border-radius:0.2em}.enchantment-clickblock{width:100%;height:100%;display:block}.enchantment-clickblock>:not(tw-enchantment)::after{content:"";width:100%;height:100%;top:0;left:0;display:block;box-sizing:border-box;position:absolute;pointer-events:none;color:rgba(65,105,225,0.5);transition:color 0.2s ease-in-out}.enchantment-clickblock>:not(tw-enchantment):hover::after{color:rgba(0,191,255,0.5)}.enchantment-clickblock>:not(tw-enchantment):active::after{color:rgba(222,78,59,0.5)}.enchantment-clickblock>:not(tw-enchantment)::after{box-shadow:inset 0 0 0 0.5vmax}.enchantment-clickblock>tw-passage::after,.enchantment-clickblock>tw-sidebar::after{box-shadow:0 0 0 0.5vmax}.enchantment-mouseoverblock>:not(tw-enchantment)::after{content:"";width:100%;height:100%;top:0;left:0;display:block;box-sizing:border-box;position:absolute;pointer-events:none;border:2px dashed #999}.enchantment-mouseoutblock>:not(tw-enchantment)::after{content:"";width:100%;height:100%;top:0;left:0;display:block;box-sizing:border-box;position:absolute;pointer-events:none;border:rgba(64,149,191,0.6) 2px solid}.enchantment-mouseoutblock:hover>:not(tw-enchantment)::after{content:"";width:100%;height:100%;top:0;left:0;display:block;box-sizing:border-box;position:absolute;pointer-events:none;background-color:rgba(175,197,207,0.75);border:transparent 2px solid;border-radius:0.2em}tw-link.enchantment-button,.enchantment-link.enchantment-button,.enchantment-button:not(.enchantment-link) tw-link,.enchantment-button:not(.enchantment-link) .enchantment-link{border-radius:16px;border-style:solid;border-width:2px;text-align:center;padding:0px 8px;display:block}tw-dialog-links{padding-top:1.5em}tw-dialog-links tw-link{border-radius:16px;border-style:solid;border-width:2px;text-align:center;padding:0px 8px;display:block;display:inline-block}html{margin:0;height:100%;overflow-x:hidden}*,:before,:after{position:relative;box-sizing:inherit}body{margin:0;height:100%}tw-storydata{display:none}tw-story{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;font:100% Georgia, serif;box-sizing:border-box;width:100%;min-height:100%;font-size:1.5em;line-height:1.5em;padding:5% 5%;overflow:hidden;background-color:#000;color:#fff}tw-story [style*=content-box] *{box-sizing:border-box}@media (min-width: 576px){tw-story{padding:5% 20%}}tw-story tw-consecutive-br{display:block;height:1.6ex;visibility:hidden}tw-story select{background-color:transparent;font:inherit;border-style:solid;padding:2px}tw-story select:not([disabled]){color:inherit}tw-story textarea{resize:none;background-color:transparent;font:inherit;color:inherit;border-style:none;padding:2px}tw-story input[type=checkbox]{transform:scale(1.5);margin:0 0.5em}tw-story tw-noscript{animation:appear 0.8s}tw-passage{display:block}tw-sidebar{text-align:center;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}@media (min-width: 576px){tw-sidebar{left:-5em;width:3em;position:absolute;-ms-flex-direction:column;flex-direction:column}}tw-icon{display:inline-block;margin:0.5em 0;font-size:66px;font-family:"Verdana",sans-serif}tw-icon[alt]{opacity:0.2}tw-icon[alt]:hover{opacity:0.4}tw-icon[data-label]::after{font-weight:bold;content:attr(data-label);font-size:20px;bottom:-20px;left:-50%;white-space:nowrap}tw-meter{display:block}tw-hook:empty,tw-expression:empty{display:none}tw-error{display:inline-block;border-radius:0.2em;padding:0.2em;font-size:1rem;cursor:help;white-space:pre-wrap}tw-error.error{background-color:rgba(223,58,190,0.6);color:#fff}tw-error.warning{background-color:rgba(223,140,58,0.6);color:#fff;display:none}.debug-mode tw-error.warning{display:inline}tw-error-explanation{display:block;font-size:0.8rem;line-height:1rem}tw-open-button,tw-folddown{cursor:pointer;line-height:0em;border-radius:1px;border:1px solid black;font-size:0.8rem;margin:0 0.4rem;padding:2px;white-space:pre}tw-folddown::after{content:"\25b6"}tw-folddown.open::after{content:"\25bc"}tw-open-button::after{content:"Open"}tw-notifier{border-radius:0.2em;padding:0.2em;font-size:1rem;background-color:rgba(223,182,58,0.4);display:none}.debug-mode tw-notifier{display:inline}tw-notifier::before{content:attr(message)}tw-colour{border:1px solid black;display:inline-block;width:1em;height:1em}h1{font-size:3em}h2{font-size:2.25em}h3{font-size:1.75em}h1,h2,h3,h4,h5,h6{line-height:1em;margin:0.3em 0 0.6em 0}pre{font-size:1rem;line-height:initial}small{font-size:70%}big{font-size:120%}mark{color:rgba(0,0,0,0.6);background-color:#ff9}ins{color:rgba(0,0,0,0.6);background-color:rgba(255,242,204,0.5);border-radius:0.5em;box-shadow:0em 0em 0.2em #ffe699;text-decoration:none}center{text-align:center;margin:0 auto;width:60%}blink{text-decoration:none;animation:fade-in-out 1s steps(1, end) infinite alternate}tw-align{display:block}tw-columns{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:justify;justify-content:space-between}.transition-in{animation:appear 0ms step-start}.transition-out{animation:appear 0ms step-end}[data-t8n^=dissolve].transition-in,[data-t8n=fade].transition-in{animation:appear .8s}[data-t8n^=dissolve].transition-out,[data-t8n=fade].transition-out{animation:appear .8s reverse}[data-t8n^=shudder].transition-in{display:inline-block !important;animation:shudder-in .8s}[data-t8n^=shudder].transition-out{display:inline-block !important;animation:shudder-in .8s reverse}[data-t8n^=rumble].transition-in{display:inline-block !important;animation:rumble-in .8s}[data-t8n^=rumble].transition-out{display:inline-block !important;animation:rumble-in .8s reverse}[data-t8n^=pulse].transition-in{animation:pulse .8s;display:inline-block !important}[data-t8n^=pulse].transition-out{animation:pulse .8s reverse;display:inline-block !important}[data-t8n^=zoom].transition-in{animation:zoom-in .8s;display:inline-block !important}[data-t8n^=zoom].transition-out{animation:zoom-in .8s reverse;display:inline-block !important}[data-t8n^=blur].transition-in{animation:blur .8s;display:inline-block !important}[data-t8n^=blur].transition-out{animation:blur .8s reverse;display:inline-block !important}[data-t8n^=slideleft].transition-in{animation:slide-left .8s;display:inline-block !important}[data-t8n^=slideleft].transition-out{animation:slide-right .8s reverse;display:inline-block !important}[data-t8n^=slideright].transition-in{animation:slide-right .8s;display:inline-block !important}[data-t8n^=slideright].transition-out{animation:slide-left .8s reverse;display:inline-block !important}[data-t8n^=slideup].transition-in{animation:slide-up .8s;display:inline-block !important}[data-t8n^=slideup].transition-out{animation:slide-down .8s reverse;display:inline-block !important}[data-t8n^=slidedown].transition-in{animation:slide-down .8s;display:inline-block !important}[data-t8n^=slidedown].transition-out{animation:slide-up .8s reverse;display:inline-block !important}[data-t8n^=fadeleft].transition-in{animation:fade-left .8s;display:inline-block !important}[data-t8n^=fadeleft].transition-out{animation:fade-right .8s reverse;display:inline-block !important}[data-t8n^=faderight].transition-in{animation:fade-right .8s;display:inline-block !important}[data-t8n^=faderight].transition-out{animation:fade-left .8s reverse;display:inline-block !important}[data-t8n^=fadeup].transition-in{animation:fade-up .8s;display:inline-block !important}[data-t8n^=fadeup].transition-out{animation:fade-down .8s reverse;display:inline-block !important}[data-t8n^=fadedown].transition-in{animation:fade-down .8s;display:inline-block !important}[data-t8n^=fadedown].transition-out{animation:fade-up .8s reverse;display:inline-block !important}[data-t8n^=flicker].transition-in{animation:flicker .8s}[data-t8n^=flicker].transition-out{animation:flicker .8s reverse}
</style>
</head>
<body>
<tw-story><noscript><tw-noscript>JavaScript needs to be enabled to play CS4700.</tw-noscript></noscript></tw-story>
<tw-storydata name="CS4700" startnode="11" creator="Twine" creator-version="2.3.13" ifid="5C66DAAE-9E00-494A-84A0-40DBF88D3657" zoom="1" format="Harlowe" format-version="3.2.1" options="" hidden><style role="stylesheet" id="twine-user-stylesheet" type="text/twine-css">tw-story[tags~="dorm"] {
background-image: url("https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/bgs/dorm.png");
background-size: cover;
}
tw-story[tags~="campus"] {
background-image: url("https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/bgs/campus.png");
background-size: cover;
}
tw-story[tags~="store"] {
background-image: url("https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/bgs/store.png");
background-size: cover;
}
tw-story[tags~="library"] {
background-image: url("https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/bgs/library.png");
background-size: cover;
}
tw-story[tags~="exercise"] {
background-image: url("https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/bgs/exercise.png");
background-size: cover;
}
tw-story[tags~="leetcode"] {
background-image: url("https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/bgs/leetcode.png");
background-size: cover;
}
tw-story[tags~="title"] {
background-image: url("https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/tfioc_highres.png");
background-size: cover;
}
body, tw-story {
}
tw-passage {
background-color: rgba(0,0,0,0.4);
border-radius: 8px;
padding: 5%;
margin: auto;
}
.character {
height: 25vw;
width: auto;
text-align: center;
}
#sidebar {
font-size: 16px;
line-height: 1.5em;
background-color: rgba(0,0,0,0.4);
border-radius: 8px;
padding: 25%;
margin: auto;
}
.sidebar.label {
text-align: left;
float: left;
width: 100%;
text-transform: capitalize;
}
.sidebar.label:after {
content: ": ";
}
.sidebar.value {
font-weight: bold;
text-align: right;
float: right;
}
.sidebar.value.money:before {
content: "$";
font-weight: bold;
}</style><script role="script" id="twine-user-script" type="text/twine-javascript">/* Twine sidebar
*
* created by Avram, www.avramovic.info
*/
if (!window.harlowe){
window.harlowe = {"State": State};
window.harlowe.stats = {
"money": 0,
"simp": 0,
"leetcode":0,
"health":0
}; // <- this is all you need to change
window.harlowe.oldValues = '';
}
window.setInterval(function() {
if ($('#sidebar').length == 0) {
$('tw-sidebar').append('<div id="sidebar"></div>');
}
var html = '';
var newValues = '';
for (var item in window.harlowe.stats) {
var defaultValue = window.harlowe.stats[item];
var hasItem = typeof window.harlowe.State.variables[item] !== "undefined";
if (hasItem || defaultValue !== false) {
var value = hasItem ? window.harlowe.State.variables[item] : defaultValue;
newValues += ""+value;
html += '<div class="sidebar item '+item+'"><span class="sidebar label '+item+'">'+item+'</span><span class="sidebar value '+item+'">'+value+'</span>';
}
}
// if (window.harlowe.oldValues != newValues) {
window.harlowe.oldValues = newValues;
$('#sidebar').html(html);
// }
}, 500);</script><tw-passagedata pid="1" name="Morning Before School" tags="dorm" position="301,499" size="100,100">(if: ($time/$DAY_TIME is 0))[(set: $weekday to "Monday")]
(else-if: ($time/$DAY_TIME is 1))[(set: $weekday to "Tuesday")]
(else-if: ($time/$DAY_TIME is 2))[(set: $weekday to "Wednesday")]
(else-if: ($time/$DAY_TIME is 3))[(set: $weekday to "Thursday")]
(else-if: ($time/$DAY_TIME is 4))[(set: $weekday to "Friday")]
(set: $time_string to $time_array's (($time % 6) + 1))
|body>[
Your roommmate is here.
|chad>[<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/roommate.png" class=character>]
Time: $time_string
Today is $weekday, and you've got some time to kill before class. What would you like to do?
[[leetcode->leetcode]]
[[roommate->engage with roommate]]
[[work->go to work]]
[[kill time->kill time]]
[[exercise->exercise]]
]
(if: $time % $DAY_TIME is $MORNING_BEFORE)[
(replace: ?body)[
Seems like that's all you've got time for today. Time to get a move on!
[[Go to school->Morning at School]]
]
]
(if: ($roommate) > 2)[
(replace: ?chad)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/chad.png" class=character>
]
]</tw-passagedata><tw-passagedata pid="2" name="Morning at School" tags="campus" position="601,501" size="100,100">(set: $time_string to $time_array's (($time % 6) + 1))
|body>[
Time: $time_string
It is still the morning of $weekday, but now you're at the Bronco Student Center. What would you like to do?
[[leetcode->leetcode]]
[[exercise->exercise]]
[[dine with jane doe->dining hall]]
(unless: $gd_attendance contains $weekday)[[[game dev->game dev class]]]
[[library->library]]
[[go to work->go to work]]
]
(if: ($time%$DAY_TIME) is $MORNING_SCHOOL)[
(replace: ?body)[
Morning is over, and it's now U-Hour! Relax before the rest of your day.
[[U-Hour->U-Hour]]
]
]</tw-passagedata><tw-passagedata pid="3" name="U-Hour" tags="campus" position="852,529" size="100,100">(set: $time_string to $time_array's (($time % 6) + 1))
|body>[
Time: $time_string
It's now U-Hour!
(if: $weekday is "Monday" or $weekday is "Wednesday" or $weekday is "Friday")[
You don't remember there being U-Hour on $weekday, but you brush off that fact.
]
U-Hour is your favorite part of the day. Weird stuff always happens during U-Hour. What would you like to do?
[[Go to pop-up bookstore ->popup book store]]
[[Do some LeetCode ->leetcode]]
[[Chat up Jane Doe ->dining hall]]
(if: ($weekday is "Tuesday" or $weekday is "Thursday"))[
[[Go to the Society of Computer Science->club meeting]]
]
]
(if: ($time%$DAY_TIME) is $U_HOUR)[
(replace: ?body)[
U-Hour comes and goes, and now it's time for the afternoon slog.
[[Afternoon on Campus->Afternoon on Campus]]
]
]</tw-passagedata><tw-passagedata pid="4" name="Afternoon on Campus" tags="campus" position="1439,507" size="100,100">(set: $time_string to $time_array's (($time % 6) + 1))
|body>[
Time: $time_string
It's late afternoon but there's still much to do!
[[leetcode->leetcode]]
[[exercise->exercise]]
[[dine with jane doe->dining hall]]
[[cla building->cla building]]
[[go to work->go to work]]
(unless: $gd_attendance contains $weekday)[[[game dev->game dev class]]]
[[library->library]]
]
(if: ($time%$DAY_TIME) is 0)[
(replace: ?body)[
The day is over for now. Go home, get some food, and get ready for tomorrow!
[[Sleeptime awaits!->sleep]]
]
]</tw-passagedata><tw-passagedata pid="5" name="Evening on Campus" tags="campus" position="1934,442" size="100,100">
<!--
|body>[
Time: $time
[[leetcode->leetcode]]
[[exercise->exercise]]
[[library->library]]
[[hit up jane doe->dining hall]]
]
(if: ($time%$DAY_TIME) is 0)[
(replace: ?body)[
[[go to bed->sleep]]
]
]
--></tw-passagedata><tw-passagedata pid="6" name="kill time" tags="leetcode" position="298,701" size="100,100">You spend part of the morning looking at memes through Harvey's patented meme stream site http://memepoly.com. You estimate that an hour has passed.
(set: $histIndex to (history:)'s length)
(link-goto: "Welp, that's that.", (history:)'s ($histIndex))
(set: $time to $time+1)</tw-passagedata><tw-passagedata pid="7" name="exercise" tags="exercise" position="701,0" size="100,100">(set: _noun_choice to (random: 1, $exercise_noun's length))
(set: _verb_choice to (random: 1, $exercise_verb's length))
You grab your towel and head to the BRIC. You leave your personal belongings in the locker room and spend the better part of an hour (print: ($exercise_verb's (_verb_choice))) a (print: ($exercise_noun's (_noun_choice)))
+2 HEALTH
(if: $inv contains "ss")[
The acquired knowledge from Starting Strength makes your time in the gym even more effective!
+1 HEALTH
(set: $health to $health + 1)
]
(set: $histIndex to (history:)'s length)
(link-goto: "Incredible gains!", (history:)'s ($histIndex))
(set: $time to $time+1)
(set: $health to $health+2)</tw-passagedata><tw-passagedata pid="8" name="go to work" tags="campus" position="97,600" size="100,100">(set: _noun_choice to (random: 1, $work_noun's length))
(set: _verb_choice to (random: 1, $work_verb's length))
(set: _skill_choice to (random: 1, $work_skill's length))
You go to your student job with the administration, where you develop your (print: ($work_skill's (_skill_choice))) by (print: ($work_verb's (_verb_choice))) a way to (print: ($work_noun's (_noun_choice))).
MONEY +2
(if: $inv contains "htwfaip")
[
You are so great at Winning Friends and Influencing People that your boss gives you more money! Wow! That can't be legal!
MONEY +1
(set: $money to $money + 1)
]
(set: $histIndex to (history:)'s length)
(link-goto: "Here comes the money", (history:)'s ($histIndex))
(set: $time to $time+1)
(set: $money to $money+2)</tw-passagedata><tw-passagedata pid="9" name="leetcode" tags="leetcode" position="900,0" size="100,100">(set: _noun_choice to (random: 1, $leetcode_noun's length))
(set: _verb_choice to (random: 1, $leetcode_verb's length))
Alan Turing, from beyond the grave, sheds a single tear as you spend the better part of an hour (print: ($leetcode_verb's (_verb_choice))) a (print: ($leetcode_noun's (_noun_choice)))
LEETCODE +2
(if: $inv contains "ec++")
[
Your C++ is so Effective thanks to Effective C++ that your LeetCode solutions routinely run faster than the other submissions. Go you!
LEETCODE +1
(set: $leetcode to $leetcode+1)
]
(set: $histIndex to (history:)'s length)
(link-goto: "The grind never ends", (history:)'s ($histIndex))
(set: $time to $time+1)
(set: $leetcode to $leetcode+2)</tw-passagedata><tw-passagedata pid="10" name="engage with roommate" tags="dorm" position="199,200" size="100,100">(if: $roommate is 0)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/roommate.png" class=character>
You come across your roommate, Chad. You feel bad for him because he's never lived up to his name as Chad. He's strugging with whether or not to go to class, so you decide to offer some sage advice.
[[Offer sage advice->roommate thanks]]
[[Go do something else->Morning Before School]]
]
(else-if: $roommate is 1)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/roommate.png" class=character>
You once again encounter your roommate, Chad. He's looking much healthier since you last spoke to him. He asks you for some advice on the gym and getting ripped in the span of a couple days. You know a few pointers as a BRIC regular yourself.
[[Give him a few pointers->roommate thanks]]
[[Go do something else->Morning Before School]]
]
(else-if: $roommate is 2)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/roommate.png" class=character>
You see your roommate Chad, looking more healthy and confident than ever! He's having problems with his girlfriend and romance is a particular strength of yours. Friends often come to you for your precise and intelligent advice.
[[Give him some precise and intelligent advice->roommate thanks]]
[[Go do something else->Morning Before School]]
]
(else:)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/chad.png" class=character>
You see your roommate Chad, or at least you think you do. He must be three feet taller than the last time you saw him and his very image seems to evade description. You decide against trying to give him any more advice.
(set: $histIndex to (history:)'s length)
(link-goto: "Uh oh", (history:)'s ($histIndex))
]</tw-passagedata><tw-passagedata pid="11" name="Game Start" tags="title" position="110,326" size="100,100">The year is 20XX. You're a student attending Cal Poly Pomona. Build relationships and skills in anticipation of a Friday calamity.
[[Oh wow, okay->Morning Before School]]
(set: $time to 0)
(set: $time_string to "null")
(set: $MORNING_BEFORE to 1)
(set: $MORNING_SCHOOL to $MORNING_BEFORE + 2)
(set: $U_HOUR to $MORNING_SCHOOL + 1)
(set: $AFTERNOON to $U_HOUR + 2)
(set: $DAY_TIME to $AFTERNOON)
(set: $TOTAL_TIME to $AFTERNOON * 5)
(set: $jane_health to 4)
(set: $jane_leetcode to 4)
(set: $degree to 0)
(set: $roommate to 0)
(set: $billy to 0)
(set: $SIMP_THRESHOLD to 12)
(set: $leetcode to 0)
(set: $health to 0)
(set: $simp to 0)
(set: $money to 0)
(set: $school to 0)
(set: $weekday to "Monday")
(set: $gd_correct to 0)
(set: $gd_attendance to
(a:
)
)
(set: $inv to
(a:
)
)
(set: $leetcode_verb to
(a:
"reversing",
"implementing",
"debugging",
"refactoring",
"sorting",
"punching"
)
)
(set: $leetcode_noun to
(a:
"linked list",
"heap",
"binary tree",
"circularly linked list",
"doubly linked list",
"tetranomically linked list",
"2d array",
"4d array",
)
)
(set: $exercise_verb to
(a:
"lifting",
"deadlifting",
"overhead pressing",
"bench pressing",
"punching",
"running on",
"smashing into",
"jumping on",
"crossfitting in the proximity of"
)
)
(set: $exercise_noun to
(a:
"barbell",
"set of dumbells",
"llama",
"treadmill",
"fellow gym goer",
"climbing wall",
)
)
(set: $time_array to
(a:
"7:00 AM",
"8:00 AM",
"9:00 AM",
"12:00 PM",
"2:00 PM",
"4:00 PM"
)
)
(set: $work_verb to
(a:
"orchestrating",
"coordinating",
"planning",
"overseeing",
"devising",
"implementing",
"designing",
"pioneering",
"initiating",
"improving"
)
)
(set: $work_noun to
(a:
"help computer science majors make friends",
"make the school more attractive to Pepsi Co.",
"make weekends at CPP less dead",
"reduce the amount of math courses computer science students have to take",
"increase the number of llamas on campus",
"make the school more attractive than SLO",
"decrease the amount of parking available on campus"
)
)
(set: $work_skill to
(a:
"adaptability",
"communication",
"creative thinking",
"positivity",
"time management",
"motivation",
"problem-solving",
"critical thinking",
"conflict resolution"
)
)</tw-passagedata><tw-passagedata pid="12" name="popup book store" tags="store" position="525,1234" size="100,100">(unless: (history:) contains "popup book store")[
You take some time out of the day to go to CPP's famous popup book store. It's right outside the Bronco Student Center.
You see a man wearing sunglasses and a red jacket. His nametag reads //Dr. Discourtesy//. You don't think this man has a medical license. He has a strange beard.
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/doc.png" class=character>
"Hi! I'm trying to raise money to become a streamer on Twitch! Please be sure to buy as much as you can!"
]
(else:)[
You return to the popup book store. Dr. Discourtesy greets you with a toothy grin.
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/doc.png" class=character>
"Please buy a lot so I can start my streaming career!"
]
MONEY: $money
(unless: $inv contains "ss")[
Pick up Starting Strength\
(click:"Pick up Starting Strength")
[
It's Starting Strength, a primer on exercise. You get the feeling that this book will improve your results at the BRIC.
Cost: 4 MONEY
[[BUY -> buy starting strength]]
]\
]
\
(unless: $inv contains "ec++")[
Pick up Effective C++\
(click:"Pick up Effective C++")
[
It's Effectice C++, a comprehensive guide to writing professional C++. You get the feeling that this book will improve your results from LeetCode.
Cost: 4 MONEY
[[BUY->buy effective c++]]
]\
]
\
(unless: $inv contains "htwfaip")[
Pick up How to Win Friends and Influence People\
(click:"Pick up How to Win Friends and Influence People")[
It's How to Win Friends and Influence People, a book on how to win friends and influence people. You get the feeling that this book will help you win friends and influence people (and also make you more money at work).
COST: 4 MONEY
[[BUY->buy htwfaip]]
]\
]
\
(unless: $inv contains "silicon" or $inv contains "key")[
Pick up hunk of silicon\
(click:"Pick up hunk of silicon")
[
It's a hunk of silicon. You feel magical energy radiating off of it. You get the feeling that there is more to this than meets the eye.
COST: 4 MONEY
[[BUY->buy silicon]]
]\
]
[[Back ->U-Hour]] </tw-passagedata><tw-passagedata pid="13" name="club meeting" tags="campus" position="1023,414" size="100,100">You enter a dimly lit classroom in the College of Science main building. Inside, you see dozens of figures clad in black robes with what looks a motherboard in the center of the room, and a pentagram under that. Your incredulity is interupted by one of the hooded figures approaching you.
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/hooded.png" class=character>
"Speak, for thy servant heareth" whispers the hooded figure.
(if: $inv contains "silicon")[
[[Show the silicon->silicon transformed]]
]
[[Ask for a blessing->blessing]]
[["What is going on here?"->scs explanation]]</tw-passagedata><tw-passagedata pid="14" name="dining hall" tags="campus" position="881,709" size="100,100">Jane Doe is here.
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/jane.png" class=character>
(unless: (history:) contains "dining hall intro")[
You make your way to Cal Poly Pomona's famous all-you-can-eat dining hall. It's so famous, in fact, that you can barely recall its name. Center dining? Point Loma? Anyways...
The food isn't as interesting as who you see there. Why, it's Jane Doe! She's a girl from your high school who went to Cal Poly Pomona, just like you!
[[Approach her->dining hall jane]]
(set: $histIndex to (history:)'s length)
(link-goto: "Nah", (history:)'s ($histIndex))
]
(else:)[
You decide to take another trip to Los Olivos. Wait, Los Olivos? No, this is Centerpointe. Understandable mistake.
You see Jane in the distance and you decide to make your move.
[[Make your move->dining hall jane]]
(set: $histIndex to (history:)'s length)
(link-goto: "Nah", (history:)'s ($histIndex))
]</tw-passagedata><tw-passagedata pid="15" name="sleep" tags="dorm" position="1127,1158" size="100,100">Slumber falls upon you, and a new day awaits.
(unless: $weekday is "Friday")[
[[New day->Morning Before School]]
]
(else:)[
[[New day...?->ending]]
]</tw-passagedata><tw-passagedata pid="16" name="game dev class" tags="campus" position="900,901" size="100,100">(unless: (history:) contains "game dev class")[
You go to game dev class, which is being taught by Dr. Winterville. You definitely like Dr. Summerville better but he left the school abruptly last semester, and you need this class to graduate.
]
(set: $gd_attendance to ($gd_attendance + (a: $weekday)))
In game dev, you take your seat and wait for class to begin. Dr. Winterville bursts in through the door and gives you a question:
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/adrian.png" class=character>
(if: $gd_attendance's length is 1)
[
What is the time complexity of quicksort?
[[O(nlogn)->correct]]
[[O(logn)->incorrect]]
]\
(if: $gd_attendance's length is 2)[One purpose of preprocessor commands is to tell the preprocessor to make substitutions in code
[[True->correct]]
[[False->incorrect]]
]\
(if: $gd_attendance's length is 3)[The use of a precision modifier when displaying a floating point value will result in truncating all digits beyond the specified precision value
[[True->correct]]
[[False->incorrect]]
]\
(if: $gd_attendance's length is 4)[The compound assignment operator (/=) has a higher level of precedence than the addition operator
[[True->incorrect]]
[[False->correct]]
]\
(if: $gd_attendance's length is 5)[Data sent from the calling function to the function being called will be received in the same order in which it was passed
[[True->correct]]
[[False->incorrect]]
]\
(set: $histIndex to (history:)'s length)
(link-goto: "Back", (history:)'s ($histIndex))
(set: $time to $time+1)
(set: $school to $school+2)</tw-passagedata><tw-passagedata pid="17" name="library" tags="library" position="1319,155" size="100,100">(unless: (history:) contains "library")[
You walk into the library, the finest napping institution on campus. You've always loved the library as someone who loves books, words, and punctuation. The library is full of these things!
]
You notice Billy the Bronco in full gear sitting at a study table. His fur suit looks very uncomfortable. He motions to you as if to invite you to sit with him.
[[Take a nap->nap]]
[[Sit with Billy->billy]]
(set: $histIndex to (history:)'s length)
(link-goto: "Back", (history:)'s ($histIndex))</tw-passagedata><tw-passagedata pid="18" name="cla building" tags="campus" position="1899,700" size="100,100">You make your way to the CLA building, the most structurally sound structure on campus. Nothing goes on in here anymore because the administration determined it was so structurally sound.
[[admire the building->admire the building]]
[[examine the building->examine the building]]
(set: $histIndex to (history:)'s length)
(link-goto: "Back", (history:)'s ($histIndex))
</tw-passagedata><tw-passagedata pid="19" name=" buy starting strength" tags="store" position="710,1434" size="100,100">(if: $money >= 4)[
You purchase Starting Strength
(set: $inv to $inv + (a: "ss"))
[[Sweet.->book store vanishes]]
]
(else:)
[
A voice booms from another direction.
"I'm sorry friend, I can't GIVE credit. Come back when you're a little, mmmm... RICHER!"
[[Can do, strange man->popup book store]]
]</tw-passagedata><tw-passagedata pid="20" name="buy effective c++" tags="store" position="714,1314" size="100,100">(if: $money >= 4)[
You purchase Effective C++
(set: $inv to $inv + (a: "ec++"))
[[Sweet.->book store vanishes]]
]
(else:)
[
A voice booms from another direction.
"I'm sorry friend, I can't GIVE credit. Come back when you're a little, mmmm... RICHER!"
[[Can do, strange man->popup book store]]
]</tw-passagedata><tw-passagedata pid="21" name="buy htwfaip" tags="store" position="718,1204" size="100,100">(if: $money >= 4)[
You purchase How to Win Friends and Influence People
(set: $inv to $inv + (a: "htwfaip"))
[[Sweet.->book store vanishes]]
]
(else:)
[
A voice booms from another direction.
"I'm sorry friend, I can't GIVE credit. Come back when you're a little, mmmm... RICHER!"
[[Can do, strange man->popup book store]]
]</tw-passagedata><tw-passagedata pid="22" name="buy silicon" tags="store" position="711,1071" size="100,100">(if: $money >= 4)[
You purchase the hunk of silicon. Maybe someone at the Society of Computer Science can help you make sense of it? They meet on Tuesdays and Thursdays at U-Hour, when the Computer Science energy is strongest.
(set: $inv to $inv + (a: "silicon"))
[[Sweet.->book store vanishes]]
]
(else:)
[
A voice bellows from somewhere:
"Hey, you don't have enough money! Put it down! I need money so I can stream!"
[[Can do, strange man->popup book store]]
]</tw-passagedata><tw-passagedata pid="23" name="book store vanishes" tags="store" position="828,1230" size="100,100">You make your purchase and place it into your backpack. When you look back up, the book store has vanished. You get the feeling that it will be back tomorrow, if there is a tomorrow.
(set:$time to $time + 1)
[[Sounds about right->U-Hour]] </tw-passagedata><tw-passagedata pid="24" name="silicon transformed" tags="campus" position="852,292" size="100,100">You show the hooded figure the silicon. The figure nods knowingly, before chanting rhythmically.
"In the name of our Lord Linus Torvalds, let this silicon shew forth its true form!"
You look back down at the hunk of silicon to find now it has been transformed into a key.
(set: $inv to $inv - (a: "silicon"))
(set: $inv to $inv + (a: "key"))
"The U-Hour is nearly up, and our powers are waning. Outsider, you must leave for now."
(set: $time to $time + 1)
[[Man, this school is weird->U-Hour]]</tw-passagedata><tw-passagedata pid="25" name="blessing" tags="campus" position="968,251" size="100,100">The hooded figure removes his hood and stares into your soul. You feel something unlock within you, and you now know the solution to that one LeetCode problem you were stuck on yesterday.
LEETCODE +4
(set: $leetcode to $leetcode + 4)\
(set: $time to $time + 1)
[[Thank you wizard!->U-Hour]]</tw-passagedata><tw-passagedata pid="26" name="scs explanation" tags="campus" position="1117,255" size="100,100">You ask the robed figure who they are, and what is going on here.
"We are adherents to the old ways, set forth by our Lord Linus Torvalds. We meet here every U-Hour, when the Computer Science energy is strongest, in order to make sacrifices for the atonement of cardinal sins of Computer Science."
[[Neat->club meeting]]
[[What kinds of sins?->scs sins]]</tw-passagedata><tw-passagedata pid="27" name="scs sins" tags="campus" position="1184,410" size="100,100">You are directed to a big stone tablet that is etched with text.
''COMPUTER SCIENCE COMMANDMENTS''
//0. Thou shalt start thine indexing at 0
I. Thou shalt comment thy code as thy go
II. Thou shalt prioritize time complexity in thine codings
III. Thou shalt test thine code as thou shalt go
//
The remaining commandments are hard to understand, and the comments explaining them are unhelpful.
[[Thank you robed figure, very cool!->club meeting]]</tw-passagedata><tw-passagedata pid="28" name="correct" tags="campus" position="1113,964" size="100,100">Dr. Winterville's mouth upturns as his eyes begin to water. He sniffles, wipes his eyes, and smiles broadly at the class.
"That's correct! I'm so glad you've been paying attention in class."
LEETCODE +4
(set: $leetcode to $leetcode + 4)
(set: $gd_correct to $gd_correct + 1)
(set: $histIndex to (history:)'s length - 1)
(link-goto: "I'll be a game developer yet!", (history:)'s ($histIndex))</tw-passagedata><tw-passagedata pid="29" name="incorrect" tags="campus" position="1116,846" size="100,100">Dr. Winterville's eyes snap shut and his neck bulges out. He stays like this for three whole minutes before sighing loudly, taking off his glasses, and rubbing the bridge of his nose.
"No, I'm sorry. That is not the correct answer."
(set: $histIndex to (history:)'s length -1)
(link-goto: "Better luck tomorrow!", (history:)'s ($histIndex))</tw-passagedata><tw-passagedata pid="30" name="ending" tags="campus" position="1597,1194" size="100,100">The campus is eerily quiet as you make your way back to your dorm. Just as you pass the CLA building, the earth beneath you begins to mildly shake. The shaking brings others to the outskirts of the CLA building, as it is widely regarded as the best place to be in the case of an earthquake. You are comforted by familiar faces.
[[But then...->ending2]]</tw-passagedata><tw-passagedata pid="31" name="ending2" tags="" position="1601,1302" size="100,100">(unless: (history:) contains "ending2")[
The shaking grows harder and harder, and suddenly the earth below you opens up!
You manage to land on a small plateau about 8 feet from the surface of the earth. You're safe for now, but you figure that it won't hold for much longer. Familiar faces gather around with concern for your safety.
]
(else:)[
The ground continually buckles beneath you. Time is running out and the shaking is getting stronger.
]
Who will you reach out to?
[[Reach out to Dr. Winterville->winterville helps]]
[[Reach out to Jane Doe->jane doe helps]]
[[Reach out to Chad->chad helps]]
[[Reach out to Dr. Disrespect->dd helps]]
[[Reach out to Billy->billy "helps"]]
(if:$inv contains "twine")[
[[Make use of the twine->twine ending]]
]
[[Pull yourself out->ending3]]
[[Leap into the pit->ending unknown]]</tw-passagedata><tw-passagedata pid="32" name="winterville helps" tags="campus" position="1601,1452" size="100,100">You call to Dr. Winterville who is standing nearby.
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/adrian.png" class=character>
(if: $gd_attendance's length >= 3)[
"Anything for a student of mine!" Dr. Winterville bellows as he grabs your hand and hoists you back onto land.
[[All's well that ends well!->ending3]]
]
(else:)[
"Who art thou?" Dr. Winterville shouts into the pit.
"Depart from me, for I never knew you."
''You failed to go to class for 3 or more days''
[[Time is running out->ending2]]
]</tw-passagedata><tw-passagedata pid="33" name="jane doe helps" tags="campus" position="1481,1450" size="100,100"><img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/jane.png" class=character>
(unless:$simp >= $SIMP_THRESHOLD)[
You look up at Jane in your hour of need. Jane looks disdainfully at you.
"I'm sorry, but do I know you? Like, I really can't help you right now."
''You failed to get your SIMP to $SIMP_THRESHOLD''
[[Time is running out!->ending2]]
]
(else:)[
Jane's eyes light up as you reach your hand toward her.
"Oh Billy, you've got such great earning potential on account of your excellent major choice and dedication to LeetCode!"
You appreciate the sentiment but consider this an inappropriate time to herald your greatness.
Jane lifts you from the pit and you rejoin the others.
[[All's well that ends well!->ending3]]
]</tw-passagedata><tw-passagedata pid="34" name="chad helps" tags="campus" position="1721,1452" size="100,100">(if: $roommate > 2)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/chad.png" class=character>
You call for your roommate, who is standing nearby. He rushes to your aid, and with a hefty pull, he lifts you out of the pit!
[[All's well that ends well!->ending3]]
]
(else:)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/roommate.png" class=character>
You call for your roommate, who is standing nearby. He rushes to your aid, but he is unable to lift you out!
''You failed to interact with your roommate 2 times''
[[Time is running out!->ending2]]
]
</tw-passagedata><tw-passagedata pid="35" name="dd helps" tags="campus" position="1841,1452" size="100,100">You beckon to Dr. Discourtesy, and his eyes shine behind his black glasses.
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/doc.png" class=character>
(if: $inv contains "ss" and $inv contains "ec++" and $inv contains "htwfaip")[
"Anything for my favorite customer!" the Doctor bellows as he drags you out of the pit.
[[All's well that ends well!->ending3]]
]
(else:)[
"I'm afraid I can't help you. I've got a bottom line, and this unpaid labor won't pay the bills!"
''You failed to purchase all of the books available at Dr. Discourtesy's store''
[[Time is running out->ending2]]
]</tw-passagedata><tw-passagedata pid="36" name="ending3" tags="campus" position="1650,1599" size="100,100">Stumbling back onto stable ground, you gather with your friends and acquantainces. You exchange hurried glances when suddenly, the shaking begins anew! You all manage to get to higher ground and watch as the CLA building falls into the pit of the earth.
[[Maybe the true treasure was the friends we made along the way->surface ending]]</tw-passagedata><tw-passagedata pid="37" name="roommate thanks" tags="dorm" position="389,190" size="100,100">Your roommate Chad listens intently as you talk his ear off. He slowly nods and scratches his chin. Suddenly, his eyes light up.
"It all makes sense now! I know what I have to do! Thanks Billy, you're the best!"
(set:$time to $time + 1)
(set:$roommate to $roommate + 1)
[[All in a day's work, Chad->Morning Before School]] </tw-passagedata><tw-passagedata pid="38" name="dining hall jane" tags="campus" position="710,698" size="100,100"><img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/jane.png" class=character>
You sit down across from Jane and make some small talk. What will you do?
[[Compliment hair->compliment hair]]
[[Brag about LeetCode->brag about leetcode]]
[[Show off your gains->show off your gains]]
[[Buy her a meal ''COST: 4 MONEY''->buy her a meal]]
(set: $histIndex to (history:)'s length-1)
(link-goto: "Do a 360 and walk away", (history:)'s ($histIndex))</tw-passagedata><tw-passagedata pid="39" name="compliment hair" tags="campus" position="507,670" size="100,100">You tell Jane that her hair is very nice today. She takes the compliment well.
SIMP +1
(set: $time to $time + 1)
(set: $histIndex to (history:)'s length-2)
(link-goto: "Simpin ain't easy", (history:)'s ($histIndex))</tw-passagedata><tw-passagedata pid="40" name="brag about leetcode" tags="campus" position="530,791" size="100,100">(if: $leetcode > $jane_leetcode)[
You regale Jane with your heroic tales of tackling LeetCode problems. She's totally digging it but you get the feeling that she'll have higher expectations next time.
(set: $jane_leetcode to $jane_leetcode + 6)
SIMP +3
(set: $simp to $simp + 3)
]
(else:)[
Although Jane seems interested, you can tell she's just being polite. These are the same stories that you told her last time! You'll need more LeetCode practice to wow her again.
SIMP +1
(set: $simp to $simp + 1)
]
(set: $time to $time + 1)
(set: $histIndex to (history:)'s length-2)
(link-goto: "Simpin ain't easy", (history:)'s ($histIndex))</tw-passagedata><tw-passagedata pid="41" name="show off your gains" tags="campus" position="734,901" size="100,100">(if: $health >= $jane_health)[
You arch your back and straighten your posture. All that time at the BRIC really paid off! Jane smiles and is probably uncomfortable but nonetheless impressed. However, you get the feeling that she won't be as impressed next time unless you manage to spend more time in the gym.
SIMP +3
(set: $simp to $simp + 3)
(set: $jane_health to $jane_health + 6)
]
(else:)[
You begin to subtly flex in front of Jane. However, she's pretty distracted by her phone. She gives you a quick smile and then goes to get more food. Ouch. Maybe you should spend more time in the gym before you try that again.
SIMP +1
(set: $simp to $simp + 1)
]
(set: $time to $time + 1)
(set: $histIndex to (history:)'s length-2)
(link-goto: "Simpin ain't easy", (history:)'s ($histIndex))</tw-passagedata><tw-passagedata pid="42" name="buy her a meal" tags="campus" position="602,896" size="100,100">(if: $money >= 4)[
You pay for Jane's meal. You're a right and proper gentleman and Jane takes notice.
MONEY -4
SIMP +3
(set: $money to $money - 4)
(set: $simp to $simp + 3)
]
(else:)[
You go to pay for Jane's meal when you realize that you have insufficient funds to pay for her meal! As Jane pulls out her own wallet, you realize that you should do a better job of paying attention to costs.
SIMP -1
(set: $simp to $simp -1)
]
(set: $time to $time + 1)
(set: $histIndex to (history:)'s length-2)
(link-goto: "Simpin ain't easy", (history:)'s ($histIndex))</tw-passagedata><tw-passagedata pid="43" name="ending unknown" tags="" position="1907,1297" size="100,100">You plunge further into the center of the Earth. You hear a voice that calls out from...somewhere...
[["Would you like to try again?"->Game Start]]</tw-passagedata><tw-passagedata pid="44" name="roommate ending" tags="dorm" position="1800,1737" size="100,100">You reminisce about your roommate Chad at Cal Poly Pomona.
(if: $roommate is 0)[
You hardly knew the guy but from what you hear from your old college circle, he's had a rough go of life. Sounds like he could have used more advice back in undergraduate.
]
(else-if: $roommate >= 1 and $roommate < 3)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/roommate.png" class=character>
You've kept in touch over the years with Chad, and he's doing about as well as anyone could expect. He's gainfully employed and has a beautiful family. It's good that you helped him out in undergrad!
]
(else:)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/chad.png" class=character>
But how could you not reminisce about Chad? He became everything you ever wanted to be. He got a job at Google and his major was in History. Legends say he went to the BRIC only twice and managed to put on 18 pounds of pure muscle each time. Legend has it that Chad, your roommate, so embodied the form of the ideal man that he is the reason the name "Chad" is such a meme.
]
[[What about Dr. Winterville?->winterville ending]]</tw-passagedata><tw-passagedata pid="45" name="surface ending" tags="campus" position="1650,1749" size="100,100">Life comes and goes, and you finish your four years without incident at Cal Poly Pomona.
(unless: (history:) contains "slo ending")[
The big hole that used to be the CLA building is paved over with concrete and turned into more faculty parking. The incident itself is passed over with very little notice, and the only people who seem to remember are those who were with you that very night.]
(else:)[
You're lauded as a hero on campus for moving the fault underneath your sister school. They're not too pleased about it but it's a "every polytechnic for themselves" world out there.
]
[[Very spooky. What happened to all of them anyways?->roommate ending]]</tw-passagedata><tw-passagedata pid="46" name="winterville ending" tags="campus" position="1957,1726" size="100,100">You spend some time thinking about Dr. Winterville...
(if: $class_attendance is 0)[
Dr. Winterville who? You never went to class. Which consequently explains why you now work at Burger King. As it turns out, you were 3 units short for your degree, and your financial aid ran out. If life were a game, I'd suggest redoing this one and trying not to mess it up again.
]
(else-if: $class_attendance >= 1 and $gd_correct < 5)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/adrian.png" class=character>
Dr. Winterville's class, those were the days. You managed to do well enough in that class to graduate, which led to your employment at a reputable software company. It pays to go to school!
]
(else-if: $gd_correct >= 5)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/adrian.png" class=character>
That's right! Dr. Winterville! You were supposed to meet up with him today. You just call him by his first name, Adrian, now. You're partners at CD Project Green, the game development company you co-founded together. After seeing how well you did in Game Development class, he took you under his wing and into the world of professional game development.
Cyberpunk 2099 is launching next month thanks in large part to your efforts. Everyone is looking forward to a polished and bug-free release!
]
[[What about Dr. Discourtesy?->dr ending]]</tw-passagedata><tw-passagedata pid="47" name="dr ending" tags="store" position="2119,1715" size="100,100">You spend some time thinking about Dr. Discourtesy...
(if: $inv's length is 0)[
You remember hearing about him being a drifter after he couldn't build up enough capital to start his streaming career on Twitch. What a shame!
]
(else-if: $inv's length >= 1 and $inv's length <= 3)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/doc.png" class=character>
Dr. Discourtesy! He managed to become a moderately successful streamer on Twitch. You tune in now and then. You always wonder if you could have contributed more to his career, but you count him lucky that he does what he loves.
]
(else:)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/doc.png" class=character>
Dr. Discourtesy! After you bought out his shop, he had all the MONEY he needed to get his career off the ground. You two stayed friends throughout all these years. He was around your family so much that he even met and fell in love with your sister! Their wedding was such a happy occasion, and you were the best man. Your sister couldn't have married a more faithful, devoted man than Dr. Discourtesy!
]
[[Well...what about Billy?->billy ending]]</tw-passagedata><tw-passagedata pid="48" name="jane ending" tags="campus" position="2124,1986" size="100,100">You spend some time thinking about Jane...
(if: $roommate >= 3)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/chad.png" class=character>
You visibly cringe as the thought of Jane crosses your mind. After all, she's with Chad now. Once he achieved schoolwide fame for being such a, well, Chad, the women wouldn't stop chasing him. Including Jane. They actually ended up together, and somehow, in your bitterness, you wish you never gave him so much advice.
]
(else-if: $simp < 10)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/jane.png" class=character>
Jane Doe, the apple of your eye from college. Unfortunately, you two lost touch years ago. Your bond wasn't incredibly strong to begin with, so this is to be expected.
]
(else-if: $simp >= 10 and $simp < 20)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/jane.png" class=character>
Jane Doe...you actually reconnected with her recently. She's sick and tired of all these bad boys that keep breaking her heart, and it's finally your chance to shine. You've got a date coming up this Friday! I guess good guys really do win in the end!
]
(else:)[
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/jane.png" class=character>
Jane, the love of your life. You and her fell madly in love over the course of your undergraduate career, and are getting married this upcoming May. You reminisce on how hard you worked to woo her all those years ago and marvel at the payoff.
]
[[So that's that, then.->final ending]]</tw-passagedata><tw-passagedata pid="49" name="final ending" tags="campus" position="1432,1977" size="100,100">Yup, that's the end of your college career! Amazing how it flies by, almost seems like that week your Freshman year was all there was.
(unless: $degree is 1)[
By the way, you never graduated. You should probably get that figured out.
]
[[Play again->Game Start]] </tw-passagedata><tw-passagedata pid="50" name="testing" tags="" position="404,705" size="100,100">Double-click this passage to edit it.</tw-passagedata><tw-passagedata pid="51" name="admire the building" tags="campus" position="1899,850" size="100,100">Somehow, the act of admiring this building makes you feel like a simp
SIMP +2
(set: $simp to $simp + 2)
(set: $histIndex to (history:)'s length-1)
(link-goto: "Back", (history:)'s ($histIndex))
(set: $time to $time + 1)</tw-passagedata><tw-passagedata pid="52" name="examine the building" tags="campus" position="2019,850" size="100,100">The entrance is definitely locked. However, you notice a small keyhole in the door.
(unless: $inv contains "key")[
You wonder to yourself what kind of object could possibly fit in a key hole. You continue to stare at the key hole.
]
(else:)[
You remember you have a key, molded from the magic of the robed ones.
[[use the key->use the key]]
]
(set: $histIndex to (history:)'s length-1)
(link-goto: "I'm out of here", (history:)'s ($histIndex))
</tw-passagedata><tw-passagedata pid="53" name="use the key" tags="campus" position="2019,1000" size="100,100">In a stroke of brilliance, you take the key and put it into the keyhole. Your victory is short-lived, as nothing happens.
[[...turn the key?->turn the key]]</tw-passagedata><tw-passagedata pid="54" name="turn the key" tags="campus" position="2019,1150" size="100,100">Your ceaselessly amazing brilliance pays off once more as you turn the key. But now what?
[[Open the door->open door]]</tw-passagedata><tw-passagedata pid="55" name="open door" tags="campus" position="2179,1122" size="100,100">You open the door and find two creatures. They seem intelligent. To your surprise, they begin to speak.
(set: $inv to $inv - (a: "key"))
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/animal1.png" class=character><img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/animal2.png" class=character>
"Greetings mortal, we are the developers of this game. We have taken a form that is understandable to your human mind."
You cringe as you read the previous line.
[[So, what's this all about?->all about]]</tw-passagedata><tw-passagedata pid="56" name="all about" tags="campus" position="2179,1272" size="100,100">The creatures answer your question.
"For your dedication to going where you shouldn't go, we'd like to reward you with something special."
You continue to cringe as the creatures hand you what looks to be a ball of twine.
''Received Twine''
[[Alrighty then->Afternoon on Campus]]</tw-passagedata><tw-passagedata pid="57" name="twine ending" tags="" position="1396,1299" size="100,100">You look down at the twine you got from those cringey cats. A world of possibility is open to you, but there's not much time left. What would you like to do?
[[Move the fault line to Cal Poly SLO->slo ending]]
[[Make this game into 'The Uncle Who Works for Nintendo'->nintendo ending]]
[[Get the good ending->good ending]]</tw-passagedata><tw-passagedata pid="58" name="slo ending" tags="campus" position="1437,1799" size="100,100">You do some sick finger tricks using the twine and the fault line vanishes completely! You will it to appear under Cal Poly SLO instead, sparing the CLA building and those around you.
[[Excellent news!->surface ending]]</tw-passagedata><tw-passagedata pid="59" name="nintendo ending" tags="" position="1361,1449" size="100,100">You decide that this game is not the game you would like to play after all. You open up your browser and go to https://ztul.itch.io/the-uncle-who-works-for-nintendo to play "The Uncle Who Works for Nintendo". You remember playing it once before and enjoying it.
You play for a good amount of time and get all of the endings. You forget all about "The Fault in Our Campus" as time goes on.
[[Wow, this ending sucks->complaint]]</tw-passagedata><tw-passagedata pid="60" name="good ending" tags="" position="1438,1651" size="100,100">You manage to twist the twine about in some fashion that you determine to be good. You get the feeling that life is about to be much better. You feel the sense of pride and accomplishment as your life improves in a matter of nanoseconds.
(set: $simp to 100)
(set: $money to 100)
(set: $health to 100)
(set: $gd_attendance to 5)
(set: $roommate to 0)
[[get the good ending->surface ending]]</tw-passagedata><tw-passagedata pid="61" name="complaint" tags="" position="1226,1605" size="100,100">Listen, pal, if you didn't want to play "The Uncle Who Works at Nintendo", why'd you click that option? Anyways...
[[start again->Game Start]] </tw-passagedata><tw-passagedata pid="62" name="nap" tags="library" position="1588,38" size="100,100">You decide to take a nap. When you wake up, your wallet is noticeably lighter.
(if: $money < 2)[
As it turns out, your wallet was always light. Go get a job!]
(else:)[Let this be a lesson against sleeping in public locations.
(set: $money to $money - 2)
MONEY -2]
(set: $histIndex to (history:)'s length-1)
(link-goto: "I hate the library", (history:)'s ($histIndex))
(set: $time to $time +1)</tw-passagedata><tw-passagedata pid="63" name="billy" tags="library" position="1694,181" size="100,100">You stare deeply into the headgear of Billy the Bronco. You make out the faint outline of a human within, although this could just be your mind playing tricks on you. He smells like onions. You get the feeling that it's time to make your move.
<img src="https://raw.githubusercontent.com/hlin91/CPP_Dating_Sim/master/chars/billy.png" class=character>
(if: $degree is 0)[[["Can you help me expedite my degree processing?"->expedite degree]]]
[["N-neigh??"->neigh]]
[["I'm not really into furries"->not into furries]]
</tw-passagedata><tw-passagedata pid="64" name="neigh" tags="library" position="1544,331" size="100,100">You neigh with all your might, drawn from years of experience as an equestrian. Billy neighs back and there is a moment of tension.
(set: $billy to $billy + 2)
(set: $histIndex to (history:)'s length-2)
(link-goto: "I'm outta here", (history:)'s ($histIndex))
(set: $time to $time +1)</tw-passagedata><tw-passagedata pid="65" name="not into furries" tags="library" position="1694,331" size="100,100">You express your disdain for furries, especially those who interrupt your library beauty sleep and smell like onions. Billy neighs sadly, as if he understands the English words you speak. You know this isn't the case, since furries are illiterate.
(set: $billy to $billy -2)
(set: $histIndex to (history:)'s length-2)
(link-goto: "No more furries on my campus!", (history:)'s ($histIndex))
(set: $time to $time +1)</tw-passagedata><tw-passagedata pid="66" name="expedite degree" tags="library" position="1844,331" size="100,100">You understand that Billy is in charge of graduation for Cal Poly Pomona students. You request that he would expedite your process for graduation. He neighs in acceptance, but he doesn't write it down so you're sure he'll forget.
(set: $degree to 1)
(set: $histIndex to (history:)'s length-2)
(link-goto: "Please let me out of this campus, Billy.", (history:)'s ($histIndex))
(set: $time to $time +1)</tw-passagedata><tw-passagedata pid="67" name="billy ending" tags="library" position="2114,1858" size="100,100">(if: $billy <= -2)[
You never saw Billy the Bronco after college. Sometimes, you see the silhouette of a man in a fur suit around your home, and later find a bag of dog droppings on your front porch.
]