-
Notifications
You must be signed in to change notification settings - Fork 1
/
credits.rpy
150 lines (92 loc) · 3.88 KB
/
credits.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
define CREDITS_SIZE = 4300
define CREDITS_TIME = 28
transform credits_scroll(speed):
ypos 900
linear speed ypos (CREDITS_SIZE * -1)
screen credits():
style_prefix "credits"
add "#000"
frame at credits_scroll(CREDITS_TIME):
background None
xalign 0.5
has vbox
null height 350
label "{color=#ffffff}{size=+30}{font=C.ttf}药:绝望的解决手段" xalign 0.5
label "{color=#ffffff}{size=+20}{font=C.ttf}Medicine: The Remedy of Sheer Desperation" xalign 0.5
null height 500
label "{color=#ffffff}主创" xalign 0.0
label "{color=#ffffff}Producer" xalign 0.0
null height 25
label "{color=#ffffff}聿修" xalign 1.0
null height 150
label "{color=#ffffff}文案" xalign 0.0
label "{color=#ffffff}Script Writers" xalign 0.0
null height 25
label "{color=#ffffff}聿修" xalign 1.0
label "{color=#ffffff}Halifax" xalign 1.0
null height 150
label "{color=#ffffff}程序" xalign 0.0
label "{color=#ffffff}Programer" xalign 0.0
null height 25
label "{color=#ffffff}聿修" xalign 1.0
null height 150
label "{color=#ffffff}画师" xalign 0.0
label "{color=#ffffff}Sprite Artist" xalign 0.0
null height 25
label "{color=#ffffff}Inufuto" xalign 1.0
label "{color=#ffffff}EmoFox" xalign 1.0
null height 150
label "{color=#ffffff}测试" xalign 0.0
label "{color=#ffffff}Testing" xalign 0.0
null height 25
label "{color=#ffffff}ELiK\tAster\t罗瞑Roming" xalign 1.0
label "{color=#ffffff}BZQDTCYY\tAcosluc\tL.catter" xalign 1.0
label "{color=#ffffff}竹隐狴犴\t无忧可解?\tJanus" xalign 1.0
label "{color=#ffffff}蕈影\tutcl雏灯\t-vicus\t白泽" xalign 1.0
label "{color=#ffffff}Ylonw\t永远的wwk迷弟" xalign 1.0
label "{color=#ffffff}以及为游戏提出过BUG的各位玩家" xalign 1.0
null height 150
label "{color=#ffffff}背景图片" xalign 0.0
label "{color=#ffffff}BG Material" xalign 0.0
null height 25
label "{color=#ffffff}Unsplash" xalign 1.0
label "{color=#ffffff}Pexels" xalign 1.0
label "{color=#ffffff}FotoSketcher" xalign 1.0
null height 150
label "{color=#ffffff}背景音乐" xalign 0.0
label "{color=#ffffff}BGM" xalign 0.0
null height 25
label "{color=#ffffff}FreePD" xalign 1.0
null height 150
label "{color=#ffffff}游戏音效" xalign 0.0
label "{color=#ffffff}Sounds" xalign 0.0
null height 25
label "{color=#ffffff}Freesound" xalign 1.0
label "{color=#ffffff}淘声网" xalign 1.0
label "{color=#ffffff}耳聆网" xalign 1.0
null height 150
label "{color=#ffffff}特别感谢" xalign 0.0
label "{color=#ffffff}Special Thanks" xalign 0.0
null height 25
label "{color=#ffffff}Endorphins频道全体成员" xalign 1.0
label "{color=#ffffff}指路本游戏的频道" xalign 1.0
label "{color=#ffffff}宣传这个游戏的玩家" xalign 1.0
null height 25
label "{color=#ffffff}还有你" xalign 1.0
null height 1000
label "{color=#ffffff}{size=+30}感谢游玩!" xalign 0.5
label "{color=#ffffff}{size=+20}Thanks for Playing!" xalign 0.5
null height 100
label "{color=#ffffff}2023/5/20 version 0.4.16" xalign 0.5
null height 1000
timer CREDITS_TIME+5 action Return()
key "button_select" action Confirm("是否跳过?", Return())
label credits:
$ quick_menu = False
$ clearscreens()
if renpy.music.get_playing() in (None, audio.themedicine):
play music audio.credits fadein 3
call screen credits
stop music fadeout 3
$ quick_menu = True
return