-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfields.json
More file actions
223 lines (223 loc) · 4.9 KB
/
fields.json
File metadata and controls
223 lines (223 loc) · 4.9 KB
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
{
"minTime": {
"type": "number",
"label": "Initial marathon duration (minutes)",
"value": 60,
"step": 0.1,
"group": "Timer settings"
},
"maxTime": {
"type": "number",
"label": "Maximum marathon duration (minutes):",
"value": 1440,
"group": "Timer settings"
},
"resetTimer": {
"type": "button",
"label": "Start/Reset timer",
"value": "Start/Reset timer",
"group": "Timer settings"
},
"pauseTimer": {
"type": "button",
"label": "Pause/Resume timer",
"value": "Pause/Resume",
"group": "Timer settings"
},
"preserveTime": {
"type": "dropdown",
"label": "Overlay reload behaviour",
"value": "ignore",
"options": {
"ignore": "Wait for start to be clicked",
"save": "Continue countdown",
"restart": "Restart countdown"
},
"group": "Timer settings"
},
"addOnZero": {
"type": "dropdown",
"label": "What should happen on reaching zero?",
"value": "wait",
"options": {
"wait": "Wait for catchup",
"add": "New events add time to 0",
"stop": "Stop adding time"
},
"group": "Timer settings"
},
"onComplete": {
"type": "text",
"label": "Message on complete",
"value": "Done!",
"group": "Timer settings"
},
"addTimeCommand": {
"type": "text",
"label": "Add time command",
"value": "!addtime",
"group": "Chat command settings"
},
"managePermissions": {
"type": "dropdown",
"label": "Who can manage time:",
"value": "mods",
"options": {
"streamer": "Streamer",
"mods": "Mods"
},
"group": "Chat command settings"
},
"additionalUsers": {
"type": "text",
"label": "Additional users, comma separated",
"value": "userA,userB",
"group": "Chat command settings"
},
"followSeconds": {
"type": "number",
"label": "Seconds per follower:",
"value": 1,
"step": 1,
"group": "Event time settings"
},
"sub1Seconds": {
"type": "number",
"label": "Seconds per T1/Prime subscriber:",
"value": 60,
"step": 1,
"group": "Event time settings"
},
"sub2Seconds": {
"type": "number",
"label": "Seconds per T2 subscriber:",
"value": 120,
"step": 1,
"group": "Event time settings"
},
"sub3Seconds": {
"type": "number",
"label": "Seconds per T3 subscriber:",
"value": 180,
"step": 1,
"group": "Event time settings"
},
"cheerSeconds": {
"type": "number",
"label": "Seconds per 100 Bits:",
"value": 60,
"step": 0.1,
"group": "Event time settings"
},
"cheerMin": {
"type": "number",
"label": "Minimum bits to trigger:",
"value": 100,
"step": 1,
"group": "Event time settings"
},
"tipSeconds": {
"type": "number",
"label": "Seconds multiplied by tip amount:",
"value": 300,
"step": 0.01,
"group": "Event time settings"
},
"tipMin": {
"type": "number",
"label": "Minimum tip to trigger:",
"value": 1,
"step": 0.01,
"group": "Event time settings"
},
"merchSeconds": {
"type": "number",
"label": "Seconds multiplied by merch order amount:",
"value": 300,
"step": 0.01,
"group": "Event time settings"
},
"hostSeconds": {
"type": "number",
"label": "Seconds per viewer from host:",
"value": 1,
"step": 0.01,
"group": "Event time settings"
},
"hostMin": {
"type": "number",
"label": "Minimum viewers in host:",
"value": 100,
"step": 1,
"group": "Event time settings"
},
"raidSeconds": {
"type": "number",
"label": "Seconds per viewer from raid:",
"value": 0,
"step": 0.01,
"group": "Event time settings"
},
"raidMin": {
"type": "number",
"label": "Minimum viewers in raid:",
"value": 100,
"step": 1,
"group": "Event time settings"
},
"textAlign": {
"label": "Text align",
"type": "dropdown",
"value": "left",
"options": {
"left": "Left",
"center": "Center",
"right": "Right"
},
"group": "Typography"
},
"fontName": {
"type": "text",
"label": "Font name",
"value": "Montserrat",
"group": "Typography"
},
"fontSize": {
"type": "number",
"label": "Font size",
"value": 24,
"group": "Typography"
},
"fontWeight": {
"label": "Font Weight",
"type": "dropdown",
"value": "400",
"options": {
"100": "Thin (100)",
"300": "Light (300)",
"400": "Regular (400)",
"500": "Medium (500)",
"700": "Bold (700)",
"900": "Black (900)"
},
"group": "Typography"
},
"fontColor": {
"type": "colorpicker",
"label": "Font Color",
"value": "rgba(255,255,255,1)",
"group": "Typography"
},
"strokeColor": {
"type": "colorpicker",
"label": "Stroke Color",
"value": "rgba(255,0,0,0)",
"group": "Typography"
},
"strokeSize": {
"type": "number",
"label": "Stroke size",
"value": 2,
"group": "Typography"
}
}