-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathconfig.sample.json
181 lines (181 loc) · 3.93 KB
/
config.sample.json
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
{
"admin": {
"password": "happy"
},
"slide": {
"intervalMs": 5000
},
"game": {
"intervalMs": 5000,
"questions": [
{
"text": "Q1. 今天新娘的捧花顏色是?",
"options": [
{
"text": "黃色",
"isAnswer": false
},
{
"text": "粉紅色",
"isAnswer": true
},
{
"text": "綠色",
"isAnswer": false
},
{
"text": "藍色",
"isAnswer": false
}
]
},
{
"text": "Q2. 新娘和新郎在哪裡認識的?",
"options": [
{
"text": "交大熱舞社",
"isAnswer": false
},
{
"text": "交大建北會",
"isAnswer": false
},
{
"text": "交大蛋糕社",
"isAnswer": false
},
{
"text": "交大武陵高中校友會",
"isAnswer": true
}
]
},
{
"text": "Q3. 新娘和新郎交往多久了呢?",
"options": [
{
"text": "6年又9個月",
"isAnswer": false
},
{
"text": "7年又9個月",
"isAnswer": true
},
{
"text": "8年又9個月",
"isAnswer": false
},
{
"text": "9年又9個月",
"isAnswer": false
}
]
},
{
"text": "Q4. 新娘和新郎身高差多少?",
"options": [
{
"text": "10公分",
"isAnswer": false
},
{
"text": "20公分",
"isAnswer": false
},
{
"text": "30公分",
"isAnswer": true
},
{
"text": "40公分",
"isAnswer": false
}
]
},
{
"text": "Q5. 婚紗照中,新郎和新娘在沙灘上寫的字是?",
"options": [
{
"text": "I LOVE U",
"isAnswer": false
},
{
"text": "Marry Me",
"isAnswer": false
},
{
"text": "Hello World",
"isAnswer": false
},
{
"text": "dy93 ueewbd",
"isAnswer": true
}
]
},
{
"text": "Q6. 哪些是新郎和新娘一起去過的地方?(有多個答案,選中其中一個即可)",
"options": [
{
"text": "日本",
"isAnswer": false
},
{
"text": "北京",
"isAnswer": true
},
{
"text": "峇里島",
"isAnswer": true
},
{
"text": "韓國",
"isAnswer": false
}
]
},
{
"text": "Q7. 新郎新娘的對話記錄中,最常出現的對話?",
"options": [
{
"text": "(╭ ̄3 ̄)╭♡ 啾~",
"isAnswer": false
},
{
"text": "(╬☉д⊙) 怒",
"isAnswer": false
},
{
"text": "ε٩(๑> ₃ <)۶з 抱抱~",
"isAnswer": true
},
{
"text": "¯\\_(ツ)_/¯ 怪我囉",
"isAnswer": false
}
]
},
{
"text": "Q8. 本網站的作者是?",
"options": [
{
"text": "DY93",
"isAnswer": true
},
{
"text": "帥氣ㄟ DY93",
"isAnswer": true
},
{
"text": "超級無敵帥氣ㄟ DY93",
"isAnswer": true
},
{
"text": "宇宙超級無敵帥氣ㄟ DY93",
"isAnswer": true
}
]
}
]
}
}