-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.rpy
5593 lines (4670 loc) · 247 KB
/
script.rpy
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
# The script of the game goes in this file.
# Declare characters used by this game. The color argument colorizes the
# name of the character.
define n = Character("Ina", color="#CCFFCC", who_outlines=[ (0, "#075c7c", 2, 2) ], what_outlines=[ (0, "#075c7c", 2, 2) ])
define m = Character("Mei", color="#FFCCE5", who_outlines=[ (0, "#075c7c", 2, 2) ], what_outlines=[ (0, "#075c7c", 2, 2) ])
define r = Character("Rika", color="#CCE5FF", who_outlines=[ (0, "#075c7c", 2, 2) ], what_outlines=[ (0, "#075c7c", 2, 2) ])
define a = Character("Abe", color="#FFFFCC", who_outlines=[ (0, "#075c7c", 2, 2) ], what_outlines=[ (0, "#075c7c", 2, 2) ])
define k = Character("Karin", color="#FFCCFF", who_outlines=[ (0, "#075c7c", 2, 2) ], what_outlines=[ (0, "#075c7c", 2, 2) ]) #098fc1 (previous shadow color)#086f95
define l = Character("Leopold", color="#CCFFE5", who_outlines=[ (0, "#075c7c", 2, 2) ], what_outlines=[ (0, "#075c7c", 2, 2) ])
define u = Character("Naomi", color="#CCCCFF", who_outlines=[ (0, "#075c7c", 2, 2) ], what_outlines=[ (0, "#075c7c", 2, 2) ])
define s = Character("Marisa", color="#E5CCFF", who_outlines=[ (0, "#075c7c", 2, 2) ], what_outlines=[ (0, "#075c7c", 2, 2) ])
define b = Character("Bernard", color="#CCFFFF", who_outlines=[ (0, "#075c7c", 2, 2) ], what_outlines=[ (0, "#075c7c", 2, 2) ])
define p = Character("Peter", color="#FFCCCC", who_outlines=[ (0, "#075c7c", 2, 2) ], what_outlines=[ (0, "#075c7c", 2, 2) ])
define g = Character("Hannah", color="#FFCCFF", who_outlines=[ (0, "#075c7c", 2, 2) ], what_outlines=[ (0, "#075c7c", 2, 2) ])
#define a = Character("Alice", color="#ffc0cb", who_outlines=[ (0, "#075c7c", 2, 2) ], what_outlines=[ (0, "#075c7c", 2, 2) ])
define narrator = Character(None, what_outlines=[ (0, "#075c7c", 2, 2) ]) #098fc1
#old #FAE282 yellow c0ffd5 blue ffc0cb pink ffd5c0 ffff00 green 99DDCF FAD1FF FAD1FF FFE5CC C7CEFF FFC785
#new #FFCCCC red! #FFFFCC yellow! #CCFFCC green! #CCCCFF purple #E5CCFF violet! #FFCCFF pink #FFCCE5 oldpink! #CCE5FF blue! FFE5CC orange
# The game starts here.
label start:
$ rika_mei_score = 0
$ marisa_ina_score = 0
$ ina_score = 0
$ mei_score = 0
$ rika_score = 0
$ marisa_score = 0
$ ina_status = 'none'
$ mei_status = 'none'
$ rika_status = 'none'
$ marisa_status = 'none'
stop music fadeout 2.0
#### DEBUG MENU #######################################################
#jump debugmenu
#######################################################################
#### PART 1 ###########################################################
#######################################################################
label prologue:
window hide
scene black
with fade
#pause(0.5)
#play sound "audio/light3.ogg" fadein 1.0
#scene leaves_logo with Dissolve(1.0)
#pause(1)
#stop sound fadeout 2.0
scene instructions1 with pixellate
pause
scene instructions2 with pixellate
pause
play sound "audio/edgemeadow.ogg" loop fadein 5.0
scene black with pixellate
stop music fadeout 10.0
window hide
pause(1)
label p1c1:
#play sound "audio/edgemeadow.ogg" loop fadein 2.0
scene abbotsford16 with Dissolve(5.0):
subpixel True
xalign 0.0 yalign 1.0
easein 25.0 xalign 1.0 yalign 0.0
#pause(1)
window show
pause(1)
"The nights had been growing steadily warmer."
"A sickening fragrance of decomposing leaves lingered in the air as I made my way towards school."
"And though I was desperately trying to recall a dream of crown roast, that I had been torn from violently no more than twenty minutes ago, I still felt grateful—"
pause(0.5)
"—grateful that the mornings were growing lighter again, no longer forcing me to make this miserable journey through pitch darkness."
play music "audio/mus_vnmysticgate.ogg" loop fadein 20.0
pause(0.5)
"And it was with these thoughts in mind that I became aware of a drifting presence."
"Circling around me — scanning its environment with the trepidation of a child."
"I turned around."
pause(0.5)
scene street with Dissolve(1)
pause(0.5)
show mari skirt normal day open at center with Dissolve(0.5)
"Before me stood a young woman, no older than twenty-five."
"From her sophisticated style and demeanor, I could immediately make out that she wasn't from around here."
show mari skirt normal day closed at center with Dissolve(0.2)
show mari skirt normal day open at center with Dissolve(0.2)
"And the moment she noticed me, she approached — slowly at first, but more confidently once she picked up on my friendly nature."
show mari skirt normal day closed at center with Dissolve(0.2)
show mari skirt normal day open at center with Dissolve(0.2)
s "Um, excuse me—"
s "Could you help me? "
s "I'm looking for a place called {i}Fairview apartments.{/i}"
show mari skirt normal day closed at center with Dissolve(0.2)
show mari skirt normal day open at center with Dissolve(0.2)
#### MARISA/INA 1 ####
play audio "audio/decision.ogg"
menu:
with Dissolve(1.0)
s "Could you tell me where that is?"
"Of course I can.": #Mei? You saw us on Saturday? But
$ marisa_ina_score += 1
show mari skirt normal day closed at center with Dissolve(0.2)
show mari skirt normal day open at center with Dissolve(0.2)
"I could discern a panic in her eyes — and I empathized with her, as it wasn't long since I had been a newcomer in this town myself, just as lost as she was."
"Soon, however, I'd landed a job in the newspaper delivery business — the first job I'd ever held — and it wasn't long before I'd grown familiar with every street and borough of this deceptively outstretched town." #place?
"I flashed her a reassuring smile."
pause(0.5)
a "Fairview? That's not far from here."
a "Just head back up the road and turn left at central square. You can't miss it."
show mari skirt smile day open at center with Dissolve(0.5)
"She let out a sigh of relief."
pause(0.5)
a "Are you visiting someone who lives here?"
show mari skirt smile day closed at center with Dissolve(0.2)
show mari skirt smile day open at center with Dissolve(0.2)
s "Visiting—? Um, yes. "
s "I'm visiting—"
s "—myself."
"I stared at her in confusion."
show mari skirt smile day closed at center with Dissolve(0.2)
show mari skirt smile day open at center with Dissolve(0.2)
s "It's {i}me{/i}, that lives at Fairview apartments. But I just moved in yesterday afternoon, so I forgot um— the fastest way home."
"She flashed me a silver house key."
show mari skirt normal day open at center with Dissolve(0.5)
s "I really thought I wouldn't get lost this time."
"Her voice turned melancholic."
show mari skirt normal day closed at center with Dissolve(0.2)
show mari skirt normal day open at center with Dissolve(0.2)
s "It's not like I'm unfamiliar with these surroundings, you know?"
s "I used to live here as a child, until I was about six years old. I've even visited a few times since then."
s "But things have changed. The town has expanded—"
"She stood there for a second reminiscing, her fluttering blonde hair shining in the early morning sun."
stop music fadeout 3.0
show mari skirt glad day closed at center with Dissolve(0.5)
s "Anyway, I need to go home now."
s "To do, um— "
s "I'm not really sure."
show mari skirt smile day open at center with Dissolve(0.5)
"She smiled."
pause(1)
s "I'll see you around."
pause(0.5)
a "See you—"
"I'm afraid I'm running late already — please ask someone else.":
show mari skirt serious day open at center with Dissolve(0.5)
s "Heavens. That was uncalled for."
s "This is my first time experiencing the brutal countryside honesty that they warned me about."
show mari skirt serious day closed at center with Dissolve(0.2)
show mari skirt serious day open at center with Dissolve(0.2)
s "I'm not even a true outsider, you know? I was born here, although we moved away when I was still a child."
s "But I apologize, I'm holding you up."
s "Please be on your way."
#### MARISA/INA 1 ####
stop music fadeout 2.0
hide mari with Dissolve(1)
"And then she disappeared, just as cautiously as she had arrived."
pause(1)
"With increased speed, I continued on towards school — fearing that this short delay would once more reinforce my persistent reputation of tardiness." #auto forward to opening???
play music "<from 11.7>audio/mus_songrainyday.ogg" noloop fadein 4.0
pause(1)
window hide
pause(1)
stop sound fadeout 1.0
scene white with Dissolve(1.0)
pause(1)
#### OPENING VIDEO
label opening:
scene white
#TODO
# Show logo sooner on in the video (Leaves presents -mari- prd by S.O.C.A.H. -Rika- Deluge -etc-)
# Add a piece of text at ending
# End with some scrolling clouds?
# resize imgs where necessary. probably all (even cave can be resized)
#scene opening_park with Dissolve(2.0):
# subpixel True
# xalign 0.0 yalign 1.0
# linear 8.0 xalign 1.0 yalign 0.0 #ease, linear, easin, easeout
scene schoolroad27: #playground16:
subpixel True
xalign 1.0 yalign 1.0
linear 9.0 xalign 0.0 yalign 0.0 #ease, linear, easin, easeout
with Dissolve(1.5)
show opening_leaves with Dissolve(1.5)
pause(2.0)
hide opening_leaves with Dissolve(0.5)
# MARISA
#hide rika
#hide pattern_purple
show pattern_blue:
subpixel True
xalign -1.0 yalign 0.0
linear 7.5 xalign 2.0 yalign 0.0 #ease, linear, easein, easeout
pause(1)
show mari corset smile day closed:
subpixel True
xalign -1.0 yalign 0.0
easein 2.0 xalign 0.5 yalign 0.0 #ease, linear, easein, easeout
pause(2.0)
show mari corset smile day open with Dissolve(0.3)
show tulips16 behind pattern_blue:
subpixel True
xalign 0.0 yalign 1.0
linear 8.0 xalign 1.0 yalign 0.0 #ease, linear, easin, easeout
#hide pathtrees16
pause(0.5)
show mari corset smile day open:
subpixel True
xalign 0.5 yalign 0.0
easeout 1.5 xalign 2.0 yalign 0.0 #ease, linear, easein, easeout
#pause(2)
pause(1)
show opening_socah with Dissolve(1.5)
pause(2.0)
#pause(1)
# RIKA
hide mari
show pattern_purple:
subpixel True
xalign -1.0 yalign 0.0
linear 7.5 xalign 2.0 yalign 0.0 #ease, linear, easein, easeout
hide opening_socah with Dissolve(0.5)
pause(0.5)
show rika uni happy day closed:
subpixel True
xalign -1.0 yalign 0.0
easein 2.0 xalign 0.5 yalign 0.0 #ease, linear, easein, easeout
pause(2.0)
show rika uni happy day open with Dissolve(0.3)
show cave16 behind pattern_purple:
subpixel True
xalign 0.0 yalign 1.0
linear 11.0 xalign 0.0 yalign 0.0 #ease, linear, easin, easeout
hide tulips16
pause(0.5)
show rika uni happy day open:
subpixel True
xalign 0.5 yalign 0.0
easeout 1.5 xalign 2.0 yalign 0.0 #ease, linear, easein, easeout
pause(3)
show logo with Dissolve(2.0)
pause(2)
# INA
hide rika
#hide pattern_blue
show pattern_pink:
subpixel True
xalign -1.0 yalign 0.0
linear 7.5 xalign 2.0 yalign 0.0 #ease, linear, easein, easeout
hide logo with Dissolve(1.0)
#pause(1)
show ina shirt serious day closed:
subpixel True
xalign -1.0 yalign 0.0
easein 2.0 xalign 0.5 yalign 0.0 #ease, linear, easein, easeout
pause(2.0)
show ina shirt serious day open with Dissolve(0.3)
show marisaroom16 behind pattern_pink:
subpixel True
xalign 0.1 yalign 1.0
linear 8.0 xalign 0.0 yalign 0.0 #ease, linear, easin, easeout
hide cave16 #pathtrees16
pause(0.5)
show ina shirt serious day open:
subpixel True
xalign 0.5 yalign 0.0
easeout 1.5 xalign 2.0 yalign 0.0 #ease, linear, easein, easeout
pause(3)
# MEI
hide ina
#hide pattern_pink
show pattern_yellow:
subpixel True
xalign -1.0 yalign 0.0
linear 7.5 xalign 2.0 yalign 0.0 #ease, linear, easein, easeout
pause(1)
show mei tshirt happy day closed:
subpixel True
xalign -1.0 yalign 0.0
easein 2.0 xalign 0.5 yalign 0.0 #ease, linear, easein, easeout
pause(2.0)
show mei tshirt happy day open with Dissolve(0.3)
show pathtrees16_twi behind pattern_yellow:
subpixel True
xalign 0.0 yalign 0.0
linear 10.0 xalign 0.0 yalign 1.0 #ease, linear, easin, easeout
hide marisaroom16
pause(0.5)
show mei tshirt happy day open:
subpixel True
xalign 0.5 yalign 0.0
easeout 1.5 xalign 2.0 yalign 0.0 #ease, linear, easein, easeout
pause(5)
#scene white with Dissolve(2.0)
#pause(1)
#scene logo_text with Dissolve(2.0)
#pause(3)
scene opening_sky2 with Dissolve(2.0):
subpixel True
xalign 1.0 yalign 1.0
linear 15.0 xalign 0.0 yalign 0.0
pause(4)
stop music fadeout 25.0
scene white with Dissolve(5.0)
pause(3)
#show pattern_purple:
# subpixel True
# xalign 0.5 yalign 0.0
# easein 5.0 xalign 5.0 yalign 0.0 #ease, linear, easein, easeout
#show rika uni sad day open with easeinleft
#pause(5)
#scene black with Dissolve(1.0)
label p1c2:
play sound "audio/officesound.ogg" loop fadein 3.0
scene office with Dissolve(3.0)
#show ina shirt angry book open at left with Dissolve(1.0)
pause(1)
window show
pause(1)
"By the time I reached the ever cramped office of the {i}Sunday Abbot{/i}, I was fully out of breath."
#the little student newspaper with big aspirations, that I worked for.
"Ina — our ever punctual editor-in-chief — sat waiting on me."
play music "audio/mus_vnaquamarine.ogg" loop fadein 10.0
show ina shirt serious day open at center with Dissolve(1)
pause(0.5)
n "There you are, Abe. Your irresponsibility never ceases to amaze me." #risen to new hights
show ina shirt serious day closed at center with Dissolve(0.2)
show ina shirt serious day open at center with Dissolve(0.2)
n "Even after pushing back your starting time to 9 A.M, you still manage to be late — every. single. week. "
n "Sometimes I wonder if there's even a point—"
"I interrupted her."
show ina shirt hopeless day open at center with Dissolve(0.2)
a "What about Mei? She isn't here yet—"
"But Ina had already began opening the countless boxes, that had been dumped haphazardly across the room." #maybe change a little
#She sighed.
show ina shirt worried day closed at center with Dissolve(0.2)
show ina shirt hopeless day open at center with Dissolve(0.2)
n "Well, at least you're not delaying the dispersal of important headlines—" #big news, big headlines
n "—we've appeared to hit a dull news-season."
n "With the municipal election campaigns waiting to start, it seems that there really isn't much to report on." #not started yet
show ina shirt serious day open at center with Dissolve(0.5)
"She pouted."
pause(0.5)
a "Isn't there any political gossip to write about?"
show ina shirt worried day closed at center with Dissolve(0.2)
show ina shirt scared day open at center with Dissolve(0.2)
n "Nothing. They're keeping their lips sealed."
show ina shirt happy day open at center with Dissolve(0.5)
n "But you just wait until the elections begin. The mud flinging will be out in full force."
n "I'm sure what we're witnessing now is the silence before the storm. There'll be plenty of headlines before long. "
pause(0.5)
window hide
pause(0.5)
scene white with Dissolve(2.0)
pause(1)
scene title1 with Dissolve(2.0)
pause(2)
play audio "audio/knock.ogg"
scene white with Dissolve(2.0)
scene office
show ina shirt happy day open at center
with Dissolve(2.0)
window show
pause(0.5)
play audio "audio/window.ogg"
"The door swung open—"
show ina shirt happy day open at left #make her slide
show mei tshirt happy day open at right
with easeinright
"—and a blonde girl made a hurried entrance." #door swung open
m "Time for work! Let's do our best today!"
show ina shirt happy day closed with Dissolve(0.2)
show ina shirt happy day open with Dissolve(0.2)
n "There, that's an attitude you could learn from — Abe."
pause(0.5)
a "But she was {i}twenty minutes{/i} late—"
"Mei — ignoring my comment — had begun leafing through this week's edition of the Sunday Abbot." #make this less awkward 'latest edition'???
m "Cool Ina! Your piece on the {i}arched marble moth{/i} made it to the front page!"
pause(0.5)
a "Who would have thought—"
#Mei had crouched down and was inspecting the latest edition of our weekly paper, while Ina had begun loading our messenger cart.
#Mei had already begun fussing over the boxes, loading our heavy-duty messenger bags to their breaking point.
#Mei
#TODO
#Due to the lay-out of the town
#pay extra attention to the order of following segments
pause(0.5)
"Ever since Mei's addition to the delivery team, we had worked out ways to distribute the paper as efficiently as possible — more than halving my regular working hours in the process."
"And although it was pleasant to free up some time on the weekends, the change had instantly presented Ina the opportunity to slash my already meager wages."
#"Though the amenities in Abbotsford didn't allow for much luxury spending — as my previous life in the capital had —
"I couldn't deny the reality that I was undergoing a personal financial crisis." #not again?
show mei tshirt happy day closed at right with Dissolve(0.2)
show mei tshirt happy day open at right with Dissolve(0.2)
stop music fadeout 3.0
m "Come on, Abe! We'll do the tenement buildings together. Then after that we can split up and do the rest of town."
pause(0.5)
hide mei with Dissolve(0.5)
hide ina with Dissolve(0.5)
pause(0.5)
window hide
play music "audio/mus_vninn.ogg" loop fadein 4.0 #too catchy? more thematic music?
play sound "audio/edgemeadow.ogg" loop fadein 2.0
scene schoolroad16 with fade:
subpixel True
xalign 1.0 yalign 1.0
easein 15.0 xalign 0.0 yalign 0.0
pause(1)
window show
pause(1)
"After loading our delivery cart with three boxes of papers, we made our way in the direction of town."
label p1c3:
#scene schoolroad with Dissolve(1.0)
#pause(1)
"The area beyond the school was sparsely developed, with only a few mansions rising up infrequently from behind spiked gates, each surrounded by acres of woodland."
"While I pulled the cart, Mei looked over the subscription directory, stopping me at irregular intervals to deliver a paper or two at a house we passed by."
show mei tshirt happy day open at center with Dissolve(0.5)
m "Can you smell it, Abe? Nature is blossoming."
show mei tshirt happy day closed at center with Dissolve(0.2)
show mei tshirt happy day open at center with Dissolve(0.2)
m "This hardly feels like work, now that Spring is in the air. "
pause(0.5)
a "Work smells like work — no way to hide it. " #no other way to put it
a "The scent of fresh printing-ink may seem nice at first, but at the end of the day I always have difficulty washing it from my hands."
a "And I end up smelling like I'm hot-off-the-press, far into Sunday afternoon."
show mei tshirt interested day open at center with Dissolve(0.5)
"Mei smirked."
show mei tshirt happy day closed at center with Dissolve(0.2)
show mei tshirt interested day open at center with Dissolve(0.2)
m "That's how it is — isn't it?"
m "But to be honest, I really don't mind the smell."
show mei tshirt happy day closed at center with Dissolve(0.2)
show mei tshirt interested day open at center with Dissolve(0.2)
m "The ink we use has an earthy scent, that pairs well with a floral perfume—"
pause(0.5)
a "Mei — when did you become so {i}metropolitan.{/i}"
show mei tshirt blush day open at center with Dissolve(0.5)
"She blushed."
pause(0.5)
m "S-shut up!"
stop music fadeout 4.0
pause(1)
scene leopoldhouse with Dissolve(1.0)
pause(1)
"Not much later, we arrived at a large residence."
"Out in the yard I detected an eager face, clearly awaiting our arrival."
play music "audio/mus_grieg1.ogg" loop fadein 6.0 #right music? keep happy music?
show leo smile open at left with Dissolve(0.5)
#TODO better positioning
l "There you are, kids. Fashionably late, as always."
l "Let me read the garbage you're disseminating today." #can't wait/ let me see what
show mei tshirt nice day open at right with Dissolve(0.5)
"Though not unfriendly, councilman Leopold — the town's disgraced marquis — always held a close eye on our attempts at journalism."
"It wasn't long since he himself had been the subject of countless headlines, publicizing his dealings with the seedy underworld."
"But recently Leopold appeared to have cleaned up his act."
show mei tshirt nice day open with Dissolve(0.5)
m "Here you go."
show document at Position(xpos=0.25, xanchor=0.5) with Dissolve(0.5)
"Grumbling appreciatively, he browsed through the newspaper."
show mei tshirt happy day closed with Dissolve(0.2)
show mei tshirt nice day open with Dissolve(0.2)
m "Nothing written about you today?"
show leo laughing open with Dissolve(0.5)
"Leopold smiled."
show leo laughing closed with Dissolve(0.2)
show leo laughing open with Dissolve(0.2)
l "No, it seems like Ina has retained her decorum." #maintained
l "I don't mind your paper reporting the {i}news{/i}, you see—"
show leo serious open with Dissolve(0.5)
l "—but it's when the line between the public and private sphere blurs, that I have my reservations about her journalism."
show leo serious closed with Dissolve(0.2)
show leo serious open with Dissolve(0.2)
l "It isn't easy. Being a public figure." #you see, you know...
l "It becomes so much harder to {i}indulge{/i} when everyone's watching you."
l "You slip up once — make one tiny mistake — and it's magnified a thousandfold."
show mei tshirt sad day open with Dissolve(0.2)
"I nodded compassionately."
show leo serious closed with Dissolve(0.2)
show leo serious open with Dissolve(0.2)
l "It's a lonesome endeavor." #"And you don't have any friends. "
l "Do you know what my party has done to me, for the upcoming elections?"
pause(0.5)
a "No—"
l "They lowered me to eleventh place on the list. "
l "Just out of spite, over things that happened in the past—"
pause(0.5)
a "Eleventh place? What does that mean?"
show leo serious closed with Dissolve(0.2)
show leo serious open with Dissolve(0.2)
l "It means the end—"
l "—of my political career, that is. "
l "My party, A.I.R, only holds eight seats in the town council. So I have zero chance of returning to my position next year."
show mei tshirt serious day closed with Dissolve(0.2)
show mei tshirt sad day open with Dissolve(0.2)
m "Maybe if you campaign {i}really{/i} hard—" #mei says this
l "Forget about it. It's political homicide." #this is, hit job
"He scowled."
pause(0.5)
a "Just think of all the free time you'll have." #abe says this"
show leo serious closed with Dissolve(0.2)
show leo serious open with Dissolve(0.2)
l "Hm. I'll need it—"
l "To make matters worse, my deadbeat son is returning home this year after dropping out of university."
l "He was majoring in {i}German romantic theater{/i} — or something equally useless — but even that turned out too demanding for him. " #simlarly useless
l "And now he can't find a job for the life of him—"
show leo serious closed with Dissolve(0.2)
show leo serious open with Dissolve(0.2)
l "Can't you kids put him to work delivering papers—?"
show mei tshirt happy day open with Dissolve(0.2)
a "I think our team is pretty much complete."
show leo smile open with Dissolve(0.5)
"He chuckled."
show leo smile closed with Dissolve(0.2)
show leo smile open with Dissolve(0.2)
l "Well I can't blame you for keeping your distance. He's a real slacker, hasn't worked a day in his life—"
l "—and still, he'd be the type to consider himself too good for this kind of work."
show mei tshirt angry day open with vpunch
"Mei jumped up."
m "No one is too good to deliver the Sunday Abbot!"
show mei tshirt angry day closed with Dissolve(0.2)
show mei tshirt angry day open with Dissolve(0.2)
l "Never mind."
l "Bernard is his name. You might catch him loitering around town."
l "I hope to have him off my hands soon."
stop music fadeout 3.0
pause(0.5)
hide mei with Dissolve(0.5)
hide leo
hide document
with Dissolve(0.5)
pause(0.5)
window hide
pause(0.5)
stop sound fadeout 1.0
scene canal with fade
play sound "audio/cricketsafternoon.ogg" loop fadein 1.0
pause(1)
window show
pause(0.5)
#TODO happy music returns? maybe no music
"We said goodbye to the grumbling marquis and made our way to the edge of town, where a working-class district lay that was irregularly littered with council houses."
play audio "audio/bark2.ogg"
play music "audio/mus_vn1234piano.ogg" fadein 10.0
show phyrrus_small at left with easeinleft
"We were welcomed by a loud bark."
#TODO phyrrus appears
show mei tshirt happy day open at right behind phyrrus_small with Dissolve(0.5)
m "Good morning Phyrrus! You're up early."
show mei tshirt happy day closed with Dissolve(0.2)
show mei tshirt happy day open with Dissolve(0.2)
m "Phyrrus here has been helping me on Saturdays, by pulling the cart and protecting me against danger. "
"She reached out to give the dog a pat on the head—"
play effects "<from 1.0>audio/angrydog.ogg" noloop
#play audio "audio/bark1.ogg"
show phyrrus_small at Position(xpos=0.53, xanchor=0.5) #with ease
show mei tshirt blush day open at Position(xpos=0.85, xanchor=0.5)
with easeinleft
#with Dissolve(0.2)
"—but in an instant, the dog lunged at her and sank its teeth deep into her her arm."
stop effects fadeout 4.0
m "Phyrrus! That hurt!"
show phyrrus_small at Position(xpos=0.43, xanchor=0.5) with ease
"Reluctantly, the dog retreated."
m "Please be more careful, Phyrrus — we don't have time to play."
#a "I'm uncertain of that dog had been protection you, or that you need protection against it."
pause(0.5)
hide mei with easeoutright
hide phyrrus_small with easeoutright
pause(0.5)
#TODO change scenery
scene playground with Dissolve(0.5)
pause(1)
"Our work proceeded quickly, and it wasn't even lunchtime by the time we rounded the last tenement block."
"Phyrrus followed us at a safe distance."
show mei tshirt happy day open at right with Dissolve(0.5)
m "We're doing great, Abe! Phyrrus and I'll take the cart and finish off the remaining suburbs."
show mei tshirt happy day closed with Dissolve(0.2)
show mei tshirt happy day open with Dissolve(0.2)
m "You should have enough papers left to cover the city center."
a "Are you sure you'll be safe?"
show phyrrus_small at left with easeinleft
m "Don't worry Abe, I have Phyrrus by my side."
pause(0.5)
a "{i}That's what I was worried about—{/i}"
#have phyrrus show up here?
pause(0.5)
"I thanked Mei and we each went our way."
pause(0.5)
hide mei with easeoutright
hide phyrrus_small with easeoutright
pause(0.5)
stop music fadeout 2.0
#hide ina with Dissolve(0.5)
#hide rika with Dissolve(0.5)
window hide
pause(1)
stop sound fadeout 1.0
scene black with fade
pause(1)
label p1c4:
play sound "audio/citysounds.ogg" loop fadein 5.0 #webeside clock
scene ichthys with Dissolve(1.0)
#show ina shirt angry book open at left with Dissolve(1.0)
pause(1)
window show
pause(1)
"Abbotsford's town center isn't large — and as I made my way from letterbox to letterbox, I thought to myself that Mei had truly drawn the shortest straw by agreeing to cover the suburbs."
pause(0.5)
"Mei, however, appeared to derive a lot more satisfaction from the work than I did — so it seemed fair that she would take on the lion's share of the workload." # and as I made myself across central square, where the large Ichthys Church stood, my mind was filled with scornful thoughts. "
pause(0.5)
"Suddenly, I picked up a distinct laughter." #familliar face/voice
play music "audio/mus_bachwtk3.ogg" loop fadein 6.0
show rika uni happy day open at Position(xpos=0.70, xanchor=0.5) with Dissolve(1)
r "Look, it's Abe — always the bearer of glad tidings." #good tidings?
"I glanced in the direction of the sound and made out two girls, both of whom attended my high school."
#"She had been speaking to the girl next to her, who I recognized from school." #improve !!!!!!! TODO TODO
show naomi uni serious day glas at left with Dissolve(1)
show rika uni happy day closed with Dissolve(0.2)
show rika uni happy day open with Dissolve(0.2)
r "This is Naomi, you may know her. She's on the swim team."
show naomi uni intent day glas with Dissolve(0.5)
"Naomi acknowledged me with a curt nod of her head."
show naomi uni serious day glas with Dissolve(0.5)
a "So what are you girls doing here? Church isn't until tomorrow, right?"
#We need to get the church ready in time for the sermon tomorrow.
show rika uni happy day closed with Dissolve(0.2)
show rika uni happy day open with Dissolve(0.2)
r "Of course it isn't, but we're helping with the preparation for the Sunday service."
r "We're here to do some routine maintenance on the church properties."
pause(0.5)
a "Can't the church afford to hire {i}specialists{/i} for that kind of work?"
show rika uni mischievous day open with Dissolve(0.5)
r "It's just recurring tasks. Old buildings require a lot of upkeep—"
show rika uni mischievous day closed with Dissolve(0.2)
show rika uni mischievous day open with Dissolve(0.2)
r "But please follow me. I want you to look at something."
stop music fadeout 3.0
pause(0.5)
hide rika with Dissolve(0.5)
hide naomi with Dissolve(0.5)
pause(1)
stop sound fadeout 1.0
scene church with Dissolve(1.0)
play music "<from 118.0>audio/mus_voctiefe2.ogg" loop fadein 12.0
pause(1)
"As I followed the girls through the main entrance, into the nave of the church, I could hear soothing tones seeping in through the walls." #choir was practicing in auditorium (let rika explain this?)
pause(0.5)
show rika uni mischievous day open with Dissolve(0.5)
r "That's the boys choir, they're practicing in the auditorium."
r "I hope you don't mind the sound." #conservatory
# "Though most parts of the Ichthys complex had been erected during recent times, it encompassed the seventeenth century structure of the original church of Abbot."
show rika uni mischievous day closed with Dissolve(0.2)
show rika uni mischievous day open with Dissolve(0.2)
"She beckoned me onward."
pause(0.5)
hide rika with Dissolve(0.5)
stop music fadeout 3.0
pause(1)
scene catacombs with Dissolve(1.0)
play effects "<from 75.0>audio/mus_voctiefe1_damp.ogg" loop fadein 10.0
pause(1)
"We headed down a short staircase and through a narrow corridor, that led into a crypt that was situated directly underneath the church."
pause(1)
scene crypt_dark with Dissolve(1.0)
pause(1)
"In the faint light I could make out the walls. They were covered with engravings that appeared worn and faded, as though they had once been exposed to the elements."
pause(0.5)
show rika uni mischievous nig open at Position(xpos=0.7, xanchor=0.5) with Dissolve(1)
show naomi uni intent nig glas at left with Dissolve(1)
pause(0.5)
"Rika pointed upward."
show rika uni mischievous nig closed with Dissolve(0.2)
show rika uni mischievous nig open with Dissolve(0.2)
r "There. There should be a light bulb above that door, but it isn't working anymore."
r "Are you tall enough to look behind there?"
show naomi uni suprised nig glas with Dissolve(0.2)
"I stretched myself to see over the casing of the door, where I could barely discern a small light socket."
pause(0.5)
a "I can probably reach it, but it's pretty high up."
a "Can't you just use a step-ladder." #and do it yourselves?
show naomi uni smile nig glas with Dissolve(0.2)
"Naomi giggled."
u "I mean, we {i}could.{/i} But just think of all the spiders that live up there—"
u "Please help us Abe — now that you're here anyway."
show naomi uni serious nig glas with Dissolve(0.2)
"I reached over the door with my hand until I felt the smooth surface of an incandescent bulb."
r "Carefully I unscrewed it, setting a fine stream of age old dust pouring downward over my clothes."
pause(0.5)
"The bulb came loose."
pause(0.5)
"I stepped down and held it to Rika's ear —{nw}"
play audio "audio/brokenbulb.ogg"
extend " shaking it, so that a rattling sound became clearly audible." #TODO SFX
show rika uni sad nig open with Dissolve(0.5)
r "A burnt out bulb, just as I thought."
r "But don't worry—"
"She dug around in her uniform pocket."
show rika uni happy nig open with Dissolve(0.5)
r "—we bought a new one. This one uses advanced {i}Light Emitting Diode{/i} technology."
r "It should last much longer and save the church on electricity."
#Light emitting diode"
"Smirking, I took the bulb from her and carefully screwed it into its socket. "
scene crypt
show rika uni happy day open at Position(xpos=0.7, xanchor=0.5)
show naomi uni serious day glas at left
with Dissolve(0.1)
scene crypt_dark
show rika uni happy nig open at Position(xpos=0.7, xanchor=0.5)
show naomi uni serious nig glas at left
with Dissolve(0.1)
scene crypt
show rika uni happy day open at Position(xpos=0.7, xanchor=0.5)
show naomi uni serious day glas at left
with Dissolve(0.1)
scene crypt_dark
show rika uni happy nig open at Position(xpos=0.7, xanchor=0.5)
show naomi uni serious nig glas at left
with Dissolve(0.1)
scene crypt
show rika uni happy day open at Position(xpos=0.7, xanchor=0.5)
show naomi uni serious day glas at left
with Dissolve(0.1)
"When I was nearly done it began to emit a blinding light."
"I had to catch myself to retain my balance, as the entire crypt — that had been steeped in darkness just a moment ago — was suddenly illuminated." #TODO effect
show rika uni happy day closed with Dissolve(0.2)
show rika uni happy day open with Dissolve(0.2)
r "There, that wasn't too much trouble. Was it?"
pause(1)
"As my eyes grew accustomed to the light, I became aware of my surroundings."
"We were standing inside a windowless catacomb. Large stone slabs covered the walls around us, every one of them inscribed with time-worn glyphs."
pause(1)
a "Some places are better kept in darkness—"
show rika uni sad day open with Dissolve(0.2)
r "Oh not at all — do you see these stones?"
r "Do you know where they come from?"
pause(0.5)
a "They look like gravestones to me—"
show rika uni happy day open with Dissolve(0.5)
"Rika smiled."
show rika uni happy day closed with Dissolve(0.2)
show rika uni happy day open with Dissolve(0.2)
r "That would be correct."
r "You should take a look at the dates on these stones."
r "Some date back to the early fourteen-hundreds."
show naomi uni intent day glas with Dissolve(0.2)
r "When this town was still situated on an island—"
show rika uni happy day open with Dissolve(0.5)
r "Did you know there used to be a different church on Abbot?"
show rika uni happy day closed with Dissolve(0.2)
show rika uni happy day open with Dissolve(0.2)
r "It served the congregation up until 1653."
r "Its ruins can still be visited, close to the southern point."
r "The old church even had an adjacent graveyard — but I'm afraid the encroaching sea made for watery graves."
r "And the salt water ate at the foundations of the church, rotting away the wood and making the stone walls tilt over threateningly."
show rika uni happy day closed with Dissolve(0.2)
show rika uni happy day open with Dissolve(0.2)
r "When a large winter storm swept away the cemetery gates — one dark December night — the community decided it was time to build a new and more splendid church, on higher laying land. "
r "That's the building we're now standing in."
show rika uni happy day closed with Dissolve(0.2)
show rika uni happy day open with Dissolve(0.2)
r "Construction began immediately, although work was halted many times in pursuit of new funding."
r "All building supplies had to be transported from the mainland. And when funds ran out, many stones were taken from the old church to continue the project."
r "After forty years of construction, the new church was completed — and our place of worship was moved to this new location."
show rika uni sad day open with Dissolve(0.2)
r "The dead, however, stayed behind in their old cemetery."
r "There the remains of our forefathers languished beneath the skeleton of a decrepit chapel, constantly threatened by the washing sea."
show rika uni sad day closed with Dissolve(0.2)
show rika uni sad day open with Dissolve(0.2)
r "And the reverend Kuyper, my great forefather, decided that something was to be done—"
#But we couldn't leave these graves behind.
r "Now that work on the new church was finished, the villagers commenced with the process of moving the dead to the new location."
r "They began with the graves that were in immediate danger of being swallowed by the sea." #before they began moving inland."
show rika uni sad day closed with Dissolve(0.2)
show rika uni sad day open with Dissolve(0.2)
r "But, as you can imagine, it was unpleasant work. No one found joy in digging up old bones—"
r "—and the graveyard relocation project grew into an effort that spanned multiple centuries, often lying still for decades. "
r "It wasn't until the beginning of the twentieth century, that the last of the graves was moved to dry land."
show rika uni mischievous day open with Dissolve(0.5)
"Rika glared at us ominously, while a silver sheen glistened through her ink-black hair."
#"The choir had stopped singing. The church was filled with deathlike silence." #change choir #is this needed? depends on sfx
#"Naomi sat looking at Rika, an expression of discomfort filling her eyes."
show rika uni mischievous day closed with Dissolve(0.2)
show rika uni mischievous day open with Dissolve(0.2)
r "But even then, they say at least a few graves must have been overlooked — their contents swept into the endless depths of the ocean." #SFX
show rika uni sad day open with Dissolve(0.5)
#"Suddenly."
#a "Anyway, if that's all you needed me for, I'd better be on my way—"
r "Oh Abe, I apologize, we've been keeping you from your work. And to think that it's almost lunch time."
show rika uni sad day closed with Dissolve(0.2)
show rika uni sad day open with Dissolve(0.2)
r "Won't you have lunch with us? Naomi has packed sandwiches." #what kind of lunch
r "Come on Naomi, after our hard work, I say we've deserved a break. We'll finish decorating in the afternoon."
stop effects fadeout 3.0
pause(0.5)
hide rika with Dissolve(0.5)
hide naomi with Dissolve(0.5)
pause(0.5)
pause(1)
scene church with Dissolve(1.0)
play music "<from 18.0>audio/mus_voctiefe2.ogg" loop fadein 12.0
pause(1)
"We climbed back up the stairs and settled among the pews."
show naomi uni smile day glas at left with Dissolve(0.5)
show rika uni happy day open at Position(xpos=0.7, xanchor=0.5) with Dissolve(0.5)
u "I made these at home, please let us share them together."
u "I hope you didn't have other plans for lunch."
"I shook my head."
show rika uni happy day closed with Dissolve(0.2)
pause(0.5)
a "Usually I don't even get around to eating on days like these—"
"Naomi handed me a sandwich."
show rika uni happy day closed with Dissolve(0.2)
show rika uni happy day open with Dissolve(0.2)
r "So how have you been doing, Abe? Are you fully prepared for finals?"
"I grumbled a reply."
show rika uni mischievous day open with Dissolve(0.5)
r "Oh and—"
r "—I haven't received your submission form for {i}easter break{/i} yet."
r "Could you hurry up and fill one out? We're running short on applicants."
"I looked up from my sandwich."
pause(0.5)
a "{i}Easter break—?{/i}"
show rika uni mischievous day closed with Dissolve(0.2)
show rika uni mischievous day open with Dissolve(0.2)
r "Haven't you seen the notices at school?"
r "It's our yearly outing — where we stay at the beach for a few days, as a last escapade before finals start." #let Naomi say this
#It's open to anyone, though it's usually usually as a last escapade before finals start.
r "We'll hold nightly study sessions, but mainly it will be a care-free vacation."
r "Naomi and I are on the organizing committee together—"
"Rika took out a small form from her purse."
show rika uni mischievous day closed with Dissolve(0.2)
show rika uni mischievous day open with Dissolve(0.2)
r "Please fill this out as soon as possible. You wouldn't want to miss easter break."
r "And let me know if you think of anyone else who would be interested in attending—"
r "As registration is low this year, anyone is welcome. Not just graduate students."
pause(0.5)
#### RIKA 1 ####
play audio "audio/decision.ogg"
menu:
with Dissolve(1.0)
r "Will you join us on easter break?"