-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathyoruka.json
9612 lines (9612 loc) · 291 KB
/
yoruka.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
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
{
"name": "yoruka",
"fullName": "須多夜花",
"fullConfigURL": "assets/configs/yoruka.json",
"imgSrc": [
"https://blob.sound-buttons.click/sound-buttons/yoruka/yoruka2.png",
"https://blob.sound-buttons.click/sound-buttons/yoruka/yoruka3.png",
"https://blob.sound-buttons.click/sound-buttons/yoruka/yoruka4.png",
"https://blob.sound-buttons.click/sound-buttons/yoruka/yoruka.png"
],
"intro": "✨RenewLive一期生✨台灣Vtuber\n\uD83C\uDF19須多 ヨルカ/須多 夜花 (すだ ヨルカ)\uD83C\uDF38\n\n▍Twitter @sudayoruka \n▍棉花糖/マシュマロ→https://is.gd/z8B9G4 \n▍Facebook fanpage→https://is.gd/jvS7xd \n▍RenewLiveTW→https://is.gd/6xSeWH \n▍Renewlive官方網站→https://www.renewlive.ch/",
"color": {
"primary": "#E55A74",
"secondary": "#33272B"
},
"link": {
"youtube": "https://www.youtube.com/channel/UCuy-kZJ7HWwUU-eKv0zUZFQ/",
"twitch": "https://www.twitch.tv/sudayoruka",
"twitter": "https://twitter.com/sudayoruka",
"facebook": "https://www.facebook.com/sudayoruka",
"instagram": "",
"discord": "https://discord.com/invite/p6CRD63Mzc",
"other": ""
},
"introButton": {
"id": "0983e92c-8616-4589-9c4a-2c6cb164b6d9",
"filename": "自我介紹.webm",
"text": {
"zh-tw": "自我介紹",
"ja": "自己紹介"
},
"baseRoute": "https://blob.sound-buttons.click/sound-buttons/yoruka/",
"volume": 1,
"source": {
"videoId": "a6AY-ea-OGM",
"start": 5848,
"end": 5858
}
},
"buttonGroups": [
{
"name": {
"zh-tw": "\uD83C\uDF19花花常用區\uD83C\uDF38",
"ja": "\uD83C\uDF19花花常用區\uD83C\uDF38"
},
"baseRoute": "https://blob.sound-buttons.click/sound-buttons/yoruka/",
"buttons": [
{
"id": "1d7b48ec-4267-42a0-82ad-f7896360c6a8",
"filename": "加油.webm",
"text": {
"zh-tw": "加油!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "qH0xvoiGFv0",
"start": 1462,
"end": 1463.3
}
},
{
"id": "4f69c672-06c1-4318-b578-2b8dceb4daf4",
"filename": "哈哈哈哈我當然是天才啊媽的.webm",
"text": {
"zh-tw": "哈哈哈哈,我當然是天才啊媽的",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "fQsU3xlCxro",
"start": 8992.6,
"end": 8995.8
}
},
{
"id": "484b413e-c011-44c9-a6c3-f2a480df861d",
"filename": "死渣男.webm",
"text": {
"zh-tw": "死渣男",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "Ulux9eSZ2ic",
"start": 17361.5,
"end": 17363
}
},
{
"id": "602198de-8004-44d3-b557-859dc49b576c",
"filename": "不是在說你啦不是你啦.webm",
"text": {
"zh-tw": "不是在說你啦不是你啦",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "FjBDL28sYU4",
"start": 4008,
"end": 4011
}
},
{
"id": "62535c19-c04c-4f22-a957-8ff8a263d4e0",
"filename": "臥槽.webm",
"text": {
"zh-tw": "臥槽!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "d8poKZQNPOY",
"start": 4200,
"end": 4202
}
},
{
"id": "5037e415-fa23-4d64-a06d-53f45b3a67f6",
"filename": "爛誒.webm",
"text": {
"zh-tw": "爛誒",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "O4_rKPNvwto",
"start": 9971,
"end": 9973
}
},
{
"id": "d7c7d2de-21ac-4c3e-9c12-52c438f2b25d",
"filename": "你真是思想齷齪的混蛋.webm",
"text": {
"zh-tw": "你真是思想齷齪的混蛋",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "FjBDL28sYU4",
"start": 567,
"end": 568.8
}
},
{
"id": "acbed127-acba-49d4-96dd-94b797a03d56",
"filename": "好色喔.webm",
"text": {
"zh-tw": "好色喔!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "unWebd0CdR0",
"start": 2074,
"end": 2075.3
}
},
{
"id": "0eb61348-f8a1-4570-aa20-230c49458fdc",
"filename": "殺掉.webm",
"text": {
"zh-tw": "殺掉!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "lAJLIByx8oc",
"start": 7317.5,
"end": 7320
}
}
]
},
{
"name": {
"zh-tw": "\uD83C\uDF19夜花花\uD83C\uDF38",
"ja": "\uD83C\uDF19夜花花\uD83C\uDF38"
},
"baseRoute": "https://blob.sound-buttons.click/sound-buttons/yoruka/",
"buttons": [
{
"id": "8f40ba99-2365-482f-9d0c-1c8e313fb27a",
"filename": "自我介紹.webm",
"text": {
"zh-tw": "自我介紹",
"ja": "自己紹介"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "a6AY-ea-OGM",
"start": 5848,
"end": 5858
}
},
{
"id": "8b3e200d-bab5-4fc6-9238-801321456883",
"filename": "晚上好.webm",
"text": {
"zh-tw": "晚上好,歡迎來到我的歌枠!",
"ja": "こんこんこんヨル~"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "a6AY-ea-OGM",
"start": 268,
"end": 275
}
},
{
"id": "5244ccbf-eeb9-474f-91a2-27af5d315d3b",
"filename": "我真的是無能為力耶x2.webm",
"text": {
"zh-tw": "我真的是無能為力耶x2",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "a6AY-ea-OGM",
"start": 1754,
"end": 1763
}
},
{
"id": "a927b0bf-9c90-42cc-b69e-701eec7296e2",
"filename": "你們喜歡是不是那就來啊唱幾次都可以啦.webm",
"text": {
"zh-tw": "你們喜歡是不是,那就來啊!唱幾次都可以啦!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "a6AY-ea-OGM",
"start": 1767,
"end": 1773
}
},
{
"id": "61c3882b-69f4-450b-8026-722fddfcb996",
"filename": "哈哈哈你們真的很奇怪誒怎麼要聽這種奇怪的歌.webm",
"text": {
"zh-tw": "哈哈哈,你們真的很奇怪誒,怎麼要聽這種奇怪的歌",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "a6AY-ea-OGM",
"start": 1886,
"end": 1896
}
},
{
"id": "d8d3a07c-409b-4a40-ada8-a217f9697a02",
"filename": "你們一直說ㄩㄇㄩㄇㄩㄇㄩ你個頭啊.webm",
"text": {
"zh-tw": "你們一直說ㄩㄇㄩㄇㄩㄇ,ㄩ你個頭啊",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "a6AY-ea-OGM",
"start": 1933,
"end": 1941
}
},
{
"id": "fd6a61b2-7ce8-4cb8-a533-4797bffe581a",
"filename": "誒等一下我才不是你阿嬤勒林阿嬤勒亂喊一通.webm",
"text": {
"zh-tw": "誒等一下,我才不是你阿嬤勒!林阿嬤勒,亂喊一通",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "a6AY-ea-OGM",
"start": 2720,
"end": 2725
}
},
{
"id": "7876c854-77c0-45fe-9085-ec3438f6fb43",
"filename": "阿嬤阿嬤你怎麼沒感覺.webm",
"text": {
"zh-tw": "阿嬤阿嬤你怎麼沒感覺",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "a6AY-ea-OGM",
"start": 3042,
"end": 3044
}
},
{
"id": "3381efad-af34-4e96-9712-0dcf352aea9a",
"filename": "讚啦釣魚大成功.webm",
"text": {
"zh-tw": "讚啦,釣魚大成功!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "a6AY-ea-OGM",
"start": 4692,
"end": 4696
}
},
{
"id": "8872763e-d85b-4947-95d1-a857146efe53",
"filename": "不是我就不是鍬形蟲.webm",
"text": {
"zh-tw": "不是!我就不是鍬形蟲!",
"ja": "いいえ! 私はクワガタムシではありません!"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "a6AY-ea-OGM",
"start": 4793,
"end": 4802
}
},
{
"id": "13aca2b9-9c8a-40da-971f-c51fdd664926",
"filename": "大笑.webm",
"text": {
"zh-tw": "大笑",
"ja": "笑い"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "a6AY-ea-OGM",
"start": 5727,
"end": 5733
}
},
{
"id": "007e245c-acd3-4151-a98a-a2ac25f9f9fb",
"filename": "當然台V最清楚的就是我啦.webm",
"text": {
"zh-tw": "當然台V最清楚的就是我啦!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "a6AY-ea-OGM",
"start": 5980,
"end": 5983
}
},
{
"id": "72453fdb-eccd-40d2-8d63-26e95ed8b889",
"filename": "閃電閃電鳥叫聲.webm",
"text": {
"zh-tw": "閃電!(閃電鳥叫聲)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "a6AY-ea-OGM",
"start": 6357,
"end": 6364
}
},
{
"id": "789d6f54-102f-4076-ae5f-f149e14ce5c8",
"filename": "要不要課金呢課不要再違背你的基因了.webm",
"text": {
"zh-tw": "要不要課金呢?課!不要再違背你的基因了",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "bzlmmeFXZBU",
"start": 883,
"end": 915
}
},
{
"id": "ba0caf96-c18b-4630-8af4-ba333029a375",
"filename": "我們中出了一個叛徒.webm",
"text": {
"zh-tw": "我們中出了一個叛徒",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "bzlmmeFXZBU",
"start": 3324,
"end": 3327
}
},
{
"id": "421e9e84-f1f3-4f78-9491-384bd2859018",
"filename": "出事了阿北.webm",
"text": {
"zh-tw": "出事了阿北!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "K4sHo8GDvck",
"start": 413,
"end": 415
}
},
{
"id": "aa282ed7-27f2-4019-8918-d412c499d92b",
"filename": "放開我.webm",
"text": {
"zh-tw": "放開我!",
"ja": "離せ!"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "K4sHo8GDvck",
"start": 816,
"end": 820
}
},
{
"id": "ec121ab8-204d-4f63-889d-f778c8352f2b",
"filename": "我們是很環保的沒在用吸管的啦.webm",
"text": {
"zh-tw": "我們是很環保的,沒在用吸管的啦",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "K4sHo8GDvck",
"start": 2259,
"end": 2261
}
},
{
"id": "52a983bc-38cd-4372-bd53-894d57d37896",
"filename": "聽話讓我看看.webm",
"text": {
"zh-tw": "聽話,讓我看看",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "K4sHo8GDvck",
"start": 2958,
"end": 2960
}
},
{
"id": "e1c2f93d-5ac0-45ea-a22c-0003324e6990",
"filename": "歐尼醬蘿莉音.webm",
"text": {
"zh-tw": "歐尼醬 (蘿莉音)",
"ja": "お兄ちゃん (ロリ声)"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "K4sHo8GDvck",
"start": 4192,
"end": 4203
}
},
{
"id": "732d2823-e626-41d6-abdc-3026e36e7623",
"filename": "啊啦啊啦這樣不行呢.webm",
"text": {
"zh-tw": "啊啦啊啦,這樣不行呢",
"ja": "あらあら、いけないね"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "K4sHo8GDvck",
"start": 4589,
"end": 4594
}
},
{
"id": "c5846793-f2b1-4b29-942b-c488f71bc745",
"filename": "我對夜花一心一意真的嗎不是騙人的話我也愛你喔.webm",
"text": {
"zh-tw": "(我對夜花一心一意) 真的嗎? 不是騙人的話,我也愛你喔",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "K4sHo8GDvck",
"start": 6063,
"end": 6076
}
},
{
"id": "819ff5f2-4f1b-4118-8b9a-705725561dee",
"filename": "現在的人需求真的很奇怪你們真的是有毛病誒.webm",
"text": {
"zh-tw": "現在的人需求真的很奇怪,你們真的是有毛病誒",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "K4sHo8GDvck",
"start": 6263,
"end": 6268
}
},
{
"id": "785db514-4d3a-40d5-b047-d8856dbf2212",
"filename": "笑聲_1.webm",
"text": {
"zh-tw": "笑聲",
"ja": "笑い"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "WIm1jNFQOMI",
"start": 4885,
"end": 4893
}
},
{
"id": "7472d01e-44b2-44c0-9853-f44175325e02",
"filename": "你們就是我的交往對象可以嗎我就跟你們全部人交往謝謝.webm",
"text": {
"zh-tw": "你們就是我的交往對象可以嗎,我就跟你們全部人交往,謝謝",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "WIm1jNFQOMI",
"start": 6909,
"end": 6915
}
},
{
"id": "93657981-0072-4a06-b07e-27e7d2a55cfe",
"filename": "戀愛的戀是斂財的斂沒有錯喔.webm",
"text": {
"zh-tw": "戀愛的戀是斂財的斂,沒有錯喔",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "WIm1jNFQOMI",
"start": 7102,
"end": 7107
}
},
{
"id": "609a9f7e-3d53-4011-854a-9d019835ceeb",
"filename": "哥哥我最喜歡你了笨蛋變態.webm",
"text": {
"zh-tw": "哥哥我最喜歡你了...笨蛋!變態!",
"ja": "お兄さん大好き....バカ!変態!"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UWYEs98pKUk",
"start": 1822,
"end": 1829
}
},
{
"id": "abd1c00e-1452-4ff4-9ecc-291ffbe6376c",
"filename": "我這boingboing你都看不出來嗎會動好嗎會ㄉㄨㄞㄉㄨㄞㄉㄨㄞ.webm",
"text": {
"zh-tw": "我這boing boing你都看不出來嗎? 會動好嗎? 會ㄉㄨㄞㄉㄨㄞㄉㄨㄞ!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UWYEs98pKUk",
"start": 5316,
"end": 5327
}
},
{
"id": "b9038d8d-73fe-4f23-888b-ee76cb8f2419",
"filename": "莫名奇妙他的勇氣是梁靜茹給他的對不對.webm",
"text": {
"zh-tw": "莫名奇妙,他的勇氣是梁靜茹給他的對不對",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UWYEs98pKUk",
"start": 5376,
"end": 5380
}
},
{
"id": "a5ed6751-fba2-4917-a740-547aeb8196bf",
"filename": "Sorryません.webm",
"text": {
"zh-tw": "Sorryません ",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UWYEs98pKUk",
"start": 5501,
"end": 5509
}
},
{
"id": "1e16b57c-37bc-48d7-8474-b51687bc21bc",
"filename": "英語繞口令.webm",
"text": {
"zh-tw": "英語繞口令",
"ja": "英語の早口言葉"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UWYEs98pKUk",
"start": 6455,
"end": 6463
}
},
{
"id": "3743e3e2-b41f-48fd-bec5-80a704b4494e",
"filename": "啊我都想要啦04就是我的啦.webm",
"text": {
"zh-tw": "啊~我都想要啦~04就是我的啦!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UWYEs98pKUk",
"start": 6853,
"end": 6862
}
},
{
"id": "e707fc62-9e1f-48b9-a61e-af704f3e106b",
"filename": "啊我就可愛啊不然你想怎樣.webm",
"text": {
"zh-tw": "啊我就可愛啊,不然你想怎樣",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UWYEs98pKUk",
"start": 6954,
"end": 6958
}
},
{
"id": "4f33fb4d-0225-4d49-8234-ab18f0683c67",
"filename": "挖熊嘎意哩啦.webm",
"text": {
"zh-tw": "挖熊嘎意哩啦!",
"ja": "私はあなたがとても好きです! (台湾方言)"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UWYEs98pKUk",
"start": 1839,
"end": 1842
}
},
{
"id": "a4521b5a-a1cc-412a-845a-2b2f7d7bdad2",
"filename": "沒錯你已經跟我談戀愛了喔誒嘿嘿嘿.webm",
"text": {
"zh-tw": "沒錯!你已經跟我談戀愛了喔!誒嘿嘿嘿\uD83D\uDC97",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UWYEs98pKUk",
"start": 6795,
"end": 6809
}
},
{
"id": "89c059dd-32de-416a-94a5-d7caae6625d3",
"filename": "挖誒島灰三十塊.webm",
"text": {
"zh-tw": "挖誒島灰!三十塊!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "UWYEs98pKUk",
"start": 1536,
"end": 1540
}
},
{
"id": "5e32834b-3a84-4231-90c4-492fd54de1fc",
"filename": "給酷蘿莉音.webm",
"text": {
"zh-tw": "給酷~(蘿莉音)",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "K4sHo8GDvck",
"start": 4899,
"end": 4901
}
},
{
"id": "a0317c9e-0aa8-4d90-a261-b0934cc6103c",
"filename": "萌耶萌耶啾.webm",
"text": {
"zh-tw": "萌耶萌耶啾~",
"ja": "萌え萌えキュン~"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "oCsn3OqRKeE",
"start": 2102,
"end": 2106
}
},
{
"id": "40d6f996-79e6-453b-8a25-8a879b3ad503",
"filename": "好耶好耶.webm",
"text": {
"zh-tw": "好耶~好耶~",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "XPETwYh0u3Q",
"start": 7211,
"end": 7216
}
},
{
"id": "6bb9cc71-3fd3-44a6-950e-a17415dd16c0",
"filename": "我小小的心靈就這麼被妳擊碎了喔.webm",
"text": {
"zh-tw": "我小小的心靈就這麼被妳擊碎了,喔~~~",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "XPETwYh0u3Q",
"start": 7217,
"end": 7222
}
},
{
"id": "f9bab7e9-8828-4420-8c9c-b52d28902905",
"filename": "花主播上線啦.webm",
"text": {
"zh-tw": "花主播上線啦!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "XPETwYh0u3Q",
"start": 7237,
"end": 7241
}
},
{
"id": "84988e22-0b31-4603-a674-e6d9486000b2",
"filename": "你們不要再逼我了喔我東西拿出來了喔.webm",
"text": {
"zh-tw": "你們不要再逼我了喔,我東西拿出來了喔",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "XPETwYh0u3Q",
"start": 7328,
"end": 7341
}
},
{
"id": "ddd9e72d-c5c3-4769-9723-f5ec59ec3342",
"filename": "親愛的你願意娶我嗎.webm",
"text": {
"zh-tw": "親愛的,你願意娶我嗎?",
"ja": "ダーリン、僕と結婚してくれない?"
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "XPETwYh0u3Q",
"start": 7689,
"end": 7692
}
},
{
"id": "7448268b-947c-4c97-89c3-c6cb82a5b3b6",
"filename": "喝多一點珍奶搞不好我的boingboing就會跟著upup呢.webm",
"text": {
"zh-tw": "喝多一點珍奶搞不好我的boing boing就會跟著up up呢",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "etUg1arBfVQ",
"start": 7992,
"end": 7996
}
},
{
"id": "bbdb7da4-d867-437d-b9ea-af210230721f",
"filename": "你要不要吃哈密瓜.webm",
"text": {
"zh-tw": "你要不要吃...哈密瓜",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "QcgjEagTbgQ",
"start": 3518,
"end": 3521
}
},
{
"id": "e6c457a0-fea1-4ba8-adc9-487486b25fa6",
"filename": "來去菜市場看黑人甲水果.webm",
"text": {
"zh-tw": "來去菜市場看黑人甲水果!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "XPETwYh0u3Q",
"start": 7450,
"end": 7456
}
},
{
"id": "1f1092d9-c383-49c1-8a68-4ef139bc36ab",
"filename": "呀吼.webm",
"text": {
"zh-tw": "呀吼~",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "rxdF05nbt0M",
"start": 279,
"end": 281
}
},
{
"id": "cadb05a7-6683-41f3-b85f-3a81e2ce3ca4",
"filename": "你是不是想跟我吵架.webm",
"text": {
"zh-tw": "你是不是想跟我吵架?!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "_cIc_wE8Hl0",
"start": 3488,
"end": 3500
}
},
{
"id": "ea6a4c7b-5f39-4ffb-aebb-51d3a68f5c49",
"filename": "他沒有ㄋㄟㄋㄟ誒.webm",
"text": {
"zh-tw": "他沒有ㄋㄟㄋㄟ誒!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "_cIc_wE8Hl0",
"start": 3267,
"end": 3269
}
},
{
"id": "0dade720-dedb-4bf1-8e6e-3010acfc5ba9",
"filename": "相黏鍵誒可以打節奏.webm",
"text": {
"zh-tw": "相黏鍵?誒可以打節奏",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "_cIc_wE8Hl0",
"start": 3625,
"end": 3635
}
},
{
"id": "b5e14b2f-19aa-4a9a-80f1-9079c003b0f6",
"filename": "這很明顯是廠商的疏失卡普空要不要負責啊.webm",
"text": {
"zh-tw": "這很明顯是廠商的疏失,卡普空要不要負責啊",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "_cIc_wE8Hl0",
"start": 3935,
"end": 3941
}
},
{
"id": "5cd593b6-8149-4631-a39f-75c8d3ffb1e8",
"filename": "啊我遊戲斷線了哈哈哈哈.webm",
"text": {
"zh-tw": "啊我遊戲斷線了哈哈哈哈",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "_cIc_wE8Hl0",
"start": 4246,
"end": 4250
}
},
{
"id": "8a60c72f-5847-4077-95d3-6fb73837c59d",
"filename": "你就儘管嘲笑好了但現在在你面前的是一個贏家.webm",
"text": {
"zh-tw": "你就儘管嘲笑好了,但現在在你面前的是一個贏家!!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "wVain3qWBko",
"start": 9038,
"end": 9045
}
},
{
"id": "1a674460-003c-41d4-9688-8250e1824c51",
"filename": "我是贏家夾到娃娃你是輸家哭著找媽媽.webm",
"text": {
"zh-tw": "我是贏家,夾到娃娃;你是輸家,哭著找媽媽!",
"ja": ""
},
"baseRoute": null,
"volume": 1,
"source": {
"videoId": "wVain3qWBko",
"start": 9074,
"end": 9080
}