summaryrefslogtreecommitdiff
path: root/js/script-a1-monday.js
blob: 9ebf077083c0842ad0583f6f2e72c79912f5332f (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
function en_NOP1() {
window hide None

scene("black")
with(None)

scene("bg", "op_snowywoods", "")
show("snow")
with(Dissolve(2.0))

window("show")

play music music_serene fadein 2.0

name_only("A light breeze causes the naked branches overhead to rattle like wooden windchimes.")

name_only("This is a popular retreat for couples in the summer. The deciduous trees provide a beautiful green canopy, far out of sight of teachers and fellow students.")

name_only("But now, in late winter, it feels like I'm standing under a pile of kindling.")

name_only("I breathe into my cupped hands and rub them together furiously to prevent them from numbing in this cold.")

hi("Just how long am I expected to wait out here, anyway? I'm sure the note said 4:00 PM.")

name_only("Ah yes… the note… slipped between the pages of my math book while I wasn't looking.")

name_only("As far as clichés go, I'm more a fan of the letter-in-the-locker, but at least this way shows a bit of initiative.")

name_only("As I ponder the meaning of the note, the snowfall gradually thickens.")

name_only("The snowflakes silently falling from the white-painted sky are the only sign of time passing in this stagnant world.")

name_only("Their slow descent upon the frozen forest makes it seem like time has slowed to a crawl.")

play("sound", "sfx_rustling", "")

name_only("The rustling of dry snow underfoot startles me, interrupting the quiet mood. Someone is approaching me from behind.")

mystery("Hi… Hisao? You came?")

name_only("A hesitating, barely audible question.")

name_only("However, I recognize the owner of that dainty voice instantly.")

name_only("I feel my heart skip a beat.")

name_only("It's a voice I've listened to hundreds of times, but never as more than an eavesdropper to a conversation.")

name_only("I turn to face this voice, the voice of my dreams, and my heart begins to race…")

window("hide")

$ ksgallery_unlock("evul other_iwanako")
scene("ev", "other_iwanako_start", "")
show("snow")
with(GenericWhiteout(0.5,0.0,5.0))

window("show")

hi("Iwanako? I got a note telling me to wait here… it was yours?")

name_only("Dammit. I spent all afternoon trying to come up with a good line and that was the result.")

name_only("Pathetic.")

name_only("Iwanako" "Ahmm… yes. I asked a friend to give you that note… I'm so glad you got it.")

name_only("A shy, joyous smile that makes me so tense I couldn't move a single muscle even if I tried.")

stop music fadeout 10.0

window("hide")

scene("bg", "op_snowywoods", "")
show("snow")
with(GenericWhiteout(0.5,0.0,2.0))

play("sound", "sfx_heartslow", "")
show("heartattack", "alpha")
with Dissolve (0.1)

hide("heartattack", "alpha")
with Dissolve (0.7)

with(Pause(0.7))

play("sound", "sfx_heartslow", "")
show("heartattack", "alpha")
with Dissolve (0.1)

hide("heartattack", "alpha")
with Dissolve (0.7)

window("show")

name_only("My heart is pounding now, as if it were trying to burst out from my chest and claim this girl for itself.")

window("hide")

scene("ev", "other_iwanako", "")
show("snow")
with(GenericWhiteout(0.5,0.0,3.0))

window("show")

hi("So… ah… here we are. Out in the cold…")

name_only("Once again, the wind stirs up the branches. The cacophonous noise is music to my ears.")

name_only("Iwanako flinches ever so softly against the gust of wind.")

name_only("As it passes, she rights herself, as if supported by some new confidence.")

name_only("Her eyes lock with mine and she lazily twirls her long, dark hair around her finger.")

name_only("All the while, the anxious beating of my heart grows louder.")

window("hide")

scene("bg", "op_snowywoods", "")
show("snow")
with(GenericWhiteout(0.5,0.0,2.0))

window("show")

name_only("My throat is tight; I doubt I could even force a word out if I tried.")

name_only("Iwanako" "You see…")

window("hide")

play("sound", "sfx_heartslow", "")
show("heartattack", "alpha")
with Dissolve (0.1)

hide("heartattack", "alpha")
with Dissolve (0.4)

window("show")

name_only("Iwanako" "…I wanted to know…")

stop music fadeout 0.5

window("hide")

play("sound", "sfx_heartslow", "")
show("heartattack", "alpha")
with Dissolve (0.1)

hide("heartattack", "alpha")
with Dissolve (0.2)

with(Pause(0.7))

play("sound", "sfx_heartfast", "")
show("heartattack", "alpha")
with Dissolve (0.1)

hide("heartattack", "alpha")
with Dissolve (0.2)

window("show")

name_only("Iwanako" "… if you'd go out with me…")

name_only("I stand there, motionless, save for my pounding heart.")

name_only("I want to say something in reply, but my vocal cords feel like they've been stretched beyond the breaking point.")

play music music_tragic fadein 0.05

name_only("Iwanako" "… Hisao?")

name_only("I reach up to try to massage my throat, but this only sends spikes of blinding pain along my arms.")

name_only("Iwanako" "Hisao?!")

window("hide")

play("sound", "sfx_heartfast", "")
show("heartattack", "alpha")
with Dissolve (0.1)

hide("heartattack", "alpha")
with Dissolve (0.8)

window("show")

name_only("My whole body freezes, save for my eyes, which shoot open in terror.")

window("hide")

play("sound", "sfx_heartfast", "")
show("heartattack", "alpha")
with Dissolve (0.1)

hide("heartattack", "alpha")
with Dissolve (0.8)

with(Pause(0.15))

play("sound", "sfx_heartslow", "")
show("heartattack", "alpha")
with Dissolve (0.1)

hide("heartattack", "alpha")
with Dissolve (0.8)

play("sound", "sfx_heartfast", "")
show("heartattack", "alpha")
with Dissolve (0.1)

hide("heartattack", "alpha")
with Dissolve (0.8)

with(Pause(0.05))

play("sound", "sfx_heartstop", "")
show("heartattack", "alpha")
with Dissolve (0.1)

stop music fadeout 0.3

show("heartattack", "residual")
with Dissolve (0.8)

window("show")

name_only("Iwanako" "HISAO!")

name_only("The beating in my chest suddenly stops, and I go weak at the knees.")

window("hide")

show(passoutOP1)
with(None)

nvl show Dissolve(0.2)

n("\n\n\n\n\n\n\nThe world around me - the canopy of bare branches, the dull winter sky, Iwanako running towards me - all these fade to black.")

n("\nThe last things I remember before slipping away are the sounds of Iwanako screaming for help and the incessant clatter of the branches above…")

nvl hide Dissolve(3.0)

nvl("clear")

with Pause (1.0)

scene("black")
with(None)


}
function en_NOP2() {

window hide None

scene("black")
with(None)

centered "It's been four months since my heart attack." with dissolve

scene("bg", "hosp_room", "")
show("sakura")
show("hospitalmask")
with Dissolve (1.5)

$ renpy.music.set_volume(0.5, 0.0, channel="music")
play music music_rain fadein 4.0

nvl("show", "dissolve")

n("\n\nIn that whole time, I can probably count the times I've left this hospital room unsupervised on one hand.")

n("Four months is a pretty long time when you're left alone with your thoughts. So, I've had plenty of time to come to terms with my situation.")

n("Arrhythmia.")

n("A strange word. A foreign, alien one. One that you don't want to be in the same room with.")

n("A rare condition. It causes the heart to act erratically and occasionally beat way too fast. It can be fatal.")

n("Apparently, I've had it for a long time. They said it was a miracle that I was able to go on so long without anything happening.")

n("Is that really a miracle? I guess it was supposed to make me feel better, more appreciative of my life.")

n("It really didn't do anything to cheer me up.")

nvl("clear")

n("\n\n\n\n\nMy parents, I think, were hit harder by the news than I was. They practically had two hemorrhages apiece.")

n("\nI had already had a full day by then to digest everything. To them, it was all fresh. They were even willing to sell our house in order to pay for a cure.")

n("\n\nOf course there isn't a cure.")

nvl("clear")

n("\nBecause of the late discovery of this… condition, I've had to stay at the hospital, to recuperate from the treatments.")

n("When I was first admitted, it felt as if I was missed…")

n("For about a week, my room in the ward was full of flowers, balloons and cards.")

n("But, the visitors soon dwindled and all the get-well gifts began trickling down to nothing shortly after.")

n("I realized that the only reason I had gotten so many cards and flowers was because sending me their sympathy had been turned into a class project.")

n("Maybe some people were genuinely concerned, but I doubt it. Even in the beginning, I barely had visitors. By the end of the first month, only my parents came by on a regular basis.")

n("Iwanako was the last to stop visiting.")

n("After six weeks, I never saw her again. We never had that much to talk about when she visited, anyway.")

n("We didn't touch the subject that was between us on that snowy day ever again.")

nvl("clear")

n("\nThe hospital?")

n("It's not really a place I'd like to live in.")

n("The doctors and nurses feel so impersonal and faceless.")

n("I guess it's because they are in a hurry and they have a million other patients waiting for them, but it makes me feel uncomfortable.")

n("For the first month or so, I asked the head cardiologist every time I saw him for a rough estimate of when I'd be able to leave.")

n("He never answered anything in a straightforward way, but told me to wait and see if the treatment and surgeries worked.")

n("\nSo, I idly observed the scar that those surgeries had left on my chest slowly change its appearance over time, thinking of it as some kind of an omen.")

n("I still ask the head cardiologist about leaving, but my expectations are low enough now that I'm not disappointed any more when I don't get a reply. The way he shuffles around the answer shows that there is at least some hope.")

nvl("clear")

n("\n\n\n\nAt some point I stopped watching TV. I don't know why, I just did.")

n("Maybe it was the wrong kind of escapism for my situation.")

n("\nI started reading instead. There was a small “library” at the hospital, although it was more like a storeroom for books. I began working my way through it, one small stack at a time. After consuming them, I would go back for more.")

n("I found that I liked reading and I think I even became a bit addicted. I started feeling naked without a book in my hands.")

n("\nBut I loved the stories.")

nvl("clear")

n("\nThat was what my life was like.")

n("\nThe days became increasingly harder to distinguish from each other, differing only by the book I was reading and the weather outside. It felt like time blurred into some kind of gooey mass I was trapped inside, instead of moving within.")

n("A week could go by without me really noticing it.")

n("Sometimes, I'd pause in realization that I didn't know what day of the week it was.")

n("But other times, all the things that surrounded me would painfully crash into my consciousness, through the barrier of nonchalance I had set up for myself.")

n("The pages of my book would start to feel sharp and burning hot and the heaviness in my chest would become so hard to bear that I had to put the book aside and just lay down for a while, looking at the ceiling as if I was going to cry.")

n("But that happened only rarely.")

n("\nAnd I couldn't even cry.")

$ renpy.music.set_volume(1.0, 1.0, channel="music")

nvl("hide", "dissolve")

nvl("clear")

window("show")

name_only("Today, the doctor comes in and gives me a smile. He seems excited, but not very. It's like he is trying to make an effort to be happy on my behalf.")

name_only("My parents are here. It's been a few days since I've last seen them. Both of them are even sort of dressed up. Is this supposed to be some kind of special occasion? It's not a party.")

name_only("There is this ritual the head cardiologist has. He takes his time, sorting his papers, then setting them aside as if to make a point of the pointlessness of what he just did.")

name_only("Then he casually sits down on the edge of the bed next to mine. He looks me in the eyes for a moment.")

name_only("Doctor" "Hello, Hisao. How are you today?")

name_only("I don't answer him but I smile a little, back at him.")

name_only("Doctor" "I believe that you can go home; your heart is stronger now, and with some precautions, you should be fine.")

name_only("Doctor" "We have all your medication sorted out. I'll give your father the prescription.")

name_only("The doctor hands a sheet of paper to my dad, whose expression turns wooden as he reads it quickly.")

name_only("Dad" "So many…")

name_only("I take it from his hand and take a look myself, feeling numb. How am I supposed to react to this?")

$ renpy.music.set_volume(0.5, 2.0, channel="music")

scene("white")
with(Dissolve(2.0))

show wallodrugs :
    xalign 0.0 subpixel True
    easein 25.0 xalign 1.0


name_only("The absurdly long list of medications staring back at me from the paper seems insurmountable. They all blend together in a sea of letters.")

name_only("This is insane.")

name_only("Side effects, adverse effects, contraindications and dosages are listed line after line with cold precision.")

name_only("I try to read them, but it's so futile.")

name_only("I can't understand any of it. Attempting to only makes me feel sicker.")

name_only("All this… for the rest of my life, every day?")

$ renpy.music.set_volume(1.0, 1.0, channel="music")

scene("bg", "hosp_room", "")
show("sakura")
show("hospitalmask")
with("fade")

name_only("Doctor" "I'm afraid that is the best we can do at this point.")

name_only("Doctor" "However, new medications are always being developed, so I wouldn't be surprised to see that list fade over the years.")

name_only("Years… What kind of confidence booster is that? I'd have felt better if he hadn't said anything at all…")

name_only("Doctor" "Also, I've spoken with your parents and we believe that it would be best if you don't return to your old school.")

name_only("What!?")

name_only("Dad" "Please, calm down, Hisao. Listen to what the doctor has to say…")

name_only("Calm down? The way he says it tells me he knew full well that I wouldn't like it. Am I going to be home schooled?")

name_only("Whatever of my concern shows, it's ignored.")

name_only("Doctor" "We all understand that your education is paramount; however, I don't think that it's wise for you to be without supervision.")

name_only("Doctor" "At least not until we're sure that your medication is suitable.")

name_only("Doctor" "So, I've spoken to your parents about a transfer.")

name_only("Doctor" "It's a school called Yamaku Academy that specializes in dealing with disabled students.")

name_only("Disabled? What? Am I…")

name_only("Doctor" "It has a 24-hour nursing staff and it's only a few minutes from a highly regarded general hospital. The majority of students live on the campus.")

name_only("Doctor" "Think of it as a boarding school of sorts. It's designed to give students a degree of independence, while keeping help nearby.")

name_only("Independence? It's a school for disabled kids. Don't try to disguise that fact.")

name_only("If it was really that “free,” there wouldn't be a 24-hour nursing staff, and you wouldn't make a hospital being nearby a selling point.")

name_only("Dad" "Of course, that's only if you want to go. But… your mother and I aren't really able to home school you.")

name_only("Dad" "We went out there and had a look a couple of weeks back; I think you'd like it.")

name_only("It looks like I really don't have a choice.")

name_only("Doctor" "Compared to other heart problems, people with your condition usually tend to live long lives. You'll need a job one day and this is a good opportunity to continue your education.")

name_only("This isn't an opportunity, don't call it an opportunity. Don't call it a goddamned opportunity.")

name_only("Doctor" "Well, you should be excited at the chance to go back to school. I remember you wanted to return to school, and while it's not the same one…")

name_only("A special school. That's…")

name_only("An insult. That is what I want to say. It's a step down.")

name_only("Dad" "It's not what you think. All of the students there are pretty active, in their own sort of way.")

name_only("Dad" "It's geared towards students that can still get around and learn, but just need a little help… in one way or another.")

name_only("Doctor" "Your father's right. And many of the graduates of the school have gone on to do amazing things. A person doesn't have to be held back by their disability.")

name_only("Doctor" "One of my colleagues in another hospital is a graduate.")

name_only("I don't care. A person doesn't have to be held back by their disability? That's what a disability is.")

name_only("I really hate that something so important was decided for me. But what can I do about it? A “normal” life is out of the question now.")

stop music fadeout 10.0

name_only("It's funny, I had always thought my life was actually kind of boring, but now I miss it.")

name_only("I want to protest. I want to blame this lack of reaction on shock, or fatigue. I could easily yell out something now - something about how I can go back to school anyway. But, no.")

name_only("I don't say anything. The fact is that I know now it's futile.")

name_only("I look around the room, feeling very tired of all this. The hospital, doctors, my condition, everything. I don't see anything that would make me feel any different.")

name_only("There really isn't a choice. I know this, but the thought of going to a disabled school… what are those even like? As much as I try to put a positive spin on this, it's very difficult.")

name_only("But let me try.")

name_only("A clean slate isn't a bad thing.")

name_only("That is all I can think of to get me through this. At least I still have something; even if it's a “special school,” it's something. It's a fresh start, and my life isn't over. It would be a mistake to just resign myself to thinking that.")

name_only("At the very least, I'll try to see what my new life will look like.")

window("hide")




}
function en_A1() {

window hide None

scene("bg", "school_gate", "")
with(Dissolve(3.0))

play("music", "music_happiness", "")

window("show")

name_only("The gate looked far too pompous for what it was.")

name_only("In fact, gates in general seem to do that, but this one especially so.")

name_only("Red bricks, black wrought iron and gray plaster, assembled into a whole that didn't feel welcoming at all.")

name_only("I wondered if it looked like what a gate for a school should look like, but couldn't really decide. Probably no.")

name_only("Of course I didn't want to get stuck on thinking about the gate for too long, so I entered through it with a brisk pace that felt surprisingly good.")

name_only("Moving forward feels good.")

scene("bg", "school_courtyard", "")
with("locationchange")

name_only("So I walk towards the main building of Yamaku Academy with this brisk pace. I'm alone, as my parents are taking my stuff to the dorms, and there's supposed to be someone waiting for me.")

name_only("The grounds are incredibly lush, filled with green.")

name_only("It doesn't feel like the kind of grounds a school would have, more like a park, with a clean walkway going past trees and the smell of fresh-cut grass and all other park-like things.")

name_only("Words like “clean” and “hygienic” pop into my mind. It makes me shudder.")

name_only("I shake them off. Stay open-minded now. It's your new life. You have to take it as it comes.")

name_only("That's what I tell myself.")

name_only("A few big buildings loom behind the leafy canopies, too big and too many for just a school.")

name_only("Everything seems off; it's different from what I thought I knew about schools.")

name_only("It's an uncanny valley. Even though I was told this is my new school, in the back of my head it doesn't feel like one.")

name_only("I wonder if the feeling is real or caused by my expectations of a school for the disabled.")

name_only("Speaking of that, I don't see anyone else here. It's kinda eerie.")

name_only("It makes me wish there was somebody here so I could anchor myself to something tangible instead of having this feeling that I stepped into another dimension.")

name_only("The trees hum with the wind and the green hues flashing all around me catch my attention.")

name_only("It makes me think about hospitals again, how they say that the operating rooms are painted green because green is a calming color.")

name_only("So why am I feeling so anxious, despite all this greenery?")

name_only("…")

name_only("Only after I stand in front of the haughty main building, I surprise myself by realizing why the gate bothered me:")

name_only("It was the last chance I had to turn back, even if I had no life I could return to.")

name_only("But still, after entering, there was absolutely no way I could go back any more.")

name_only("Feeling nervous and with this realization set in my head, I open the front door.")

scene("bg", "school_lobby", "")
with("locationchange")

name_only("A tall man with bad posture notices me as I enter. We're the only people in the lobby, so it's only logical.")

show muto normal at center
with("charaenter")

mu_ "You must be… Ni… Na… Niki?"

hi("Nakai.")

show("muto", "smile")
with("charachange")

mu_ "So you are. Excellent. I'm your homeroom and science teacher. My name is Mutou."

mu("Welcome.")

name_only("We exchange a handshake that is neither firm nor sloppy, and he looks at his watch.")

show("muto", "irritated")
with("charachange")

mu("The head nurse asked you for a brief check-in visit, but there's no time for that now.")

hi("Oh. Should I go later?")

show("muto", "normal")
with("charachange")

mu("Yes, afternoon is probably fine. We should get going and introduce you to the rest of the class. They're waiting already.")

name_only("Waiting for me? I don't really like being the center of attention, but I guess it's inevitable in a situation like this.")

name_only("Somehow, not knowing what is waiting for me makes me feel really nervous.")

name_only("Thinking of this, I almost miss what the teacher is saying.")

}
function en_choiceA1() {
    mu "Do you want to introduce yourself to the class?"
menu({
    "Why?": "m1"

    "Yeah, of course.": "m2"
});
}
function en_A1a() {

hi("Why? Do I have to?")

mu("Of course not. That's why I asked.")

hi("Right.")

mu("Let's go then.")



}
function en_A1b() {

hi("Yeah, sure. I mean, isn't that normal?")

mu("Of course. But not everyone likes to be at the center of attention.")

name_only("I'm probably one of those people, but I guess I should be the one to give the first impression of myself.")

hi("Right, but it's no problem.")

mu("Let's go then.")



}
function en_A1c() {

scene bg school_staircase2
with("locationchange")

name_only("My heart is pounding in my chest and it keeps me thinking about my condition as I follow the teacher up the stairs.")

scene bg school_hallway3
show muto normal at center
with("locationchange")

name_only("The third door down the third floor corridor is marked as the classroom for class 3-3.")

play("sound", "sfx_dooropen", "")

name_only("Mutou opens the door and enters.")

show muto normal at Alphaout(0.5), Slide(0.5,0.5,0.4,0.5,0.5,_ease_out_time_warp)
with Pause (0.5)

hide("muto")
with(None)

mu("Good morning everyone, sorry I'm late again.")

stop music fadeout 2.0

name_only("I hesitate for a split second at the door, freezing on the spot.")





}
function en_A2() {

scene bg school_hallway3
with(None)

name_only("Ah, get a grip! This is a big step, I know that… But there isn't any point to worrying so much about it, at least not this soon.")

scene("ev", "hisao_class_start", "")
with("fade")

play music music_normal fadein 0.5

name_only("I follow the teacher into the classroom and look around, partially so I won't have to meet the curious gazes of my new classmates.")

name_only("It's pretty spacious; the ceiling is unusually high and there's lots of space left over around and inbetween the desks.")

name_only("An entire wall taken up by blackboards and the high, old fashioned windows only make it seem larger.")

name_only("The students' desks are just standard wooden desks with a shelf underneath for books and wooden chairs with metal frames. Simple and efficient.")

name_only("I stop walking in front of the classroom and face the other students. They all look normal, like students in any other school. But then, why would they be here?")

scene("ev", "hisao_class_move", "")
with(None)

name_only("They're probably like me and have something wrong with them, only it's just not immediately obvious. Then, I notice that one of the girls seems to be missing the thumb of her right hand. It's a little jarring.")

name_only("Despite the natural tendency to listen when someone's talking about you, I tune out the teacher's speech halfway through while he introduces me to the class.")

name_only("I notice a flash of dark hair and see that someone is looking at me. A girl with really long, straight hair that is pretty eye-catching. As she sees me looking back at her, she covers her face with her hands as if it will make her invisible.")

name_only("There is one boy with a cane leaning against the lockers at the rear of the class. It's weird seeing someone so young with a cane.")

name_only("Another girl seems to be making some weird hand motions. Sign language? She peers at me over the rims of her glasses, then goes back to whatever she's doing.")

name_only("She's kind of cute. So is the cheery-looking girl with pink hair sitting next to her. She's really hard to miss; I don't know how I didn't notice her the moment I walked in…")

mu("…please welcome our newest classmate.")

name_only("He claps his hands and so does everyone else, except one girl in the first row who has only one hand. I cringe a little, but hide it by bowing in thanks for this applause I did not deserve.")


}
function en_A2a() {

name_only("After the applause, there is a brief silence that nobody seems to want to be responsible for breaking.")

name_only("The teacher soon realizes that he should probably say something. He opens up with some unintelligible noise, shuts up as he loses his momentum, and then starts introducing me.")

name_only("Nobody seems to be too interested.")

name_only("Maybe I should've said yes to the self-introduction thing.")

name_only("Probably realizing he doesn't know anything about me, he just ends up saying my name wrong again, and asks me to write it on the blackboard.")

name_only("I do that, and turn back to face the class, feeling awkward.")


}
function en_A2b() {

name_only("A collective silence tells me that I should open my mouth now.")

hi("So… I'm Hisao Nakai.")

name_only("And after that?")

hi("My hobbies are reading and soccer. I hope to get along well with everyone even though I'm a new student.")

name_only("And after that?")

name_only("I'm being so boring. This is exactly like every self-introduction ever. I should say something more. Something more exciting.")

name_only("I end up saying nothing, and the teacher picks up from there.")

name_only("Everyone seems to be satisfied even with what little I said, though. A few girls are whispering to each other, throwing glances at me. It could've gone worse.")

name_only("…")


}
function en_A2c() {

scene("ev", "hisao_class_end", "")
with(None)

name_only("I listen to the teacher as he drones about getting along while letting my gaze sweep across the classroom.")

name_only("Everyone seems to be listening to him intently and when he's done, they clap their hands again which feels like a weird thing to do.")

name_only("The first row girl claps on this round, with her one hand against her other wrist that ends in a bandaged stump.")

name_only("It makes me feel a little bad.")

scene bg school_scienceroom at bgright
show muto normal at center
with("fade")

mu("We're going to be doing some group work today, so that'll give you a chance to talk with everyone. Is that okay with you?")

hi("Yeah, it's fine with me.")

show("muto", "smile")
with("charachange")

mu("That's good, you can work with Hakamichi. She is the class representative.")

mu("She can explain anything you might want to know. And who else would be able to do that better, right?")

hide("muto")
with("charaexit")

name_only("How could I know?")

name_only("The teacher passes out the day's assignments and announces that we will be working in groups of three.")

name_only("It hits me that I don't know who Hakamichi is. Slow. The teacher seems to catch my helpless expression.")

mu("Oh, right. Hakamichi is right there, Shizune Hakamichi.")

show misha perky_smile at center
with("charaenter")

name_only("As he calls out her name, the cute, bubbly looking girl with bright pink hair and gold eyes waves her hand at me. I take a seat next to her, by the window.")

hi("Hey, I guess you're Hakamichi, right? It's nice to meet you.")

stop music fadeout 1.0

show("misha", "cross_laugh", "")
with("charachange")

mi_shi "Hahaha~!"

name_only("What? I'm caught off guard by her laughter.")

show("misha", "hips_grin", "")
with("charachange")

mi_shi "It's nice to meet you, too!{w=0.5} But~!"

mi_not_shi "It's nice to meet you, too! But~!{fast}, I'm not Hakamichi, I'm Misha! This is Hakamichi. Shicchan~!"

play music music_shizune fadein 1.0

show misha hips_grin at twoleft
show bg school_scienceroom at center
with("charamove")

show shizu basic_normal at tworight
with("charaenter")

name_only("Giggling, Misha points to the girl next to her, the one I saw using sign language before. It looks like she has been staring at me this whole time. She nods once nonchalantly to show that she acknowledges my presence… but only barely.")

name_only("She has short, yet carefully, neatly brushed hair, a pair of oval-shaped glasses balanced on the tip of a dainty nose, and dark blue eyes that seem to alternate every few seconds between analytical and slightly bored.")

hi("It's nice to meet you.")

show("shizu", "behind_blank", "")
with("charachange")

shi("…")

show("misha", "perky_smile", "")
with("charachange")

show("misha", "sign_smile", "")
with("charachange")

show("misha", "perky_smile", "")
with("charachange")

name_only("She immediately looks at Misha, who smiles and makes a few quick gestures with her hands.")

show("shizu", "adjust_happy", "")
with("charachange")

show("shizu", "behind_smile", "")
with("charachange")

name_only("Hakamichi nods and makes a few gestures of her own.")

name_only("I start to wonder if the teacher was messing with me, saying things like “you'll be able to talk to people” and “who better to explain things to you.”")

show("misha", "hips_smile", "")
with("charachange")

mi("I can see you're a little confused, right?, right? But, I understand why you would think I was Shicchan!")

mi("Shicchan is deaf, so I'm the person who translates things back and forth for her.")

show("misha", "hips_grin", "")
with("charachange")

mi("I'm like an interpreter~! She says it's nice to meet you, too!")

show shizu basic_normal2
with("charachange")

shi("…")

show("misha", "perky_smile", "")
with("charachange")

mi("You're the new student, aren't you? Well, Shicchan, of course he is! If he wasn't, he would have been standing up there for no reason, right? Right~!")



}
function en_A2d() {

mi("He seems like a very interesting person, doesn't he~!")



}
function en_A2e() {

name_only("Misha looks at me with a weird expression, then continues.")

mi("We don't know much about him, but maybe we'll find out later.")

name_only("Maybe I should've introduced myself after all. Anything would've given a better first impression than the teacher's drone and fumbling with my name.")



}
function en_A2f() {

mi("We knew there was going to be a new student, but we didn't know you would be here today. So soon! Hicchan, right?")

name_only("Hicchan…?")

show("misha", "hips_grin", "")
with("charachange")

mi("Yup~! It fits, doesn't it?")

name_only("Did I say it out loud? It's just a surprise. I've never liked that nickname.")

hi("I don't really see how.")

show("misha", "cross_grin", "")
with("charachange")

mi("It fits~! You look just like I imagined!")

show("shizu", "adjust_smug", "")
with("charachange")

shi("…")

show("misha", "cross_laugh", "")
show("shizu", "adjust_happy", "")
with("charachange")

mi("Hahahaha~! Yeah, you look just like a Hicchan!")

hi("I wonder why everyone seems to think so…")

shi("…")

name_only("Hakamichi taps her fingers on the desk to get Misha's attention. They gesture back and forth to each other excitedly, their hands a blur.")

show("shizu", "adjust_happy", "")
with("charachange")

show("misha", "sign_smile", "")
with("charachange")

show("shizu", "behind_smile", "")
with("charachange")

show("misha", "perky_confused", "")
with("charachange")

name_only("Misha seems a little overwhelmed.")

show("misha", "hips_grin", "")
with("charachange")

mi("Ahaha~! Er, sorry about that!")

show("misha", "hips_smile", "")
with("charachange")

mi("Shicchan wants you to know that she's the class rep, so if there is anything you need to know, you can feel free to ask her.")

show("shizu", "behind_blank", "")
with("charachange")

shi("…")

show("misha", "sign_smile", "")
with("charachange")

mi("Do you like the school so far? We can show you around a little if you haven't had the time to walk around and…{w=0.5}{nw}")

show misha perky_smile :
    "misha perky_confused"  with Dissolve(0.5, alpha=True)
with(None)

extend(" familiarize?{w=0.5}{nw}")

show misha perky_confused :
    "misha perky_smile"  with Dissolve(0.5, alpha=True)
with(None)

extend(" yourself with it!")

name_only("Misha stumbles with the hard word a bit, making it stick out in her otherwise fluid translation.")

hi("Thanks, that would be pretty helpful. Yeah, I just kind of came straight to class today.")

show("shizu", "behind_frown", "")
with("charachange")

shi("…")

show("misha", "hips_laugh", "")
with("charachange")

mi("Hahaha~!")

show("misha", "hips_smile", "")
with("charachange")

mi("That's no good! You should always try to learn as much as you can about where you're going before you go there. Not just with school, either~!")

show("misha", "hips_grin", "")
with("charachange")

mi("Always! Even if it's a trip to the convenience store! Really, Shicchan? Hahaha~!")

show("misha", "perky_smile", "")
show("shizu", "behind_smile", "")
with("charachange")

name_only("Learn about where you're going? I guess I didn't bother to do that, or just didn't care enough to do so.")

name_only("I didn't look forward to this, even if I committed myself to go along with it half-assedly, but anyway.")

name_only("I don't say anything, and Misha signs something that ends in a shrug. What was that? It seems like it was about me.")

name_only("I feel like slumping over in my seat. Both of them are smiling, but that shrug hit me unexpectedly deeply.")

show("misha", "perky_sad", "")
with("charachange")

mi("You look down, are you okay?")

show("shizu", "basic_normal", "")
with("charachange")

shi("…")

show("misha", "perky_smile", "")
with("charachange")

mi("Don't take it the wrong way, please~! I hate it when people are afraid to ask questions! That's how people learn things, by asking~!")

mi("Asking for help is perfectly normal, as much as needing help! Stop looking like you just failed a test!")

show("misha", "cross_laugh", "")
with("charachange")

mi("Wahahaha~!")

hi("All right.")

show("shizu", "adjust_happy", "")
with("charachange")

shi("…")

show("misha", "perky_smile", "")
with("charachange")

mi("Ah, and another thing, you don't have to call Shicchan something so formal like “Hakamichi” or “class rep” all the time! Just call her Shicchan~!")

stop music fadeout 0.5

show("shizu", "adjust_blush", "")
with("charachange")

shi("…")

show("misha", "hips_smile", "")
with("charachange")

mi("Ahaha~! Okay, maybe that's too casual. Maybe “Shizune” would be more appropriate?")

show shizu basic_normal2
with("charachange")

shi("…")

show("misha", "hips_grin", "")
with("charachange")

play music music_shizune fadein 5.0

mi("Yup, yup~! “Shizune” is fine!")

hi("Heh. Okay, that would be a lot easier for me.")

name_only("I feel a lot more at ease. Both of them seem so friendly, so I feel like an idiot for being so apprehensive earlier. Especially about Shizune, who I assumed would be all business.")

name_only("Well, she still seems like that. Just less so, I guess.")

show("shizu", "behind_frown", "")
with("charachange")

shi("…!")

show("misha", "perky_confused", "")
with("charachange")

mi("Huh? Oh, right, we haven't even touched the assignment! We should start work now, or Shicchan will get mad.")

hi("The assignment is also kind of long, so we should start now if we want to finish it before the end of class.")

show("misha", "hips_laugh", "")
with("charachange")

mi("Wahaha~! That too!")

show("shizu", "basic_frown", "")
with("charachange")

shi("…")

name_only("Shizune glares at the two of us impatiently. I don't need to know sign language to understand that.")

hi("Okay, okay, I get the message.")

show("shizu", "basic_normal", "")
with("charachange")

shi("…")

show("misha", "perky_smile", "")
with("charachange")

mi("After class, we can take a walk around the grounds together. It's a nice day today! Okay~?")

name_only("The assignment is actually very challenging to get through, combining aspects of being both difficult and unnecessarily long.")

stop music fadeout 6.0

scene("bg", "school_scienceroom", "")
with("shorttimeskip")

name_only("Still, we finish it a few minutes earlier than anyone else in the class, despite our late start. Shizune and Misha are really capable.")

name_only("They're quite different, though. The class rep is as calm and professional as she looks, while Misha is a lot more playful and girlish. Not to mention a little more easily distracted.")

name_only("To be honest, the two of them did most of the work. I feel guilty about that.")

play("sound", "sfx_normalbell", "")

name_only("The clock tower bells ring, signaling the end of the period. Time for lunch.")

scene bg school_hallway3
with("locationchange")

name_only("Without knowing what else to do, I follow Misha, who is beckoning me into the hallway and down the stairs.")




}
function en_A3() {

scene bg school_staircase2
with("locationchange")

name_only("We descend even below the lobby where I met Mutou, down to the bottom floor.")

play ambient sfx_crowd_indoors fadein 6.0

scene("bg", "school_cafeteria", "")
with("locationchange")

name_only("Just like everything in this school, the cafeteria seems too spacious and oddly modern in contrast to the classic exterior.")

name_only("Its big windows open to the courtyard, towards the main gate.")

show("misha", "hips_grin", "")
with("charachange")

play("music", "music_ease", "")

mi("It's the cafeteria~!")

name_only("Her enthusiastic statement of the obvious makes people around us stare, but Misha doesn't seem to care so we proceed to the line.")

hide("misha")
with("charaexit")

name_only("There is a rather long list of menu options, which seems great until I realize that many of them are to accommodate students who need special diets.")

name_only("How nice. It almost feels like I'm back at the hospital, eating portions measured with scientific precision to meet the needs of the patients.")

name_only("I pick something at random and follow Shizune to a table, sitting opposite of her.")

show misha hips_frown at twoleft
show shizu basic_normal at tworight
with("charaenter")

name_only("As I nibble indifferently at the food I'd rather not eat, Misha pokes me in the side to get my attention and points to Shizune.")

show("misha", "perky_smile", "")
show("shizu", "basic_frown", "")
with("charachange")

shi("…")

name_only("I don't understand sign, so the point escapes me.")

name_only("Maybe looking at a person who “talks” to you is proper and polite?")

show("misha", "hips_smile", "")
show("shizu", "behind_blank", "")
with("charachange")

mi("Do you want to know something?")

hi("What?")

show("misha", "hips_grin", "")
with("charachange")

mi("About anything! We're your guides so you should ask if there is something~!")

}
function en_choiceA3() {
    hi "Hmm, I wonder…"
    menu({
    "Ask about the library.":
        "m1"

    "Ask about Shizune's deafness.":
        "m2"

    "I think I got everything I need to know.":
        "m3"
    });

}
function en_A3a() {

hi("Oh, yeah. Is there a library in the school? Lately I've gotten into reading a lot so I'd like to check it out.")

name_only("Misha gives the kind of frown that makes it clear she doesn't consider reading a healthy hobby, but then picks up her smile again.")

mi("There is~! It's in the second floor, we can show it to you sometime!")

hi("Thanks.")

name_only("I return to my food while the girls talk between themselves.")



}
function en_A3b() {

name_only("Shizune intrigues me, and I kind of want to ask something about her.")

name_only("But I can't really ask about something that personal, can I?")

name_only("Hmm…")

name_only("I can't come up with anything else to ask so I just focus on my food while the girls talk between themselves.")



}
function en_A3c() {

hi("I can't think of anything, really.")

show("misha", "sign_smile", "")
with("charachange")

mi("Ooh! That means we've been good guides, doesn't it, doesn't it~?")

name_only("…")

hi("Eeh… if you say so.")

show("misha", "hips_grin", "")
with("charachange")

show("shizu", "behind_smile", "")
with("charachange")

name_only("Misha positively beams, and so does Shizune after a quick translation.")

name_only("I shake my head at their somewhat exaggerated enthusiasm, and shift my focus on the food.")



}
function en_A3d() {

name_only("Misha and Shizune sign back and forth very animatedly, throwing sideway glances at me but Misha refrains from translating.")

name_only("Maybe they are talking about secret girl stuff or something.")

name_only("…")

stop music fadeout 3.0
$ renpy.music.set_volume(1.0, .5, channel="ambient")
stop ambient fadeout 3.0

name_only("I quickly notice a conversation in sign is not enough to fill a silence.")

scene("bg", "school_scienceroom", "")
with("shorttimeskip")

play music music_daily fadein 0.5

name_only("We arrive in the classroom early, but we're not the first.")

show hanako emb_downtimid at Transform(xanchor=0.8, xpos=1.0)
with("charaenter")

name_only("That dark haired girl I noticed before is slumped over her desk at the last row.")

show("hanako", "defarms_shock", "")
with("vpunch")

show hanako defarms_shock at Transform(xanchor=0.6, xpos=1.0)
with("charamove")

name_only("She jumps a little when Misha crashes into the room with the elegance of a rhino.")

name_only("She shrinks deeper into her seat. I can feel her tension all the way from here, as if she were slowly turning into stone just from our presence.")

name_only("Misha and Shizune either don't notice or don't mind it, as they walk directly past her to their seats and begin to converse.")

show hanako defarms_shock at offscreenright
with("charamove")

hide("hanako")
with(None)

name_only("I'm left wondering about her, even when the classroom slowly fills with other students and finally, the teacher.")

name_only("Getting into the rhythm of school feels strange; it's as if my brain remembers how this is done, but my body doesn't.")

name_only("Towards the end of the class I start yawning and counting the minutes left.")

name_only("I shouldn't be this tired on my first day of school.")

name_only("Maybe it's the long time spent in the hospital that made me like this. I'm even feeling physically weak and lifeless.")

scene("bg", "school_scienceroom", "")
with("shorttimeskip")

play("sound", "sfx_normalbell", "")

name_only("Before long, the final bell rings.")

name_only("School is finally over for the day.")

name_only("Beside me, Misha and Shizune are having a short conversation. After a bit of deliberation, Misha turns to me.")

show shizu behind_blank at tworight
show misha perky_smile at twoleft
with("charaenter")

shi("…")

mi("Unfortunately we can't stay and show you around today, Hicchan. We've got to hurry already, since there is a lot of work for us to do.")

show shizu basic_normal2
with("charachange")

shi("…")

mi("You'll find your way around here, I'm sure of it.")

hi("Ah, wait! The teacher said I'd have to see the nurse. Where do I have to go?")

show("shizu", "behind_smile", "")
show("misha", "hips_grin", "")
with("charachange")

mi("Is that so? We can at least show you that much~!")

mi("Come on, the nurses have their own building, so we have to go outside.")

hide("shizu")
hide("misha")
with("charaexit")

scene bg school_hallway3
with("locationchange")

name_only("We join the flow of students making their way down the stairwell and outside, with the girls pointing out other senior classrooms in the same hallway as ours.")

scene("bg", "school_courtyard", "")
with("locationskip")

name_only("When we get outside, the girls make their way to the smaller building right next to the school.")

name_only("It's built in the same style, so it looks like it's actually a part of the main building.")

show shizu behind_smile at tworight
show misha perky_smile at twoleft
with("charaenter")

shi("…")

mi("This is the auxiliary building here. There's a lot of official and important stuff inside, like the Yamaku Foundation office and all the nurses' offices. They even have a swimming pool!")

hi("How is that official?")

show("shizu", "behind_frustrated", "")
with("charachange")

shi("…")

show("misha", "hips_grin", "")
with("charachange")

mi("Don't be silly, Hicchan! It's for physical therapy of course.")

show("misha", "sign_smile", "")
with("charachange")

mi("Anyway, all the nursing staff facilities are in there too. The head nurse's office is on the first floor.")

show("misha", "hips_smile", "")
show("shizu", "behind_smile", "")
with("charachange")

mi("You'll be fine from here, right~? We'll be going, then! See you tomorrow!")

hi("Yeah, thanks. Bye.")

stop music fadeout 5.0

hide("shizu")
hide("misha")
with("charaexit")

name_only("A whole building for stuff that has nothing to do with the actual education?")

name_only("I guess it's necessary for a place like this.")

scene("bg", "school_nursehall", "")
with("locationchange")

name_only("I walk in, hoping that this really will be only a quick visit like the teacher said.")

name_only("On a white door on the left is a green cross with the text “Head Nurse” and a nameplate.")

play sound sfx_doorknock2

name_only("A voice from the inside responds to my knock almost immediately, but I can't quite make it out.")

name_only("It sounded a bit like an invitation to open the door, so I invite myself further in.")

play("sound", "sfx_dooropen", "")

scene("bg", "school_nurseoffice", "")
with("locationchange")

name_only("The room is not large and it smells strange. A friendly-looking man turns around on his office chair to face me as I enter.")

name_only("His desk is neat and tidy, but the bin under the table is overflowing with used medical utensils and there are at least a dozen coffee-cup rings lingering on the desk.")

play music music_nurse fadein 0.5

show nurse neutral at center
with("charaenter")

nk_ "Hello there. What can I do for you today?"

name_only("He is young-looking and sort of rugged, but the dimples in his cheeks wash that impression away when he smiles.")

hi("Erm, are you the nurse?")

show("nurse", "grin")
with("charachange")

name_only("He smiles like a person who has heard this very same question hundreds of times.")

nk_ "Why yes, I am. It says so on the door, no?"

nk_ "You can call me by my name or just “the nurse” like everyone else."

name_only("Of course. I shake off my confusion, realizing I probably should grab his extended hand.{w} His handshake is rather firm and friendly.")

hi("Right… err, I'm a new student and my homeroom teacher told me to come and meet you. My name is Hisao Nakai.")

play("sound", "sfx_snap", "")

name_only("His eyes light up with revelation and he snaps his fingers.")

show("nurse", "fabulous")
with("charachange")

nk("Oh you're THAT Nakai. I was just reading your file in the morning.")

nk("Some kind of chronic arrhythmia and related congenital heart muscle deficiency, right?")

name_only("He gestures me to sit down in a vacant armchair in front of his desk.")

hi("Eh, yes.")

show("nurse", "neutral")
with("charachange")

nk("Good. Well, you've probably been briefed about the school enough, so I'll just go over this quickly.")

nk("We have all kinds of facilities available, mostly physical therapy and such.")

nk("There's always someone from my staff around, even at night, so never hesitate to call us if there is a problem.")

name_only("The famous twenty-four-hour nursing staff.")

hi("Wow, this is like a hospital.")

nk("Well, not exactly. For instance, we don't do brain surgery here.")

name_only("His joke feels so out of place that I'm left thinking why he even said it.")

hi("Yeah… just that it's really weird to have so many medical people at a school.")

nk("You'll get used to it.")

name_only("I'm not so sure of that myself but I don't let the nurse know it.")

nk("Now, let me just find your file again…")

name_only("While he searches for something from his computer and shuffles stacks of papers around, I let my gaze wander around the room.")

name_only("It's the epitome of generic, I'd like to say.")

name_only("Beige walls and ceiling, dark gray laminate flooring, and all the equipment you'd expect from a school nurse's office.")

name_only("Even the ridiculous educational posters are hanging on all four walls, reminding me to eat properly - three times a day and from all the food groups.")

show("nurse", "grin")
with("charachange")

name_only("Smiling, the nurse draws a thick file from a stack of similarly thick files and opens it.")

nk("So, you already have medication for the arrhythmia, just remember to take your pills every morning and evening or it won't be much help.")

show("nurse", "fabulous")
with("charachange")

nk("Apart from that… do you do any sports? Rash stuff like… I don't know, boxing?")

name_only("He grins to his own joke but I don't.")

hi("Eh, well. I played soccer occasionally with some classmates.")

nk("All right, I'm afraid I'm going to have to recommend you refrain from doing that. At least, for the time being.")

hi("Oh.")

name_only("My lack of reaction makes him raise an eyebrow, but really, I'm not too bothered by him forbidding me to kick a ball around.")

name_only("I guess I never did it out of burning passion for the sport. Just to have something to do.")

nk("Any kind of concussion might be very dangerous to your heart and risking another attack is not a good idea.")

nk("Was the previous one caused by a sudden concussion to the chest area? There is no mention of the cause in your papers.")

hi("Err… not exactly.")

show("nurse", "concern")
with("charachange")

name_only("I sidestep the question acceptably, and he glances at me over his papers, with a more serious expression on his face.")

nk("Still, you need to keep your body healthy so some exercise would do you good.")

nk("We have physical therapy and such available as I said, but I don't think you really need such heavy measures.")

nk("Just get some light exercise regularly.")

nk("Brisk walks or even light jogging, jumping rope, that sort of thing. Swimming, maybe? There's a pool here.")

hi("So I was told.")

show("nurse", "neutral")
with("charachange")

nk("You were? Very good.")

nk("At any rate, and I'm sure you've been told this before, you just need to take care not to overexert yourself.")

name_only("He wags his finger to emphasize the point. No need really, I've heard this a thousand times already.")

show("nurse", "concern")
with("charachange")

nk("Absolutely no unnecessary risks. Take care of yourself.")

hi("Okay.")

name_only("He goes over my papers one more time and sets them on the desk, obviously content.")

show("nurse", "neutral")
with("charachange")

nk("Good. That's it, then. Come meet me if you ever need something.")

scene("bg", "school_nursehall", "")
with("locationchange")

stop music fadeout 2.0

name_only("I'm ushered out before I even realize it. A quick visit, indeed.")




}
function en_A4() {

scene("bg", "school_courtyard", "")
with("locationchange")

play music music_pearly fadein 4.0

name_only("I end up standing in front of the main building and the auxiliary building, although to my eyes, they still look one and the same.")

name_only("It's the first real look I get at the other students, so I watch people coming out of the school, going towards the gate or the dorms.")

name_only("Everyone seems to know where they are going.")

name_only("And I still keep thinking that most of them don't look too special for being students at a special school. Then again, neither do I.")

name_only("Does that make me one of them?{w} One of us?")

name_only("…")

name_only("I should go somewhere too, to prevent me from getting lost.")

name_only("It's around dinnertime, but I feel tired instead of hungry.")

name_only("The weariness in me only grows as I trudge towards the dorms, set a little way apart from the main building complex.")

scene("bg", "school_gardens", "")
with("locationchange")

name_only("There is a garden of sorts between the school and the dorms; shrubbery, flowers and that overbearing smell of fresh cut grass that fills the atmosphere.")

name_only("It dawns on my tired mind that the smell feels novel because I haven't been outside at all for so long.")

scene bg school_dormext_start at bgleft
with("locationchange")

name_only("The dorm building is big and made of red brick. Like the others, it feels way too pompous for what it is, so I push forward, going inside.")

scene("bg", "school_dormhallground", "")
with("locationchange")

name_only("It takes more time than necessary to fish out the key I was given from my pocket.")

hi("Room one-one-nine…")

name_only("Despite the ornate exterior, the inside of the dorm is fairly new, functional, and boring.")

name_only("Just like in the main building, the halls and doors are wide to accommodate wheelchairs. The same goes for the elevators at the ends of the hallways.")

name_only("I poke my head around the corner of the common room door.")

name_only("Inside a few students are watching the television.")

name_only("One nods and gives a quick “hello” before turning back to the TV.")

name_only("Seems that only the girls around here are sociable. I suppose that's perfectly fine with me.")

name_only("I climb the stairs to the upper floor.")

scene("bg", "school_dormhallway", "")
with("locationchange")

name_only("Here, small corridors branch off from the main hallway.")

name_only("Each of these minor halls seems to have a toilet and shower, as well as four rooms.")

name_only("About halfway down the hall, I spy room 119.")

name_only("The name plates on the rooms adjacent to mine are blank. I guess there are just two of us here.")

play sound sfx_doorknock2
stop music fadeout 3.0

name_only("Light shines from below the door of room 117, so I knock lightly.")

hi("Hello, is anyone home?")

name_only("From inside, I hear a few movements, then the clicking of way more locks than I thought these doors had. After a moment the door squeaks open.")

show kenji tsun at Slide(0.4,0.5,0.5,0.5,0.5)
with("charaenter")

play music music_kenji fadein 0.5

name_only("A bespectacled boy is standing in the doorway. He is looking at me very intently through his extremely thick eyeglasses.")

ke_ "Who is it?"

name_only("Blind? No, at least not completely, why would he have eyeglasses if he was?")

show kenji tsun_close at center
with("characlose")

name_only("He leans closer to me until our noses are almost touching. His breath stinks of garlic.")

hi("Hisao Nakai… I'm moving into the next room. I thought I should introduce my…")

show("kenji", "happy")
with("charadistant")

name_only("His face suddenly brightens in realization, and he stands back upright, thrusting his hand out in a smiling greeting, almost straight to my diaphragm.")

ke_ "Oh, 'sup dude? The name's Kenji."

hi("Ah, hi.")

name_only("I take Kenji's sweaty hand and shake it, still a little rattled by the sudden change of attitude and vehement welcome.")

ke("There were some suspicious-looking people going in and out of your room earlier.")

hi("It was probably my parents.")

show("kenji", "tsun")
with("charachange")

ke("Your parents? You sure? 'Cause they could've been some other people, too. You can't judge a book by its cover.")

name_only("His out-of-place proverb is left hanging between us awkwardly as I try to think of some way to respond.")

hi("I'd say the chances are high enough.")

name_only("He shudders and makes some exaggerated hand gestures.")

show("kenji", "neutral")
with("charachange")

ke("You're a brave man, Hisao.")

show("kenji", "tsun")
with("charachange")

ke("Me, I don't think I could trust the chances.")

ke("The only one I trust is myself.")

hi("Does that mean I shouldn't get to know you, either?")

name_only("He thinks about this for a while.")

show("kenji", "neutral")
with("charachange")

ke("A wise decision.")

show("kenji", "happy")
with("charachange")

ke("Damn, you are smarter than you look.")

ke("Probably.")

ke("What do you look like? I hope not smart.")

show("kenji", "neutral_close", "")
with("characlose")

name_only("He squints his eyes and leans closer again, but I lean backwards to dodge it.")

show("kenji", "tsun")
with("charadistant")

ke("Never mind, it doesn't matter.")

hide("kenji")
with("charaexit")

stop music fadeout 3.0

name_only("With that, he turns, fumbles around for a moment in search of the door handle,{w=0.3}{nw}")

play("sound", "sfx_doorslam", "")

extend(" and shuts the door behind him.")

name_only("I slide the key into the lock of the door marked 119.")

scene("bg", "school_dormhisao_ss", "")
with("locationchange")

play music music_night fadein 1.0

name_only("Bleak beige walls, white linen, a desk made of some type of light wood. Ugly curtains.")

name_only("It's no one's room; impersonal, like my hospital room was.")

name_only("My bags are sitting at the foot of my bed, looking a lot emptier than they did this morning.")

name_only("The closet is sitting open, stocked with my clothes.")

name_only("Also, it seems that there are a number of school uniforms hanging there as well.")

name_only("A note is pinned to the sleeve of one of the shirts.")

window("hide")

$ written_note("Hi Hicchan. We've unpacked your things and made your bed.\nThey said that if these don't fit then you should go to the office tomorrow.\nIf you have any problems, you can always call us.\n\nLove, Mom and Dad")

window("show")

name_only("Well, at least I don't have to worry about unpacking.")

name_only("I kind of hoped I would have, then there would be something to do.")

name_only("It's still too early.")

name_only("I put the note down on the desktop and lie down on the bed, feeling drained.")

name_only("Lying there makes me want to read something, but I have nothing with me.")

name_only("I wonder if the hospital conditioned me for wanting to read whenever I have nothing to do.")

name_only("The restless urge just keeps growing until I have to stand up.")

name_only("Maybe it's stress or something.")

name_only("I was pretty nervous about it before coming and for the entire day today too. I still am, I think.")

name_only("Damn, I have to distract myself somehow, so I won't be this unnatural all the time.")

name_only("Tomorrow, I'll go borrow some books from the library.")

name_only("Yeah, I'll do that.")

name_only("But for now…")

show pills :
    alpha 0.0 xalign 0.5 yanchor 0.5 ypos 0.7 subpixel True
    easein 1.0 ypos 0.5 alpha 1.0
with Pause (1.0)

name_only("The bottles of medications neatly arranged on my night table catch my eye.")

name_only("I pick up one and shake it just to hear the contents rattle inside, and then read the glued-on pharmacy label.")

window("hide")

show pills :
    alpha 1.0 xalign 0.5 yanchor 0.5 ypos 0.5 subpixel True
    easeout 1.0 ypos 0.7 alpha 0.0
with Pause (1.0)

hide("pills")
with(None)

$ written_note("Hisao Nakai\n\nTwo tablets daily to stay alive", quiet=True)

window("show")

name_only("It doesn't really say that, but it could just as well.")

name_only("It's kinda twisted, having your life depend on chemicals like this. I resent it a little, but what choice do I have?")

name_only("With a sigh, I begin my new daily ritual of taking the right number of pills from each bottle, being careful to check the correct dosages.")

name_only("…")

name_only("I lie down again, feeling hollow and uncertain, and after that I keep staring at the blank, unfamiliar ceiling for a long time.")

stop music fadeout 8.0

scene("bg", "school_dormhisao_ni", "")
with(Dissolve(3.0))

name_only("It doesn't start looking any more familiar, not even after darkness falls and long shadows draw across my room like fingers.")

name_only("The sheets feel slightly more comfortable, warm and nest-like against the chill that passes for room temperature here.")

name_only("Soon the lighter shade of darkness that is the ceiling looks like every ceiling does at night, and it becomes the only thing I recognize any more.")

name_only("The night beckons me to sleep, and I feel the coldness of unfamiliarity and fear creeping up my spine once again.")

name_only("I keep drifting further away from the world I knew.")

$ suppress_window_after_timeskip = True

scene("black")
with("shuteye")


}