forked from DmitrySenpai/everlasting_summer_sources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscreens.rpy
1878 lines (1441 loc) · 86.2 KB
/
screens.rpy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
init python:
if _preferences.language == "chinese":
main_font = "fonts/STZHONGS.ttf"
header_font = "fonts/STZHONGS.ttf"
link_font = "fonts/STZHONGS.ttf"
elif _preferences.language == "japanese":
main_font = "fonts/VL-PGothic-Regular.ttf"
header_font = "fonts/VL-PGothic-Regular.ttf"
link_font = "fonts/VL-PGothic-Regular.ttf"
else:
main_font = "fonts/calibri.ttf"
header_font = "fonts/corbel.ttf"
link_font = "fonts/gothic.ttf"
config.thumbnail_width = 318
config.thumbnail_height = 179
style.file_picker_ss_window.xpos = 0
style.file_picker_ss_window.ypos = 0
style.file_picker_text = Style(style.default)
style.file_picker_text.antialias = True
style.file_picker_text.font = main_font
style.file_picker_text.color = "#bdbdbd"
style.file_picker_text.selected_color = "#ffffff"
style.file_picker_text.hover_color = "#ffffff"
style.file_picker_text.size = 24
style.file_picker_text.drop_shadow=(2, 2)
style.file_picker_text.drop_shadow_color = "#000"
style.save_load_button = Style(style.button)
style.save_load_button.background = get_image("gui/save_load/thumbnail_idle.png")
style.save_load_button.hover_background = get_image("gui/save_load/thumbnail_hover.png")
style.save_load_button.selected_background = get_image("gui/save_load/thumbnail_selected.png")
style.save_load_button.selected_hover_background = get_image("gui/save_load/thumbnail_selected.png")
style.save_load_button.selected_idle_background = get_image("gui/save_load/thumbnail_selected.png")
style.blank_button = Style(style.button)
style.blank_button.background = "images/misc/none.png"
style.blank_button.hover_background = "images/misc/none.png"
style.blank_button.selected_background = "images/misc/none.png"
style.blank_button.selected_hover_background = "images/misc/none.png"
style.blank_button.selected_idle_background = "images/misc/none.png"
style.base_font = Style(style.default)
style.base_font.font = main_font
style.base_font.size = 28
style.base_font.line_spacing = 2
style.settings_header = Style(style.base_font)
style.settings_header.font = header_font
style.settings_header.size = 50
style.settings_header.color = "#4d2e19"
style.settings_header.hover_color = "#a27146"
style.settings_text = Style(style.settings_header)
style.settings_text.size = 36
style.settings_text.selected_color = "#4d2e19"
style.settings_text.hover_color = "#a27146"
style.settings_link = Style(style.base_font)
style.settings_link.font = link_font
style.settings_link.size = 60
style.settings_link.kerning = 3
style.settings_link.color = "#909ca3"
style.settings_link.hover_color = "#ffffff"
style.settings_link.selected_color = "#909ca3"
style.settings_link.selected_idle_color = "#909ca3"
style.settings_link.selected_hover_color = "#ffffff"
style.settings_link.insensitive_color = "#909ca3"
style.hyperlink_text = Style(style.settings_link)
style.hyperlink_text.underline = True
style.hyperlink_text.hover_color = "#0ff"
style.hyperlink_text.idle_color = "#08f"
style.music_link = Style(style.settings_link)
style.music_link.insensitive_color = "#4f4f4f"
style.music_link.selected_color = "#ffffff"
style.sprite_menu = Style(style.settings_text)
style.sprite_menu.size = 37
style.sprite_menu.color = "#466123"
style.sprite_menu.selected_color = "#466123"
style.sprite_menu.hover_color = "#9dcd55"
style.say_dialogue = Style(style.base_font)
style.say_label = Style(style.base_font)
style.say_label.size = 28
style.say_label.drop_shadow=(2, 2)
style.say_label.drop_shadow_color = "#000"
style.chapter = Style(style.base_font)
style.chapter.font = header_font
style.chapter.size = 120
style.chapter.color = "#fff"
style.chapter.outlines = [ (1, "#ffdd7d", 0, 0) ]
style.daynum = Style(style.chapter)
style.daynum.font = header_font
style.daynum.size = 45
style.normal_day = Style(style.base_font)
style.normal_day.color = "#ffdd7d"
style.normal_day.drop_shadow=(2, 2)
style.normal_day.drop_shadow_color = "#000"
style.narrator_day = Style(style.normal_day)
style.narrator_day.italic = False
style.thoughts_day = Style(style.normal_day)
style.thoughts_day.bold = False
style.normal_sunset = Style(style.base_font)
style.normal_sunset.color = "#ffdd7d"
style.normal_sunset.drop_shadow=(2, 2)
style.normal_sunset.drop_shadow_color = "#000"
style.narrator_sunset = Style(style.normal_sunset)
style.narrator_sunset.italic = False
style.thoughts_sunset = Style(style.normal_sunset)
style.thoughts_sunset.bold = False
style.normal_night = Style(style.base_font)
style.normal_night.color = "#ffdd7d"
style.normal_night.drop_shadow=(2, 2)
style.normal_night.drop_shadow_color = "#000"
style.narrator_night = Style(style.normal_night)
style.narrator_night.italic = False
style.thoughts_night = Style(style.normal_night)
style.thoughts_night.bold = False
style.normal_prolog = Style(style.base_font)
style.normal_prolog.color = "#ffdd7d"
style.normal_prolog.drop_shadow=(2, 2)
style.normal_prolog.drop_shadow_color = "#000"
style.narrator_prolog = Style(style.normal_prolog)
style.narrator_prolog.italic = False
style.thoughts_prolog = Style(style.normal_prolog)
style.thoughts_prolog.bold = False
style.cards_button = Style(style.button)
style.cards_button.font = header_font
style.cards_button.background = RoundRect("#000", False)
style.cards_button.hover_background = RoundRect("#555", False)
style.cards_button.insensitive_background = RoundRect("#404040", False)
style.cards_button_text = Style(style.button_text)
style.cards_button_text.color = "#FFF"
style.cards_button_text.selected_color = "#777"
style.cards_button_text.insensitive_color = "#c8c8c8"
style.log_button = Style(style.button)
style.log_button.child = None
style.log_button.focus_mask = None
style.log_button.background = None
style.log_button_text = Style(style.normal_day)
style.log_button_text.font = main_font
style.log_button_text.selected_color = "#115bc0"
style.log_button_text.hover_color = "#115bc0"
style.log_button_text.selected_color = "#b6ff00"
style.log_button_text.hover_color = "#b6ff00"
init python:
def translate():
if _preferences.language == None:
layout.MAIN_MENU = 'Вы действительно хотите выйти в главное меню?\nНесохраненные данные будут потеряны.'
layout.ARE_YOU_SURE = "Вы уверены?"
layout.DELETE_SAVE = "Вы уверены, что хотите удалить это сохранение?"
layout.OVERWRITE_SAVE = "Вы уверены, что хотите переписать это сохранение?"
layout.LOADING = "Загрузка приведёт к потере несохранённых данных.\nВы уверены, что хотите сделать это?"
layout.QUIT = "Вы уверены, что хотите выйти?"
layout.SLOW_SKIP = "Вы уверены, что хотите начать пропуск?"
layout.FAST_SKIP_UNSEEN = "Вы уверены, что хотите пропустить всё до следующего выбора?"
layout.FAST_SKIP_SEEN = "Вы уверены, что хотите пропустить всё до следующего нового диалога или выбора?"
elif _preferences.language == "spanish":
layout.ARE_YOU_SURE = "¿Estás seguro?"
layout.DELETE_SAVE = "¿Estás seguro de que quieres eliminar esta partida?"
layout.OVERWRITE_SAVE = "¿Estás seguro de que quieres sobrescribir tu partida?"
layout.LOADING = "Cargar una partida te hará perder el progreso no guardado.\n¿Estás seguro de que quieres hacerlo?"
layout.QUIT = "¿Estás seguro de que quieres salir?"
layout.MAIN_MENU = "¿Estás seguro de que quieres volver al menú principal?\nSe perderá el progreso no guardado."
layout.SLOW_SKIP = "¿Estás seguro de que quieres avanzar?"
layout.FAST_SKIP_UNSEEN = "¿Estás seguro de que quieres avanzar hasta la siguiente elección?"
layout.FAST_SKIP_SEEN = "¿Estás seguro de que quieres avanzar hasta diálogo no visto o hasta la próxima elección?"
elif _preferences.language == "italian":
layout.ARE_YOU_SURE = "Sei sicuro?"
layout.DELETE_SAVE = "Sei sicuro di voler eliminare questo salvataggio?"
layout.OVERWRITE_SAVE = "Sei sicuro di voler sovrascrivere questo salvataggio?"
layout.LOADING = "Caricando questa partita perderai i progressi non salvati.\nSei sicuro di volerlo fare?"
layout.QUIT = "Sei sicuro di voler uscire dal gioco?"
layout.MAIN_MENU = "Sei sicuro di voler tornare al menu principale?\nI progressi non salvati andranno persi."
layout.SLOW_SKIP = "Sei sicuro di voler iniziare a saltare le frasi?"
layout.FAST_SKIP_UNSEEN = "Sei sicuro di voler saltare le frasi fino alla prossima scelta?"
layout.FAST_SKIP_SEEN = "Sei sicuro di voler saltare il testo fino alla prossima frase non letta o alla prossima scelta?"
elif _preferences.language == "english":
layout.ARE_YOU_SURE = "Are you sure?"
layout.DELETE_SAVE = "Are you sure you want to delete this save?"
layout.OVERWRITE_SAVE = "Are you sure you want to overwrite your save?"
layout.LOADING = "Loading will lose unsaved progress.\nAre you sure you want to do this?"
layout.QUIT = "Are you sure you want to quit?"
layout.MAIN_MENU = "Are you sure you want to return to the main menu?\nThis will lose unsaved progress."
layout.SLOW_SKIP = "Are you sure you want to begin skipping?"
layout.FAST_SKIP_UNSEEN = "Are you sure you want to skip to the next choice?"
layout.FAST_SKIP_SEEN = "Are you sure you want to skip to unseen dialogue or the next choice?"
elif _preferences.language == "chinese":
layout.ARE_YOU_SURE = "你确定吗?"
layout.DELETE_SAVE = "你确定删除存档吗?"
layout.OVERWRITE_SAVE = "你确定覆盖存档吗?"
layout.LOADING = "读档后将失去当前进度。\n你确定吗?"
layout.QUIT = "你确定要退出吗?"
layout.MAIN_MENU = "你确定返回主菜单吗?\n这样会丢失当前进度。"
layout.SLOW_SKIP = "你确定开始跳过吗?"
layout.FAST_SKIP_UNSEEN = "你确定跃至下一选项吗?"
layout.FAST_SKIP_SEEN = "你确定要跃至未读信息或下一选项吗?"
elif _preferences.language == "japanese":
layout.MAIN_MENU = 'あなたは本当にメインメニューに行きたいですか?\n未保存のデータは失われます。'
layout.ARE_YOU_SURE = "本当ですか?"
layout.DELETE_SAVE = "この保存を削除してもよろしいですか?"
layout.OVERWRITE_SAVE = "この保存を上書きしてもよろしいですか?"
layout.LOADING = "ロードすると、保存されていないデータが失われます。 \nこれをやりたいですか?"
layout.QUIT = "終了してもよろしいですか?"
layout.SLOW_SKIP = "パスを開始してもよろしいですか?"
layout.FAST_SKIP_UNSEEN = "あなたは次の選択まですべてスキップしてもよろしいですか?"
layout.FAST_SKIP_SEEN = "次回の新しい対話や選択まですべてをスキップしてもよろしいですか?"
screen help tag menu:
modal True
window background get_image("gui/settings/history_bg.jpg"):
hbox xalign 0.5 yalign 0.08:
add get_image("gui/settings/star.png") yalign 0.65
text " "+translation["INFO"][_preferences.language]+" " style "settings_link" yalign 0.5 color "#ffffff"
add get_image("gui/settings/star.png") yalign 0.65
textbutton translation["Back"][_preferences.language] style "log_button" text_style "settings_link" xalign 0.015 yalign 0.92 action Return()
grid 1 3 xpos 0.25 ypos 0.2 xmaximum 1150:
text translation["info_text"][_preferences.language] style "settings_link" xalign 0.5
text translation["android_text"][_preferences.language] style "settings_link" xalign 0.5
text translation["ios_text"][_preferences.language] style "settings_link" xalign 0.5
init python:
_main_menu_screen = "main_menu"
renpy.music.register_channel("test_one", "sfx", False)
renpy.music.register_channel("test_two", "sfx", False)
screen main_menu tag menu:
modal True
imagemap:
if _preferences.language == None:
auto "images/gui/title_menu/mainmenu_%s.jpg"
elif _preferences.language == "spanish":
auto "images/gui/title_menu/mainmenu_es_%s.jpg"
elif _preferences.language == "italian":
auto "images/gui/title_menu/mainmenu_it_%s.jpg"
elif _preferences.language == "english":
auto "images/gui/title_menu/mainmenu_en_%s.jpg"
elif _preferences.language == "chinese":
auto "images/gui/title_menu/mainmenu_ch_%s.jpg"
elif _preferences.language == "japanese":
auto "images/gui/title_menu/mainmenu_en_%s.jpg"
hotspot (439,265,318,621) clicked Start()
hotspot (787,261,270,537) clicked ShowMenu('load')
hotspot (1067,748,252,312) clicked ShowMenu('preferences')
hotspot (1083,258,229,538) clicked (Function(collect_all), ShowMenu('gallery'))
hotspot (1459,532,149,295) clicked ShowMenu('quit') hovered Play("test_one", "sound/sfx/menu_gate.ogg")
hotspot (494, 125, 768, 86) clicked ShowMenu('help')
if config.developer:
hotspot (1578,953,342,127) clicked ShowMenu('show_me_game')
if True in persistent.endings.values():
imagebutton auto "images/gui/title_menu/owl_%s.png" xpos 135 ypos 606 action ShowMenu('history') hovered Play("test_two", "sound/test.ogg")
init python:
_game_menu_screen = "game_menu_selector"
screen game_menu_selector tag menu:
$ timeofday = persistent.timeofday
modal True
button style "blank_button" xpos 0 ypos 0 xfill True yfill True action Return()
add get_image("gui/ingame_menu/"+timeofday+"/ingame_menu.png") xalign 0.5 yalign 0.5
imagemap:
if _preferences.language == None:
auto get_image("gui/ingame_menu/"+timeofday+"/ingame_menu_%s.png") xalign 0.5 yalign 0.5
elif _preferences.language == "spanish":
auto get_image("gui/ingame_menu/"+timeofday+"/ingame_menu_es_%s.png") xalign 0.5 yalign 0.5
elif _preferences.language == "italian":
auto get_image("gui/ingame_menu/"+timeofday+"/ingame_menu_it_%s.png") xalign 0.5 yalign 0.5
elif _preferences.language == "english":
auto get_image("gui/ingame_menu/"+timeofday+"/ingame_menu_en_%s.png") xalign 0.5 yalign 0.5
elif _preferences.language == "chinese":
auto get_image("gui/ingame_menu/"+timeofday+"/ingame_menu_ch_%s.png") xalign 0.5 yalign 0.5
elif _preferences.language == "japanese":
auto get_image("gui/ingame_menu/"+timeofday+"/ingame_menu_en_%s.png") xalign 0.5 yalign 0.5
hotspot (0, 83, 660, 65) focus_mask None clicked MainMenu()
hotspot (0, 148, 660, 65) focus_mask None clicked ShowMenu('save')
hotspot (0, 213, 660, 65) focus_mask None clicked ShowMenu('load')
hotspot (0, 278, 660, 65) focus_mask None clicked (ShowMenu('preferences'), Hide('game_menu_selector'))
hotspot (0, 343, 660, 65) focus_mask None clicked ShowMenu('quit')
screen save tag menu:
modal True
window background get_image("gui/save_load/save_bg.jpg"):
textbutton translation["settings"][_preferences.language] style "log_button" text_style "settings_link" xalign 0.02 yalign 0.08 action ShowMenu('preferences')
textbutton translation["LOAD"][_preferences.language] style "log_button" text_style "settings_link" xalign 0.98 yalign 0.08 action ShowMenu('load')
hbox xalign 0.5 yalign 0.08:
add get_image("gui/settings/star.png") yalign 0.65
text " "+translation["SAVE"][_preferences.language]+" " style "settings_link" yalign 0.5 color "#ffffff"
add get_image("gui/settings/star.png") yalign 0.65
textbutton translation["Back"][_preferences.language] style "log_button" text_style "settings_link" xalign 0.015 yalign 0.92 action Return()
textbutton translation["Save_game"][_preferences.language] style "log_button" text_style "settings_link" yalign 0.92 xalign 0.5 action (FunctionCallback(on_save_callback, selected_slot), FileSave(selected_slot))
textbutton "{size=-12}{b}x{/b} {/size}"+translation["Delete"][_preferences.language] style "log_button" text_style "settings_link" yalign 0.92 xalign 0.97 action FileDelete(selected_slot)
vbox xalign 0.023 yalign 0.5:
grid 1 10:
for i in range(0, 10):
if i == 0:
textbutton translation["Auto"][_preferences.language] text_size 50 style "log_button" text_style "settings_link" action (FilePage("auto"), SetVariable("selected_slot", False))
else:
textbutton str(i) text_size 50 right_padding 50 style "log_button" text_style "settings_link" action (FilePage(i), SetVariable("selected_slot", False))
grid 4 3 xpos 0.13 ypos 0.2 xmaximum 0.81 ymaximum 0.65:
transpose False
xfill True
yfill True
for i in range(1, 13):
fixed:
add FileScreenshot(i) xpos 10 ypos 10
button:
action SetVariable("selected_slot", i)
xfill False
yfill False
style "save_load_button"
has fixed
text ( "%s." % i
+ FileTime(i, format=' %d.%m.%y, %H:%M', empty=" "+translation["Empty_slot"][_preferences.language])
+ "\n" +FileSaveName(i)) style "file_picker_text" xpos 15 ypos 15
init python:
_load_prompt = "load"
screen load tag menu:
modal True
window background get_image("gui/save_load/load_bg.jpg"):
textbutton translation["settings"][_preferences.language] style "log_button" text_style "settings_link" xalign 0.02 yalign 0.08 action ShowMenu('preferences')
textbutton translation["SAVE"][_preferences.language] style "log_button" text_style "settings_link" xalign 0.98 yalign 0.08 action ShowMenu('save')
hbox xalign 0.5 yalign 0.08:
add get_image("gui/settings/star.png") yalign 0.65
text " "+translation["LOAD"][_preferences.language]+" " style "settings_link" yalign 0.5 color "#ffffff"
add get_image("gui/settings/star.png") yalign 0.65
textbutton translation["Back"][_preferences.language] style "log_button" text_style "settings_link" xalign 0.015 yalign 0.92 action Return()
textbutton translation["Load_game"][_preferences.language] style "log_button" text_style "settings_link" yalign 0.92 xalign 0.5 action (FunctionCallback(on_load_callback,selected_slot), FileLoad(selected_slot))
textbutton "{size=-12}{b}x{/b} {/size}"+translation["Delete"][_preferences.language] style "log_button" text_style "settings_link" yalign 0.92 xalign 0.97 action FileDelete(selected_slot)
vbox xalign 0.023 yalign 0.5:
grid 1 10:
for i in range(0, 10):
if i == 0:
textbutton translation["Auto"][_preferences.language] text_size 50 style "log_button" text_style "settings_link" action (FilePage("auto"), SetVariable("selected_slot", False))
else:
textbutton str(i) text_size 50 right_padding 50 style "log_button" text_style "settings_link" action (FilePage(i), SetVariable("selected_slot", False))
grid 4 3 xpos 0.13 ypos 0.2 xmaximum 0.81 ymaximum 0.65:
transpose False
xfill True
yfill True
for i in range(1, 13):
fixed:
add FileScreenshot(i) xpos 10 ypos 10
button:
action SetVariable("selected_slot", i)
xfill False
yfill False
style "save_load_button"
has fixed
text ( "%s." % i
+ FileTime(i, format=' %d.%m.%y, %H:%M', empty=" "+translation["Empty_slot"][_preferences.language])
+ "\n" +FileSaveName(i)) style "file_picker_text" xpos 15 ypos 15
screen hentai_ach:
if persistent.show_achievements:
if persistent.hentai and persistent.show_hentai_ach:
add "achievement3" at achievement_trans
$ persistent.show_hentai_ach = False
screen collector_ach:
python:
if _preferences.language == None:
ach = "images/misc/ach/collector.png"
elif _preferences.language == "spanish":
ach = "images/misc/ach/collector_es.png"
elif _preferences.language == "italian":
ach = "images/misc/ach/collector_it.png"
else:
ach = "images/misc/ach/collector_en.png"
if persistent.show_achievements:
add ach at achievement_trans
screen preferences tag menu:
$ translate()
modal True
$ bar_null = Frame(get_image("gui/settings/bar_null.png"),36,36)
$ bar_full = Frame(get_image("gui/settings/bar_full.png"),36,36)
window background get_image("gui/settings/preferences_bg.jpg"):
textbutton translation["SAVE"][_preferences.language] style "log_button" text_style "settings_link" xalign 0.02 yalign 0.08 action ShowMenu('save')
textbutton translation["LOAD"][_preferences.language] style "log_button" text_style "settings_link" xalign 0.98 yalign 0.08 action ShowMenu('load')
hbox xalign 0.5 yalign 0.08:
add get_image("gui/settings/star.png") yalign 0.65
text " "+translation["settings"][_preferences.language]+" " style "settings_link" yalign 0.5 color "#ffffff"
add get_image("gui/settings/star.png") yalign 0.65
textbutton translation["Back"][_preferences.language] style "log_button" text_style "settings_link" xalign 0.015 yalign 0.92 action Return()
side "c b r":
area (0.25, 0.23, 0.51, 0.71)
viewport id "preferences":
mousewheel True
scrollbars None
has grid 1 21 xfill True spacing 15
text translation["Window_mode"][_preferences.language] style "settings_header" xalign 0.5
grid 2 1 xfill True:
hbox xalign 0.5:
if _preferences.fullscreen:
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null width 22
textbutton translation["Fullscreen"][_preferences.language] style "log_button" text_style "settings_text" action Preference("display", "fullscreen")
hbox xalign 0.5:
if not _preferences.fullscreen:
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null width 22
textbutton translation["Window"][_preferences.language] style "log_button" text_style "settings_text" action Preference("display", "window")
text translation["Skip"][_preferences.language] style "settings_header" xalign 0.5
grid 2 1 xfill True:
hbox xalign 0.5:
if _preferences.skip_unseen:
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null width 22
textbutton translation["Skip_all"][_preferences.language] style "log_button" text_style "settings_text" action Preference("skip", "all")
hbox xalign 0.5:
if not _preferences.skip_unseen:
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null width 22
textbutton translation["Skip_seen"][_preferences.language] style "log_button" text_style "settings_text" action Preference("skip", "seen")
text translation["Volume"][_preferences.language] style "settings_header" xalign 0.5
grid 2 1 xfill True:
textbutton translation["Music_lower"][_preferences.language] style "log_button" text_style "settings_text" action Play("sound", "sound/test.ogg") xpos 0.1
bar value Preference("music volume") left_bar bar_full right_bar bar_null thumb "images/gui/settings/htumb.png" hover_thumb "images/gui/settings/htumb.png" xmaximum 1.35 ymaximum 36 xpos -0.55
grid 2 1 xfill True:
textbutton translation["Sound"][_preferences.language] style "log_button" text_style "settings_text" action Play("sound", "sound/test.ogg") xpos 0.1
bar value Preference("sound volume") left_bar bar_full right_bar bar_null thumb "images/gui/settings/htumb.png" hover_thumb "images/gui/settings/htumb.png" xmaximum 1.35 ymaximum 36 xpos -0.55
grid 2 1 xfill True:
textbutton translation["Ambience"][_preferences.language] style "log_button" text_style "settings_text" action Play("sound", "sound/test.ogg") xpos 0.1
bar value Preference("voice volume") left_bar bar_full right_bar bar_null thumb "images/gui/settings/htumb.png" hover_thumb "images/gui/settings/htumb.png" xmaximum 1.35 ymaximum 36 xpos -0.55
text translation["Text_speed"][_preferences.language] style "settings_header" xalign 0.5
bar value Preference("text speed") left_bar bar_full right_bar bar_null thumb "images/gui/settings/htumb.png" hover_thumb "images/gui/settings/htumb.png" xalign 0.5 xmaximum 0.8 ymaximum 36
text translation["Autoforward"][_preferences.language] style "settings_header" xalign 0.5
grid 2 1 xfill True:
hbox xalign 0.5:
if _preferences.afm_time != 0:
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null width 22
textbutton translation["Adult_content_on"][_preferences.language] style "log_button" text_style "settings_text" action Preference("auto-forward after click", "enable")
hbox xalign 0.5:
if _preferences.afm_time == 0:
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null width 22
textbutton translation["Adult_content_off"][_preferences.language] style "log_button" text_style "settings_text" action (Preference("auto-forward time", 0), Preference("auto-forward after click", "disable"))
text translation["Autoforward_time"][_preferences.language] style "settings_header" xalign 0.5
bar value Preference("auto-forward time") left_bar bar_full right_bar bar_null thumb "images/gui/settings/htumb.png" hover_thumb "images/gui/settings/htumb.png" xalign 0.5 xmaximum 0.8 ymaximum 36
text translation["Font"][_preferences.language] style "settings_header" xalign 0.5
grid 2 1 xfill True:
hbox xalign 0.5:
if persistent.font_size == "small":
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null width 22
textbutton translation["Normal_font"][_preferences.language] style "log_button" text_style "settings_text" action SetField(persistent, "font_size", "small")
hbox xalign 0.5:
if not persistent.font_size == "small":
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null width 22
textbutton translation["Big_font"][_preferences.language] style "log_button" text_style "settings_text" action SetField(persistent, "font_size", "large")
textbutton translation["Language"][_preferences.language] style "log_button" text_style "settings_text" text_size 50 xalign 0.5 action ShowMenu("language_menu")
text translation["show_achievments"][_preferences.language] style "settings_header" xalign 0.5
grid 2 1 xfill True:
hbox xalign 0.5:
if persistent.show_achievements:
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null width 22
textbutton translation["Yes"][_preferences.language] style "log_button" text_style "settings_text" action SetField(persistent, "show_achievements", True)
hbox xalign 0.5:
if not persistent.show_achievements:
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null width 22
textbutton translation["No"][_preferences.language] style "log_button" text_style "settings_text" action SetField(persistent, "show_achievements", False)
textbutton translation["filters"][_preferences.language] style "log_button" text_style "settings_header" xalign 0.5 action ShowMenu('filters')
null
bar value XScrollValue("preferences") left_bar "images/misc/none.png" right_bar "images/misc/none.png" thumb "images/misc/none.png" hover_thumb "images/misc/none.png"
vbar value YScrollValue("preferences") bottom_bar "images/misc/none.png" top_bar "images/misc/none.png" thumb "images/gui/settings/vthumb.png" thumb_offset -12
screen language_menu:
modal True
button style "blank_button" xpos 0 ypos 0 xfill True yfill True action Hide('language_menu')
frame background Frame(get_image("gui/choice/day/choice_box.png"),50,50) xfill True yalign 0.5 left_padding 75 right_padding 75 bottom_padding 50 top_padding 50:
has vbox xalign 0.5
grid 1 6 xfill True:
hbox xalign 0.5:
if _preferences.language == None:
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null width 22
textbutton translation["Russian"][_preferences.language] style "log_button" text_style "sprite_menu" action (SetField(config, "window_title", "Бесконечное Лето"), SetField(persistent, "show_hentai_ach", False), Language(None), Function(reload_names), Function(stop_music), Function(renpy.utter_restart))
hbox xalign 0.5:
if _preferences.language == "english":
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null width 22
textbutton translation["English"][_preferences.language] style "log_button" text_style "sprite_menu" action (SetField(config, "window_title", "Everlasting Summer"), SetField(persistent, "show_hentai_ach", False), Language("english"), Function(reload_names), Function(stop_music), Function(renpy.utter_restart))
hbox xalign 0.5:
if _preferences.language == "spanish":
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null width 22
textbutton translation["Spanish"][_preferences.language] style "log_button" text_style "sprite_menu" action (SetField(config, "window_title", "Eterno Verano"), SetField(persistent, "show_hentai_ach", False), Language("spanish"), Function(reload_names), Function(stop_music), Function(renpy.utter_restart))
hbox xalign 0.5:
if _preferences.language == "italian":
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null width 22
textbutton translation["Italian"][_preferences.language] style "log_button" text_style "sprite_menu" action (SetField(config, "window_title", "Eterna Estate"), SetField(persistent, "show_hentai_ach", False), Language("italian"), Function(reload_names), Function(stop_music), Function(renpy.utter_restart))
hbox xalign 0.5:
if _preferences.language == "chinese":
add get_image("gui/settings/leaf.png") ypos 0.24
else:
null width 22
textbutton translation["Chinese"][_preferences.language] style "log_button" text_style "sprite_menu" action (SetField(config, "window_title", "Everlasting Summer"), SetField(persistent, "show_hentai_ach", False), Language("chinese"), Function(reload_names), Function(stop_music), Function(renpy.utter_restart))
hbox xalign 0.5:
if _preferences.language == "japanese":
add get_image("gui/settings/leaf.png") ypos 0.24
else:
null width 22
textbutton translation["Japanese"][_preferences.language] style "log_button" text_style "sprite_menu" action (SetField(config, "window_title", "Everlasting Summer"), SetField(persistent, "show_hentai_ach", False), Language("japanese"), Function(reload_names), Function(stop_music), Function(renpy.utter_restart))
init 9000 python:
if not persistent.filters:
persistent.filters = []
for i in sorted(filters.keys()):
if not i in [item["id"] for item in persistent.filters]:
persistent.filters += [{"id":i,"is_active":False}]
for item in persistent.filters:
if item["id"] in filters and item["id"] in renpy.store.__dict__:
if item["is_active"]:
renpy.store.__dict__[item["id"]]()
else:
persistent.filters.remove(item)
def apply_filter(n):
persistent.filters[n]["is_active"] = not persistent.filters[n]["is_active"]
screen filters tag menu:
modal True
$ bar_null = Frame(get_image("gui/settings/bar_null.png"),12,12)
$ bar_full = Frame(get_image("gui/settings/bar_full.png"),12,12)
window background get_image("gui/settings/preferences_bg.jpg"):
hbox xalign 0.5 yalign 0.08:
add get_image("gui/settings/star.png") yalign 0.65
text " "+translation["filters"][_preferences.language]+" " style "settings_link" yalign 0.5 color "#ffffff"
add get_image("gui/settings/star.png") yalign 0.65
textbutton translation["Back"][_preferences.language] style "log_button" text_style "settings_link" xalign 0.015 yalign 0.92 action ShowMenu('preferences')
if filters:
side "c b r":
area (0.27, 0.24, 0.47, 0.70)
viewport id "filters":
draggable True
mousewheel True
scrollbars None
yinitial 0.0
has grid 2 len(filters)
for i,(item) in enumerate(persistent.filters):
textbutton filters[item["id"]] style "log_button" text_style "settings_text" action (Function(apply_filter, i), ShowMenu('filters'))
if item["is_active"]:
add get_image("gui/settings/leaf.png") ypos 0.12
else:
null
bar value XScrollValue("filters") left_bar "images/misc/none.png" right_bar "images/misc/none.png" thumb "images/misc/none.png" hover_thumb "images/misc/none.png"
vbar value YScrollValue("filters") bottom_bar "images/misc/none.png" top_bar "images/misc/none.png" thumb "images/gui/settings/vthumb.png" thumb_offset -12
textbutton translation["apply"][_preferences.language] style "log_button" text_style "settings_link" yalign 0.92 xalign 0.93 action (Function(stop_music), Function(renpy.utter_restart))
init python:
achievments = {
"ACH_MAIN_GOOD": persistent.endings["main_good"],
"ACH_MAIN_BAD" : persistent.endings["main_bad"],
"ACH_SL_GOOD" : persistent.endings["sl_good"],
"ACH_SL_BAD" : persistent.endings["sl_bad"],
"ACH_DV_GOOD" : persistent.endings["dv_good"],
"ACH_DV_BAD" : persistent.endings["dv_bad"],
"ACH_UN_GOOD" : persistent.endings["un_good"],
"ACH_UN_BAD" : persistent.endings["un_bad"],
"ACH_US_GOOD" : persistent.endings["us_good"],
"ACH_US_BAD" : persistent.endings["us_bad"],
"ACH_MI" : persistent.endings["mi"],
"ACH_UV" : persistent.endings["uv_unknown_fucken_shit"],
"ACH_HAREM" : persistent.endings["uv_city"],
"ACH_COLLECTOR": not persistent.collector
}
def sync_ach():
achievement.sync()
screen history tag menu:
modal True
python:
screen_endings=[
(translation["me_good"][_preferences.language],persistent.endings["main_good"], "main_good", "epilogue_main"),
(translation["me_bad"][_preferences.language],persistent.endings["main_bad"], "main_bad", "main_bad_ending"),
(translation["sl_good"][_preferences.language],persistent.endings["sl_good"], "sl_good", "epilogue_sl"),
(translation["sl_bad"][_preferences.language],persistent.endings["sl_bad"], "sl_bad", "epilogue_sl"),
(translation["dv_good"][_preferences.language],persistent.endings["dv_good"], "dv_good", "epilogue_dv"),
(translation["dv_bad"][_preferences.language],persistent.endings["dv_bad"],"dv_bad", "epilogue_dv"),
(translation["un_good"][_preferences.language],persistent.endings["un_good"], "un_good", "epilogue_un_good"),
(translation["un_bad"][_preferences.language],persistent.endings["un_bad"], "un_bad", "epilogue_un_bad"),
(translation["us_good"][_preferences.language],persistent.endings["us_good"],"us_good", "epilogue_us"),
(translation["us_bad"][_preferences.language],persistent.endings["us_bad"], "us_bad", "epilogue_us"),
(translation["miku"][_preferences.language],persistent.endings["mi"], "mi", "epilogue_mi"),
(translation["yulya"][_preferences.language],persistent.endings["uv_unknown_fucken_shit"], "uv_unknown_fucken_shit", "epilogue_uv_ulya"),
(translation["all_together"][_preferences.language],persistent.endings["uv_city"], "uv_city", "epilogue_uv_city")
]
$ void = "??????????"
window background get_image("gui/settings/history_bg.jpg"):
hbox xalign 0.5 yalign 0.08:
add get_image("gui/settings/star.png") yalign 0.65
text " "+translation["ENDINGS"][_preferences.language]+" " style "settings_link" yalign 0.5 color "#ffffff"
add get_image("gui/settings/star.png") yalign 0.65
textbutton translation["Back"][_preferences.language] style "log_button" text_style "settings_link" xalign 0.015 yalign 0.92 action Return()
side "c b r":
area (0.23, 0.15, 0.61, 0.75)
viewport id "history":
draggable True
mousewheel True
scrollbars None
has grid 2 13
for name, val, ach, lbl in screen_endings:
if val:
textbutton name text_size 40 style "log_button" text_style "settings_link" ypos 15 action (SetField(persistent, "jump_to", lbl), SetField(persistent, "replay", ach), Start())
else:
text void size 40 style "settings_link" xalign 0.0 ypos 15
if val:
add ach_table[ach][_preferences.language]
else:
add "images/misc/ach/void.png"
$ vbar_null = Frame(get_image("gui/settings/vbar_null.png"),0,0)
bar value XScrollValue("history") left_bar "images/misc/none.png" right_bar "images/misc/none.png" thumb "images/misc/none.png" hover_thumb "images/misc/none.png"
vbar value YScrollValue("history") bottom_bar vbar_null top_bar vbar_null thumb "images/gui/settings/vthumb.png" thumb_offset -12
textbutton translation["Sync"][_preferences.language] style "log_button" text_style "settings_link" yalign 0.97 xalign 0.5 action Function(sync_ach)
screen choice:
modal True
python:
choice_colors_hover={
'day': "#9dcd55",
'night': "#3ccfa2",
'sunset': "#dcd168",
'prologue': "#98d8da"
}
choice_colors={
'day': "#466123",
'night': "#145644",
'sunset': "#69652f",
'prologue': "#496463"
}
choice_colors_selected={
'day': "#2a3b15",
'night': "#0b3027",
'sunset': "#42401e",
'prologue': "#2d3d3d",
}
window background Frame(get_image("gui/choice/"+persistent.timeofday+"/choice_box.png"),50,50) xfill True yalign 0.5 left_padding 75 right_padding 75 bottom_padding 50 top_padding 50:
has vbox xalign 0.5
for caption, action, chosen in items:
if action and caption:
button background None:
xalign 0.5
action action
if persistent.licensed:
if caption in persistent.choices and caption != "Налево" and caption != "Направо" and caption != "Go left" and caption != "Go right" and caption != "Ir a la izquierda" and caption != "Ir a la derecha":
text caption font header_font size 37 hover_size 37 color choice_colors_selected[persistent.timeofday] hover_color choice_colors_hover[persistent.timeofday] xcenter 0.5 text_align 0.5
else:
text caption font header_font size 37 hover_size 37 color choice_colors[persistent.timeofday] hover_color choice_colors_hover[persistent.timeofday] xcenter 0.5 text_align 0.5
else:
text caption font header_font size 37 hover_size 37 color choice_colors[persistent.timeofday] hover_color choice_colors_hover[persistent.timeofday] xalign 0.5
else:
if persistent.licensed:
text caption font header_font size 60 color choice_colors[persistent.timeofday] text_align 0.5 xcenter 0.5
else:
text caption font header_font size 40 color choice_colors[persistent.timeofday] xalign 0.5 text_align 0.5 xcenter 0.5
screen yesno_prompt:
modal True
add get_image("gui/o_rly/base.png")
text _(message) text_align 0.5 yalign 0.46 xalign 0.5 color "#64483c" font header_font size 30
textbutton translation["Yes"][_preferences.language] text_size 60 style "log_button" text_style "settings_link" yalign 0.65 xalign 0.3 action yes_action
textbutton translation["No"][_preferences.language] text_size 60 style "log_button" text_style "settings_link" yalign 0.65 xalign 0.7 action no_action
screen say:
window background None id "window":
$ timeofday = persistent.timeofday
if persistent.font_size == "large":
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/backward_%s.png") xpos 38 ypos 924 action ShowMenu("text_history")
add get_image("gui/dialogue_box/"+timeofday+"/dialogue_box_large.png") xpos 174 ypos 866
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/hide_%s.png") xpos 1508 ypos 883 action HideInterface()
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/save_%s.png") xpos 1567 ypos 883 action ShowMenu('save')
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/menu_%s.png") xpos 1625 ypos 883 action ShowMenu('game_menu_selector')
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/load_%s.png") xpos 1682 ypos 883 action ShowMenu('load')
if not config.skipping:
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/forward_%s.png") xpos 1768 ypos 924 action Skip()
else:
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/fast_forward_%s.png") xpos 1768 ypos 924 action Skip()
text what id "what" xpos 194 ypos 914 xmaximum 1541 size 35 line_spacing 1
if who:
text who id "who" xpos 194 ypos 877 size 35 line_spacing 1
elif persistent.font_size == "small":
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/backward_%s.png") xpos 38 ypos 949 action ShowMenu("text_history")
add get_image("gui/dialogue_box/"+timeofday+"/dialogue_box.png") xpos 174 ypos 916
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/hide_%s.png") xpos 1508 ypos 933 action HideInterface()
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/save_%s.png") xpos 1567 ypos 933 action ShowMenu('save')
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/menu_%s.png") xpos 1625 ypos 933 action ShowMenu('game_menu_selector')
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/load_%s.png") xpos 1682 ypos 933 action ShowMenu('load')
if not config.skipping:
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/forward_%s.png") xpos 1768 ypos 949 action Skip()
else:
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/fast_forward_%s.png") xpos 1768 ypos 949 action Skip()
text what id "what" xpos 194 ypos 964 xmaximum 1541 size 28 line_spacing 2
if who:
text who id "who" xpos 194 ypos 931 size 28 line_spacing 2
screen nvl:
$ timeofday = persistent.timeofday
window background Frame(get_image("gui/choice/"+timeofday+"/choice_box.png"),50,50) xfill True yfill True yalign 0.5 left_padding 175 right_padding 175 bottom_padding 150 top_padding 150:
has vbox
for who, what, who_id, what_id, window_id in dialogue:
window:
id window_id
has hbox:
spacing 10
if persistent.font_size == "large":
if who is not None:
text who id who_id size 35
text what id what_id size 35
elif persistent.font_size == "small":
if who is not None:
text who id who_id size 28
text what id what_id size 28
if items:
vbox:
id "menu"
for caption, action, chosen in items:
if action:
button:
style "nvl_menu_choice_button"
action action
text caption style "nvl_menu_choice"
else:
text caption style "nvl_dialogue"
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/backward_%s.png") xpos 38 ypos 924 action ShowMenu("text_history")
if not config.skipping:
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/forward_%s.png") xpos 1768 ypos 949 action Skip()
else:
imagebutton auto get_image("gui/dialogue_box/"+timeofday+"/fast_forward_%s.png") xpos 1768 ypos 949 action Skip()
init python:
g = Gallery()
page = 0
gallery_mode = "cg"
g.locked_button = get_image("gui/gallery/not_opened_idle.png")
g.navigation = False
rows = 4
cols = 3
cells = rows * cols
show_spr = False
show_spr_emo = ""
show_spr_dress = ""
show_spr_acc = ""
show_spr_menu = []
spr_menu_spr = False
spr_menu_dress = False
spr_menu_emo = False
spr_menu_acc = False
gallery_cg_hentai = [
"d2_mt_undressed",
"d2_mt_undressed_2",
"d2_sl_swim",
"d3_sl_bathhouse",
"d5_dv_us_wash",
"d5_dv_us_wash_2",
"d5_dv_us_wash_3",
"d5_dv_us_wash_4",
"d6_sl_swim",
"d6_sl_hentai_1",
"d6_sl_hentai_2",
"d6_dv_hentai",
"d6_dv_hentai_2",
"d7_un_hentai",
"d7_un_hentai_3",
"d7_sl_morning",
"d7_sl_morning_2",
"miku_h_1_cenz",
"miku_h_2_cenz",
"uvao_h_cenz" ]
gallery_cg = [
"d1_food_normal", "d1_food_skolop", "d1_grasshopper",
"d1_rena_sunset", "d1_sl_dinner", "d1_sl_dinner_0",
"d1_uv", "d1_uv_2", "d2_2ch_beach",
"d2_lineup", "d2_micu_lib", "d2_miku_piano",
"d2_miku_piano2", "d2_mirror",
"d2_slavya_forest", "d2_sovenok",