-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathscript_en.h
1305 lines (1216 loc) · 29.8 KB
/
script_en.h
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
//-----Visual Novel content!! °˖✧◝(⁰▿⁰)◜✧˖°
//0'v' 1 :) 2 :| 3 :( 4 :D 5 D: 6 A_A 7 / 8 \ 9 é 10 è
const Passage SCRPT[] = {
{N, "At the end of the afternoon, you're walking on the beach."},
{N, "There are few people here. It's quiet."},
{N, "Rhythm by the sound of the sea, you advance on the sand."},
{N, "You finally find the person you were looking for"},
//Show ANGE
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{H, "show"},
{A, "Ah, there you are!"},
{SWPM, "1"},
{A, "It's good to see you, how are you?"},
{C, "0"},
//> "Yes, I'm fine! And you?"},
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "I'm doing well too, very well indeed!"},
{SWPM, "1"},
{SWPEL, "6"},
{SWPER, "6"},
{A, "I was a bit afraid we wouldn't get together,"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "but in the end there was nothing to worry about!"},
{J, "47"},
//> "Sorry for the delay"
{SWPM, "4"},
{SWPEL, "1"},
{SWPER, "1"},
{A, "Don't apologize, you're here, that's the main thing!"},
{SWPM, "1"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "And I was able to enjoy the scenery while I was waiting!"},
{J, "47"},
//> "It was hard to find you."
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Haha, were my directions that vague?"},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Sorry, I don't know much about the region."},
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "But I didn't think this beach was too bad"},
{SWPM, "1"},
{A, "At least it's quiet here!"},
{SWPEL, "6"},
{SWPER, "6"},
{N, "His attention is then turned to the sea."},
{N, "She is calm, steady, and stretches as far as the eye can see"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "It's beautiful, don't you think?"},
{C, "1"},
//> "Yes, it's very nice!"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "I can see that you enjoy the view as much as I do"},
{SWPEL, "6"},
{SWPER, "6"},
{A, "If I could, I would stay here all my life"},
{SWPEL, "3"},
{SWPER, "3"},
{SWPM, "4"},
{A, "Well, it wouldn't be very comfortable in the long run," },
{J, "77"},
//> "Bof, c'est la mer quoi."},
{SWPEL, "3"},
{SWPER, "6"},
{SWPM, "4"},
{A, "Hehe, you still don't have an artist's soul."},
{SWPEL, "0"},
{SWPER, "0"},
{A, "And that's okay, you have the right to find it trivial"},
{SWPM, "1"},
{SWPEL, "6"},
{SWPER, "6"},
{A, "After all, it's a bit absurd to dwell on it here"},
{SWPM, "1"},
{SWPEL, "1"},
{SWPER, "1"},
{A, "But for a date it's still a very good place."},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Now my connection is no longer a problem."},
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "And it's much nicer than in video!"},
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Well, now that you're here I wanted to ask you..."},
{SWPM, "4"},
{A, "Remember your project? The one you told me about?"},
{SWPM, "1"},
{A, "He looked interesting, how's it going?"},
{C, "2"},
//> I can see the end of it!
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Great! There's something to be proud of!"},
{SWPM, "1"},
{SWPEL, "6"},
{SWPER, "6"},
{A, "You know, I really admire your determination"},
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "You often say I'm exaggerating, but I mean it!"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Just talking to you motivates me a lot!"},
{J, "178"},
//> I'm having trouble moving forward...
{SWPM, "3"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Oh boy, excuse me... I hope it's all right!"},
{SWPM, "1"},
{A, "Don't make yourself sick about it,"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "It's normal to have periods of doubt."},
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Maybe you just need to rest!"},
{SWPM, "1"},
{A, "Have you thought about asking for help?"},
{C, "3"},
//>Yes
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Great, I think you're on the right track!"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Remember to talk about your doubts with these people,"},
{SWPM, "1"},
{A, "Sometimes just talking helps to find a solution"},
{SWPEL, "3"},
{SWPER, "3"},
{SWPM, "1"},
{A, "At least that's what happens to me when we talk!"},
{J, "178"},
//>I don't know if it would help me
{SWPM, "4"},
{SWPEL, "9"},
{SWPER, "0"},
{A, "You know, there's no shame in asking for help."},
{SWPM, "1"},
{SWPEL, "1"},
{SWPER, "1"},
{A, "But I understand, it's not always easy"},
{SWPM, "4"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "I'll... I'll help you if you want!"},
{SWPM, "1"},
{A, "But you probably have better friends than me!"},
{SWPM, "1"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "In any case don't stay alone, promise?"},
{J, "178"},
//> I've moved on
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Oh okay, excuse me!"},
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "It's okay, you have the right to change." },
{SWPM, "1"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "If we put all our ideas into practice we wouldn't get away with it."},
{SWPM, "1"},
{SWPEL, "7"},
{SWPER, "8"},
{A,"(although I shouldn't do the complete opposite)"},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "By the way... I don't know if you remember..."},
{SWPM, "4"},
{A, "But recently you encouraged me to send in my CV"},
{SWPM, "2"},
{A, "I didn't think I'd get any results to be honest"},
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "But someone answered!"},
{C, "4"},
//>Too good!
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Haha, thank you very much! But all is not won."},
{SWPM, "2"},
{A, "They invited me for an interview, but..."},
{J, "204"},
//> What did they tell you?
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Well..."},
{SWPM, "4"},
{A, "I think I have a job interview..."},
{SWPM, "3"},
{A, "But it scares me a little"},
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "You see, I haven't been working for a long time"},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "I've even forgotten how these interviews are conducted"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Do you know what you're into?"},
{C, "5"},
//>It's just questions
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Oh okay, they just want to get to know me?"},
{SWPM, "1"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "It's kind of like a love date, hehe"},
{SWPM, "5"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "But you have to dress for a date, don't you?"},
{SWPM, "2"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Arg, I have no idea what I'm going to wear!"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "A shirt maybe? Or a suit is better?"},
{J, "281"},
//> They're not gonna eat you haha
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Haha, you're right. I'm overthinking things."},
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "But it's still an important moment,"},
{SWPM, "1"},
{SWPEL, "1"},
{SWPER, "1"},
{A, "I wouldn't want to do anything haha"},
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "For example, I have read articles on the subject,"},
{SWPEL, "9"},
{SWPER, "10"},
{SWPM, "2"},
{A, "And they advise to dress well, but I hesitate."},
{SWPEL, "9"},
{SWPER, "10"},
{SWPM, "4"},
{A, "Do I really have to wear a shirt? What do you think?"},
{J, "281"},
//>I forgot me too
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Haha, I'm not the only person in this case"},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "It makes me feel a little better, I confess."},
{SWPM, "1"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "In the end it shouldn't be that complicated."},
{SWPM, "3"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "But I'm afraid of doing something wrong"},
{SWPM, "2"},
{A, "Like, should I put on a... shirt?"},
{C, "6"},
//>Yes, it looks serious.
{SWPM, "1"},
{SWPEL, "10"},
{SWPER, "9"},
{A, "All right, all right, I have to look professional!"},
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "If I make a good impression they'll trust me"},
{SWPM, "1"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Yes, it makes sense!"},
{SWPM, "3"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "...now I'm going to have to find a shirt."},
{SWPM, "2"},
{A, "Maybe I have one in my closet..."},
{SWPM, "1"},
{A, "It dates, I only use it for weddings."},
{SWPEL, "7"},
{SWPER, "8"},
{A, "(and I'm not often invited)"},
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "But that should do it!"},
{J, "357"},
//> No, be casual'.
{SWPM, "4"},
{SWPEL, "1"},
{SWPER, "1"},
{A, "Phew, I was afraid I'd have to dress like a penguin!"},
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "So, a more relaxed outfit..."},
{SWPM, "1"},
{SWPEL, "6"},
{SWPER, "6"},
{A, "Um, I could take out my teenage shirt."},
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "But you probably didn't mean that haha"},
{SWPM, "1"},
{SWPEL, "7"},
{SWPER, "8"},
{A, "What will they think of me if I come up with that?"},
{SWPM, "1"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "I think I need to do some testing before I make up my mind"},
{J, "357"},
//>Wear what you like
{SWPM, "1"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Oh, that's nice!" },
{SWPM, "1"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Maybe you're right, I have to trust myself"},
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "But you know, I don't pay much attention to what I'm wearing"},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Even here I'm wearing my grey sweater, like every day."},
{SWPM, "2"},
{A, "I've never really thought about what I like"},
{SWPM, "1"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "I'll have to experiment with what I have!"},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Say, can I send you pictures of my essays?"},
{C, "7"},
//> Of course!
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Thank you! I knew I could count on you!"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Just an outside opinion will help me a lot to choose."},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "It's better than relying on my fashion sense."},
{J, "394"},
//>I can't help you /////////----////////
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "No, you're exaggerating!"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "I'm just asking for your honest opinion, that's all!"},
{SWPM, "1"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "You're someone I trust for that"},
{SWPM, "4"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "And if I want to embarrass myself, it's not in front of a stylist"},
{C, "8"},
//>Good, if you insist
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Thank you very much! I owe you one!"},
{SWPM, "4"},
{SWPEL, "1"},
{SWPER, "1"},
{A, "Okay, I'll stop bothering you with my worries." },
{SWPM, "1"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Is there anything in particular you want to do?"},
{C, "20"},
//>How about buying an ice cream?
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Oh yes! Great idea!"},
{SWPM, "1"},
{SWPEL, "6"},
{SWPER, "6"},
{A, "They say they sell every perfume imaginable here."},
{SWPM, "1"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "What's your favorite perfume?"},
{C, "9"},
//>Vanilla
{SWPM, "4"},
{A, "Oh, I see you're the classic type!"},
{SWPM, "1"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "That's just like me, I love vanilla."},
{SWPM, "1"},
{SWPEL, "6"},
{SWPER, "6"},
{A, "It's such a sweet taste that tickles the taste buds." },
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "I always chose this perfume as a child!"},
{SWPM, "1"},
{A, "And even grown-up for that matter!"},
{J, "643"},
//>Chocolate
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "0"},
{A, "Hehe, chocolate, it suits your style."},
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "I really like chocolate, but on ice cream it's...weird."},
{SWPM, "8"},
{A, "As if they were using a totally different flavor."},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Don't you think? Or am I making films for myself?"},
{C, "21"},
//>I agree
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Ah! It's nice to know I'm not delirious."},
{SWPM, "1"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "But in any case you have the right to love!"},
{J, "643"},
//>I think it's movies
{SWPM, "1"},
{SWPEL, "1"},
{SWPER, "1"},
{A, "It's quite possible!"},
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Maybe I just haven't been tasting the right brands"},
{SWPM, "4"},
{A, "You'll recommend it to me one of these days!"},
{J, "643"},
//>Fruit
{SWPM, "1"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Nice, and it suits the summer mood!"},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "I really need to eat more fruit,"},
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "But then in ice cream, it reminds me of my grandmother"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "She offered me some at each of my visits."},
{SWPM, "1"},
{SWPEL, "1"},
{SWPER, "1"},
{A, "Well, that was to be expected after a while."},
{SWPEL, "3"},
{SWPER, "3"},
{A, "But it's still nice memories!"},
{SWPM, "4"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Oops! I'm still talking about myself too much."},
{SWPM, "1"},
{SWPEL, "1"},
{SWPER, "1"},
{A, "Excuse me, I don't mean to do this"},
{J, "643"},
//>Peu importe
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Oh okay, you're not very ice creamy?"},
{C, "10"},
//>I love all perfumes
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Ah, knowing you, I'm not surprised indeed!"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "We'll see what there is and what you want." },
{J, "643"},
//jump here
//> Not too much
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Oh okay..."},
{SWPM, "4"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "I understand, you were just offering that to please me?"},
{SWPM, "1"},
{A, "That's nice, but you don't have to force yourself, you know"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Forget the ice cream, but thanks for offering!"},
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Besides, it's really nice on the beach, isn't it?" },
{SWPM, "1"},
{SWPEL, "6"},
{SWPER, "6"},
{A, "I prefer to stay here, it's quieter"},
{SWPM, "1"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "By the way, did you see they're having a party in town?"},
{N, "Indeed, when you arrived you thought you heard music."},
{SWPM, "2"},
{A, "From what I understand, it's a big annual festival."},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "If I can avoid mixing with the crowd, it's better."},
{N, "If you pay attention, you can better locate the sounds of the city"},
{N, "From here you hear singing and festive noises"},
{N, "There must be a lot of people out there."},
{N, "And maybe that's why the beach is deserted."},
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Do you have trouble with crowds?"},
{C, "11"},
//>Yes, I can't stand it
{SWPM, "1"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "You're kind of like me then."},
{SWPM, "2"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Sometimes I get stressed just thinking about it."},
{SWPEL, "6"},
{SWPER, "6"},
{A, "Getting out of my house is already a challenge,"},
{SWPM, "3"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "So partying, you can't go in real life"},
{SWPM, "2"},
{A, "But it's not really the same thing here"},
{SWPM, "4"},
{A, "And then you're here, we can support each other!"},
{J, "904"},
//>It doesn't really bother me.
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Don't you have any special problems? That's great!"},
{SWPM, "2"},
{A, "I mean, I wish I could be like you."},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Don't necessarily like it, but be more neutral."},
{SWPM, "2"},
{A, "Don't stress just at the thought of seeing people..."},
{SWPM, "3"},
{SWPEL, "6"},
{SWPER, "6"},
{A, "..."},
{SWPM, "3"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Excuse me."},
{SWPM, "1"},
{SWPEL, "1"},
{SWPER, "1"},
{A, "A lot of things are stressing me out anyway,"},
{SWPM, "1"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "I think you're getting to know me!"},
{SWPM, "2"},
{A, "I'm like this, I don't know if I'll ever change"},
//{A, "But this reason that I am in your company."}, //Line to delete? Double
//{A, "You accept me, even when I find it hard to do so.},
//{A, "And it makes me feel good."},
{J, "904"},
//>I love the crowd!
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Really? That's crazy!"},
{SWPM, "1"},
{A, "It's true that you're going to party a lot"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Well, more than me, that's for sure!"},
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "You have a festive spirit, that's probably a good thing." },
{SWPM, "1"},
{SWPEL, "1"},
{SWPER, "1"},
{A, "I'm kind of at odds with that"},
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "But, you know, that's what I like about our friendship"},
{SWPM, "1"},
{SWPEL, "6"},
{SWPER, "6"},
{A, "We're such different people,"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "but we understand each other."},
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "It's very rewarding, don't you think?"},
{SWPM, "1"},
{SWPEL, "6"},
{SWPER, "6"},
{A, "Then it would be hard to find people like me"},
{SWPM, "2"},
{A, "Well, I think..."},
{J, "904"},//TODO CHANGE VALUE LATER
//---
{SWPM, "4"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Uh, but I have to confess..."},
{SWPM, "1"},
{SWPEL, "7"},
{SWPER, "8"},
{A, "I don't really have any money on me"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Really, excuse me!"},
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "You see, I had to buy equipment for my house."},
{SWPM, "4"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "And as a result... it's a bit ric rac at the moment."},
{SWPM, "1"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Do you mind walking me?"},
{C, "12"},
//> I was going to offer it to you
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "W... really?"},
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Thank you very much! That's so nice of you."},
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "I promise, as soon as I can, I'll return the favor!"},
{J, "714"},
//>Penses to reimburse me
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Yes! You have my word!"},
{SWPM, "1"},
{A, "Good accounts make good friends after all."},
{SWPEL, "0"},
{SWPER, "0"},
{A, "And it's already very nice of you to come forward!"},
{SWPM, "4"},
{A, "I promise, in a couple of days I'll be able to pay you back"},
{J, "714"},
//>Frank, abuse you
{SWPM, "4"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Haha, sorry, I know it's not the first time."},
{SWPM, "1"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "But after all you're the one who offered the ice cream!"},
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Go! I promise, this is the last one."},
{C, "22"},
//> The last one?
{SWPM, "1"},
{SWPEL, "10"},
{SWPER, "9"},
{A, "The last one! Word of the Angel!"},
{SWPM, "1"},
{SWPEL, "7"},
{SWPER, "8"},
{A, "(if I stop cracking on trinkets...)"},
{J, "714"},
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Let's go!"},
{H, "hide"},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{N, "You are moving quietly towards the coastal city"},
{N, "Festive music comes to your ears."},
//{N, "You hear the whistling of fusees and confetti."},//
{N, "This is the time of the annual festival,"},
{N, "and the crowd is having a blast." },
{N, "You make sure that Angel is always behind you."},
{H, "show"},
{A, "Don't worry... I'm with you!"},
{H, "hide"},
{N, "You're moving through the city towards the ice booth"},
{N, "Around you are flying confetti and fireworks."},
{N, "Most of the crowd is dancing in the main square."},
{N, "You understand better why the beach was so empty"},
{N, "You finally get to the ice cream store"},
{N, "After inspecting the menu, you turn to Ange."},
{C, "13"},
//>Everything makes me want it!
//> Take what you want
//>It's really expensive!
//> Don't you want a pancake instead?
{N, "But when you turn around, you don't see anyone."},
{N, "Angel is no longer behind you."},
{N, "You get out of the store quickly"},
{N, "Nobody"},
{N, "Misery, Angel must have lost you along the way."},
{N, "With your mind full of anxiety, you begin your research"},
{C, "14"},
//> Ask a passer-by
{N, "You call out to a passer-by, hoping to get some info"},
{N, "\"Someone in a gray sweater? Here it's not common haha\""},
{N, "\"Now everyone wears the summer collection!\"" },
{N, "\"Class, right? Wait till you see my new dance!\""},
{N, "\"He'll outlive your gray sweater, come party!\""},
{N, "That guy was nice, but didn't get you anywhere." },
{N, "People here are too busy partying to help you."},
{C, "14"},
//> Search in the crowd
{N, "If Ange lost you, it's probably because of the crowd." },
{N, "Bravely, you slip in between the dancers looking for him"},
{N, "You can see you're embarrassed, but it's in the name of friendship"},
{N, "In the square, you climb up to the central fountain"},
{N, "Raising you up will help you more in your research"},
{N, "You overlook the crowd with your eyes, but you don't succeed"},
{N, "Yet his gray clothes are easily spotted,"},
{N, "Especially in the maree of colorful costumes."},
{N, "You scan the crowd one last time, just in case."},
{N, "But you finally get around to changing your strategy"},
{C, "14"},
//> Back to the beach
{N, "You turn back to the beach."},
{N, "Maybe Ange is somewhere on the road." },
{N, "You're careful to look all around you"},
{N, "Inspecting alleys and detours in case Ange is there."},
{N, "You go out of town, and still no trace."},
{N, "But back on the beach, you find a familiar face again"},
{H, "show"},
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "Ah, there you are!"},
{C, "15"},
//> No it is you who is here!
{SWPM, "3"},
{A, "Oh no, you were looking for me, weren't you?"},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "I'm sorry... I didn't mean to worry you."},
{SWPM, "2"},
//{A, "I felt bad in the middle of the crowd.},
{A, "It's just... in the middle of the crowd I wasn't well..."},
{J, "801"},
//> What happened?
{SWPM, "3"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Well...in the middle of the crowd, I wasn't very well."},
{J, "801"},
//>Are you all right?
{SWPM, "4"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Yes, I'm fine, don't worry about me!"},
{SWPM, "1"},
{SWPEL, "1"},
{SWPER, "1"},
{A, "Anyway, I'm better now!"},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "It's just... crowds aren't really my thing."},
{SWPM, "2"},
{SWPEL, "6"},
{SWPER, "6"},
{A, "I knew about the festival, but I didn't think so..."},
{SWPEL, "0"},
{SWPER, "0"},
{A, "small. I didn't think I'd see so many people here."},
{SWPEL, "9"},
{SWPER, "10"},
{A, "The noise distracted me, and someone pushed me around"},
{SWPM, "1"},
{A, "It was enough to make me lose sight of you." },
{SWPM, "4"},
{SWPEL, "1"},
{SWPER, "1"},
{A, "But fortunately I'm used to it!"},
{C, "16"},
//> The habit?
{SWPM, "1"},
{SWPEL, "7"},
{SWPER, "8"},
{A, "Yes, as a child I had a mania for getting lost in the supermarket"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "It happened every time something distracted me"},
{SWPM, "3"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "As soon as I looked away, my mother had disappeared."},
////>That's why you came back?
{SWPM, "1"},
{SWPEL, "3"},
{SWPER, "3"},
//{A, "That's right, my mother taught me that!" },
{A, "So she taught me what to do if I had a problem:"},
{SWPM, "4"},
{SWPEL, "1"},
{SWPER, "1"},
{A, "Go back to the cash register and wait for Mommy!"},
{SWPM, "1"},
{SWPEL, "7"},
{SWPER, "8"},
{A, "At last here it's a picture hehe! hehe"},
{C, "17"},
//> You've picked up some good habits
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Haha, if you can call it that!"},
{SWPM, "4"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "It's true that thanks to this we were able to find each other"},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Sorry again, next time I'll be careful!"},
{J, "892"},
//> In the end, we were able to find ourselves
{SWPM, "4"},
{SWPEL, "3"},
{SWPER, "3"},
{A, "Yes, that's the main thing!"},
{SWPM, "1"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "I'm sorry again for making you worry!"},
{J, "892"},
//>You don't talk much about your mother.
{SWPM, "2"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "Oh... uh..."},
{SWPM, "1"},
{A, "Do you think so? I don't see why we have to talk about it any more..."},
{SWPM, "2"},
{SWPEL, "0"},
{SWPER, "0"},
{A, "I think I'm talking a lot about my life already"},
{SWPM, "5"},
{SWPEL, "9"},
{SWPER, "10"},
{A, "It bothers you, doesn't it? I'd be more careful!"},
{SWPM, "3"},
{A, "I'm sorry, it was stupid to say that kind of cho-"},
{C, "18"},
//> It's nothing