-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbondsHonorWords.json
10410 lines (10410 loc) · 330 KB
/
bondsHonorWords.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
[
{
"id": 1010201,
"seq": 10102010,
"bondsGroupId": 10102,
"assetbundleName": "honorname_0102_01",
"name": "Leo\/needのはじまり",
"description": "星乃一歌と天馬咲希のキズナランクを5まで上げよう。"
},
{
"id": 1010202,
"seq": 10102020,
"bondsGroupId": 10102,
"assetbundleName": "honorname_0102_02",
"name": "スマイルフレンド",
"description": "星乃一歌と天馬咲希のキズナランクを26まで上げよう。"
},
{
"id": 1010203,
"seq": 10102030,
"bondsGroupId": 10102,
"assetbundleName": "honorname_0102_03",
"name": "言葉とメロディ",
"description": "星乃一歌と天馬咲希のキズナランクを46まで上げよう。"
},
{
"id": 1010301,
"seq": 10103010,
"bondsGroupId": 10103,
"assetbundleName": "honorname_0103_01",
"name": "リンゴ同盟",
"description": "星乃一歌と望月穂波のキズナランクを5まで上げよう。"
},
{
"id": 1010302,
"seq": 10103020,
"bondsGroupId": 10103,
"assetbundleName": "honorname_0103_02",
"name": "秘密の買い食い",
"description": "星乃一歌と望月穂波のキズナランクを26まで上げよう。"
},
{
"id": 1010303,
"seq": 10103030,
"bondsGroupId": 10103,
"assetbundleName": "honorname_0103_03",
"name": "揺れない輝き",
"description": "星乃一歌と望月穂波のキズナランクを46まで上げよう。"
},
{
"id": 1010401,
"seq": 10104010,
"bondsGroupId": 10104,
"assetbundleName": "honorname_0104_01",
"name": "飴がいっぱいほしい",
"description": "星乃一歌と日野森志歩のキズナランクを5まで上げよう。"
},
{
"id": 1010402,
"seq": 10104020,
"bondsGroupId": 10104,
"assetbundleName": "honorname_0104_02",
"name": "覚悟は本物",
"description": "星乃一歌と日野森志歩のキズナランクを26まで上げよう。"
},
{
"id": 1010403,
"seq": 10104030,
"bondsGroupId": 10104,
"assetbundleName": "honorname_0104_03",
"name": "同じ夢を",
"description": "星乃一歌と日野森志歩のキズナランクを46まで上げよう。"
},
{
"id": 1010501,
"seq": 10105010,
"bondsGroupId": 10105,
"assetbundleName": "honorname_0105_01",
"name": "ミクファンなふたり",
"description": "星乃一歌と花里みのりのキズナランクを5まで上げよう。"
},
{
"id": 1010502,
"seq": 10105020,
"bondsGroupId": 10105,
"assetbundleName": "honorname_0105_02",
"name": "推しは生きがい",
"description": "星乃一歌と花里みのりのキズナランクを26まで上げよう。"
},
{
"id": 1010503,
"seq": 10105030,
"bondsGroupId": 10105,
"assetbundleName": "honorname_0105_03",
"name": "たとえ泥くさくても",
"description": "星乃一歌と花里みのりのキズナランクを46まで上げよう。"
},
{
"id": 1010601,
"seq": 10106010,
"bondsGroupId": 10106,
"assetbundleName": "honorname_0106_01",
"name": "最初は30点でも大丈夫",
"description": "星乃一歌と桐谷遥のキズナランクを5まで上げよう。"
},
{
"id": 1010602,
"seq": 10106020,
"bondsGroupId": 10106,
"assetbundleName": "honorname_0106_02",
"name": "美味しいと健康は紙一重?",
"description": "星乃一歌と桐谷遥のキズナランクを26まで上げよう。"
},
{
"id": 1010603,
"seq": 10106030,
"bondsGroupId": 10106,
"assetbundleName": "honorname_0106_03",
"name": "隣のプロフェッショナル",
"description": "星乃一歌と桐谷遥のキズナランクを46まで上げよう。"
},
{
"id": 1010801,
"seq": 10108010,
"bondsGroupId": 10108,
"assetbundleName": "honorname_0108_01",
"name": "クールに見えて?",
"description": "星乃一歌と日野森雫のキズナランクを5まで上げよう。"
},
{
"id": 1010802,
"seq": 10108020,
"bondsGroupId": 10108,
"assetbundleName": "honorname_0108_02",
"name": "意外と器用",
"description": "星乃一歌と日野森雫のキズナランクを26まで上げよう。"
},
{
"id": 1010803,
"seq": 10108030,
"bondsGroupId": 10108,
"assetbundleName": "honorname_0108_03",
"name": "好きなものにまっしぐら",
"description": "星乃一歌と日野森雫のキズナランクを46まで上げよう。"
},
{
"id": 1010901,
"seq": 10109010,
"bondsGroupId": 10109,
"assetbundleName": "honorname_0109_01",
"name": "路上ライブで特訓!",
"description": "星乃一歌と小豆沢こはねのキズナランクを5まで上げよう。"
},
{
"id": 1010902,
"seq": 10109020,
"bondsGroupId": 10109,
"assetbundleName": "honorname_0109_02",
"name": "ここぞという時の推進力",
"description": "星乃一歌と小豆沢こはねのキズナランクを26まで上げよう。"
},
{
"id": 1010903,
"seq": 10109030,
"bondsGroupId": 10109,
"assetbundleName": "honorname_0109_03",
"name": "今こそ覚悟を決めて",
"description": "星乃一歌と小豆沢こはねのキズナランクを46まで上げよう。"
},
{
"id": 1011301,
"seq": 10113010,
"bondsGroupId": 10113,
"assetbundleName": "honorname_0113_01",
"name": "幼馴染みと兄",
"description": "星乃一歌と天馬司のキズナランクを5まで上げよう。"
},
{
"id": 1011302,
"seq": 10113020,
"bondsGroupId": 10113,
"assetbundleName": "honorname_0113_02",
"name": "まっすぐでブレない",
"description": "星乃一歌と天馬司のキズナランクを26まで上げよう。"
},
{
"id": 1011303,
"seq": 10113030,
"bondsGroupId": 10113,
"assetbundleName": "honorname_0113_03",
"name": "託し託され",
"description": "星乃一歌と天馬司のキズナランクを46まで上げよう。"
},
{
"id": 1011501,
"seq": 10115010,
"bondsGroupId": 10115,
"assetbundleName": "honorname_0115_01",
"name": "ボーカルと歌姫",
"description": "星乃一歌と草薙寧々のキズナランクを5まで上げよう。"
},
{
"id": 1011502,
"seq": 10115020,
"bondsGroupId": 10115,
"assetbundleName": "honorname_0115_02",
"name": "先生と弟子",
"description": "星乃一歌と草薙寧々のキズナランクを26まで上げよう。"
},
{
"id": 1011503,
"seq": 10115030,
"bondsGroupId": 10115,
"assetbundleName": "honorname_0115_03",
"name": "恐れずそして自分らしく",
"description": "星乃一歌と草薙寧々のキズナランクを46まで上げよう。"
},
{
"id": 1011701,
"seq": 10117010,
"bondsGroupId": 10117,
"assetbundleName": "honorname_0117_01",
"name": "触ってみたかったな",
"description": "星乃一歌と宵崎奏のキズナランクを5まで上げよう。"
},
{
"id": 1011702,
"seq": 10117020,
"bondsGroupId": 10117,
"assetbundleName": "honorname_0117_02",
"name": "花に詳しい例の人",
"description": "星乃一歌と宵崎奏のキズナランクを26まで上げよう。"
},
{
"id": 1011703,
"seq": 10117030,
"bondsGroupId": 10117,
"assetbundleName": "honorname_0117_03",
"name": "仲良し一歩前進",
"description": "星乃一歌と宵崎奏のキズナランクを46まで上げよう。"
},
{
"id": 1011801,
"seq": 10118010,
"bondsGroupId": 10118,
"assetbundleName": "honorname_0118_01",
"name": "私達、学級委員",
"description": "星乃一歌と朝比奈まふゆのキズナランクを5まで上げよう。"
},
{
"id": 1011802,
"seq": 10118020,
"bondsGroupId": 10118,
"assetbundleName": "honorname_0118_02",
"name": "心に、響く……",
"description": "星乃一歌と朝比奈まふゆのキズナランクを26まで上げよう。"
},
{
"id": 1011803,
"seq": 10118030,
"bondsGroupId": 10118,
"assetbundleName": "honorname_0118_03",
"name": "言葉で想いを紡ぐ者",
"description": "星乃一歌と朝比奈まふゆのキズナランクを46まで上げよう。"
},
{
"id": 1011901,
"seq": 10119010,
"bondsGroupId": 10119,
"assetbundleName": "honorname_0119_01",
"name": "出会いは友達の友達",
"description": "星乃一歌と東雲絵名のキズナランクを5まで上げよう。"
},
{
"id": 1011902,
"seq": 10119020,
"bondsGroupId": 10119,
"assetbundleName": "honorname_0119_02",
"name": "タッグでバブル相撲",
"description": "星乃一歌と東雲絵名のキズナランクを26まで上げよう。"
},
{
"id": 1011903,
"seq": 10119030,
"bondsGroupId": 10119,
"assetbundleName": "honorname_0119_03",
"name": "決めたらテコでも動かない",
"description": "星乃一歌と東雲絵名のキズナランクを46まで上げよう。"
},
{
"id": 1012101,
"seq": 10121010,
"bondsGroupId": 10121,
"assetbundleName": "honorname_0121_01",
"name": "ツインギター",
"description": "星乃一歌と初音ミクのキズナランクを5まで上げよう。"
},
{
"id": 1012102,
"seq": 10121020,
"bondsGroupId": 10121,
"assetbundleName": "honorname_0121_02",
"name": "星空に響く音",
"description": "星乃一歌と初音ミクのキズナランクを26まで上げよう。"
},
{
"id": 1012103,
"seq": 10121030,
"bondsGroupId": 10121,
"assetbundleName": "honorname_0121_03",
"name": "想いを歌って",
"description": "星乃一歌と初音ミクのキズナランクを46まで上げよう。"
},
{
"id": 1012201,
"seq": 10122010,
"bondsGroupId": 10122,
"assetbundleName": "honorname_0122_01",
"name": "チェック柄と萌え袖",
"description": "星乃一歌と鏡音リンのキズナランクを5まで上げよう。"
},
{
"id": 1012202,
"seq": 10122020,
"bondsGroupId": 10122,
"assetbundleName": "honorname_0122_02",
"name": "ぐいぐいたじたじ",
"description": "星乃一歌と鏡音リンのキズナランクを26まで上げよう。"
},
{
"id": 1012203,
"seq": 10122030,
"bondsGroupId": 10122,
"assetbundleName": "honorname_0122_03",
"name": "わ、私についてこい!",
"description": "星乃一歌と鏡音リンのキズナランクを46まで上げよう。"
},
{
"id": 1012401,
"seq": 10124010,
"bondsGroupId": 10124,
"assetbundleName": "honorname_0124_01",
"name": "頼れる先輩",
"description": "星乃一歌と巡音ルカのキズナランクを5まで上げよう。"
},
{
"id": 1012402,
"seq": 10124020,
"bondsGroupId": 10124,
"assetbundleName": "honorname_0124_02",
"name": "音には正解がない",
"description": "星乃一歌と巡音ルカのキズナランクを26まで上げよう。"
},
{
"id": 1012403,
"seq": 10124030,
"bondsGroupId": 10124,
"assetbundleName": "honorname_0124_03",
"name": "迷いのない音を",
"description": "星乃一歌と巡音ルカのキズナランクを46まで上げよう。"
},
{
"id": 1012601,
"seq": 10126010,
"bondsGroupId": 10126,
"assetbundleName": "honorname_0126_01",
"name": "演奏中はイケメン",
"description": "星乃一歌とKAITOのキズナランクを5まで上げよう。"
},
{
"id": 1012602,
"seq": 10126020,
"bondsGroupId": 10126,
"assetbundleName": "honorname_0126_02",
"name": "恥ずかしくなんてない",
"description": "星乃一歌とKAITOのキズナランクを26まで上げよう。"
},
{
"id": 1012603,
"seq": 10126030,
"bondsGroupId": 10126,
"assetbundleName": "honorname_0126_03",
"name": "すごいのは君達なんだよ",
"description": "星乃一歌とKAITOのキズナランクを46まで上げよう。"
},
{
"id": 1020301,
"seq": 10203010,
"bondsGroupId": 10203,
"assetbundleName": "honorname_0203_01",
"name": "ゆるふわヘア",
"description": "天馬咲希と望月穂波のキズナランクを5まで上げよう。"
},
{
"id": 1020302,
"seq": 10203020,
"bondsGroupId": 10203,
"assetbundleName": "honorname_0203_02",
"name": "無理はしないでね",
"description": "天馬咲希と望月穂波のキズナランクを26まで上げよう。"
},
{
"id": 1020303,
"seq": 10203030,
"bondsGroupId": 10203,
"assetbundleName": "honorname_0203_03",
"name": "だって柔らかいんだもん",
"description": "天馬咲希と望月穂波のキズナランクを46まで上げよう。"
},
{
"id": 1020401,
"seq": 10204010,
"bondsGroupId": 10204,
"assetbundleName": "honorname_0204_01",
"name": "甘やかしがち",
"description": "天馬咲希と日野森志歩のキズナランクを5まで上げよう。"
},
{
"id": 1020402,
"seq": 10204020,
"bondsGroupId": 10204,
"assetbundleName": "honorname_0204_02",
"name": "心配性",
"description": "天馬咲希と日野森志歩のキズナランクを26まで上げよう。"
},
{
"id": 1020403,
"seq": 10204030,
"bondsGroupId": 10204,
"assetbundleName": "honorname_0204_03",
"name": "一緒に音楽を",
"description": "天馬咲希と日野森志歩のキズナランクを46まで上げよう。"
},
{
"id": 1020501,
"seq": 10205010,
"bondsGroupId": 10205,
"assetbundleName": "honorname_0205_01",
"name": "屋上ランチ友達",
"description": "天馬咲希と花里みのりのキズナランクを5まで上げよう。"
},
{
"id": 1020502,
"seq": 10205020,
"bondsGroupId": 10205,
"assetbundleName": "honorname_0205_02",
"name": "行動力旺盛!",
"description": "天馬咲希と花里みのりのキズナランクを26まで上げよう。"
},
{
"id": 1020503,
"seq": 10205030,
"bondsGroupId": 10205,
"assetbundleName": "honorname_0205_03",
"name": "ポジティブガールズ",
"description": "天馬咲希と花里みのりのキズナランクを46まで上げよう。"
},
{
"id": 1020601,
"seq": 10206010,
"bondsGroupId": 10206,
"assetbundleName": "honorname_0206_01",
"name": "いつか一緒に水族館♪",
"description": "天馬咲希と桐谷遥のキズナランクを5まで上げよう。"
},
{
"id": 1020602,
"seq": 10206020,
"bondsGroupId": 10206,
"assetbundleName": "honorname_0206_02",
"name": "アイドルとしてじゃなくて",
"description": "天馬咲希と桐谷遥のキズナランクを26まで上げよう。"
},
{
"id": 1020603,
"seq": 10206030,
"bondsGroupId": 10206,
"assetbundleName": "honorname_0206_03",
"name": "うきうきペンギンカフェ",
"description": "天馬咲希と桐谷遥のキズナランクを46まで上げよう。"
},
{
"id": 1020701,
"seq": 10207010,
"bondsGroupId": 10207,
"assetbundleName": "honorname_0207_01",
"name": "隠れファン?",
"description": "天馬咲希と桃井愛莉のキズナランクを5まで上げよう。"
},
{
"id": 1020702,
"seq": 10207020,
"bondsGroupId": 10207,
"assetbundleName": "honorname_0207_02",
"name": "やっと言えたありがとう",
"description": "天馬咲希と桃井愛莉のキズナランクを26まで上げよう。"
},
{
"id": 1020703,
"seq": 10207030,
"bondsGroupId": 10207,
"assetbundleName": "honorname_0207_03",
"name": "これからも勇気と希望を!",
"description": "天馬咲希と桃井愛莉のキズナランクを46まで上げよう。"
},
{
"id": 1020801,
"seq": 10208010,
"bondsGroupId": 10208,
"assetbundleName": "honorname_0208_01",
"name": "「お姉ちゃん」もいいなあ",
"description": "天馬咲希と日野森雫のキズナランクを5まで上げよう。"
},
{
"id": 1020802,
"seq": 10208020,
"bondsGroupId": 10208,
"assetbundleName": "honorname_0208_02",
"name": "志歩をぎゅっとしたい",
"description": "天馬咲希と日野森雫のキズナランクを26まで上げよう。"
},
{
"id": 1020803,
"seq": 10208030,
"bondsGroupId": 10208,
"assetbundleName": "honorname_0208_03",
"name": "着ぐるみでお祝い",
"description": "天馬咲希と日野森雫のキズナランクを46まで上げよう。"
},
{
"id": 1021201,
"seq": 10212010,
"bondsGroupId": 10212,
"assetbundleName": "honorname_0212_01",
"name": "敬語じゃなくていいのに",
"description": "天馬咲希と青柳冬弥のキズナランクを5まで上げよう。"
},
{
"id": 1021202,
"seq": 10212020,
"bondsGroupId": 10212,
"assetbundleName": "honorname_0212_02",
"name": "親も仲良し",
"description": "天馬咲希と青柳冬弥のキズナランクを26まで上げよう。"
},
{
"id": 1021203,
"seq": 10212030,
"bondsGroupId": 10212,
"assetbundleName": "honorname_0212_03",
"name": "フォレスタンベアー1世",
"description": "天馬咲希と青柳冬弥のキズナランクを46まで上げよう。"
},
{
"id": 1021301,
"seq": 10213010,
"bondsGroupId": 10213,
"assetbundleName": "honorname_0213_01",
"name": "天馬兄妹",
"description": "天馬咲希と天馬司のキズナランクを5まで上げよう。"
},
{
"id": 1021302,
"seq": 10213020,
"bondsGroupId": 10213,
"assetbundleName": "honorname_0213_02",
"name": "仲良し兄妹",
"description": "天馬咲希と天馬司のキズナランクを26まで上げよう。"
},
{
"id": 1021303,
"seq": 10213030,
"bondsGroupId": 10213,
"assetbundleName": "honorname_0213_03",
"name": "ひな祭り",
"description": "天馬咲希と天馬司のキズナランクを46まで上げよう。"
},
{
"id": 1021401,
"seq": 10214010,
"bondsGroupId": 10214,
"assetbundleName": "honorname_0214_01",
"name": "いつでもワクワク!",
"description": "天馬咲希と鳳えむのキズナランクを5まで上げよう。"
},
{
"id": 1021402,
"seq": 10214020,
"bondsGroupId": 10214,
"assetbundleName": "honorname_0214_02",
"name": "笑顔の裏で…",
"description": "天馬咲希と鳳えむのキズナランクを26まで上げよう。"
},
{
"id": 1021403,
"seq": 10214030,
"bondsGroupId": 10214,
"assetbundleName": "honorname_0214_03",
"name": "支えられて今がある",
"description": "天馬咲希と鳳えむのキズナランクを46まで上げよう。"
},
{
"id": 1022001,
"seq": 10220010,
"bondsGroupId": 10220,
"assetbundleName": "honorname_0220_01",
"name": "ザ・ムードメーカー",
"description": "天馬咲希と暁山瑞希のキズナランクを5まで上げよう。"
},
{
"id": 1022002,
"seq": 10220020,
"bondsGroupId": 10220,
"assetbundleName": "honorname_0220_02",
"name": "意外と職人タイプ",
"description": "天馬咲希と暁山瑞希のキズナランクを26まで上げよう。"
},
{
"id": 1022003,
"seq": 10220030,
"bondsGroupId": 10220,
"assetbundleName": "honorname_0220_03",
"name": "優しい家族に支えられて",
"description": "天馬咲希と暁山瑞希のキズナランクを46まで上げよう。"
},
{
"id": 1022101,
"seq": 10221010,
"bondsGroupId": 10221,
"assetbundleName": "honorname_0221_01",
"name": "髪型お揃い",
"description": "天馬咲希と初音ミクのキズナランクを5まで上げよう。"
},
{
"id": 1022102,
"seq": 10221020,
"bondsGroupId": 10221,
"assetbundleName": "honorname_0221_02",
"name": "かっこいい先輩",
"description": "天馬咲希と初音ミクのキズナランクを26まで上げよう。"
},
{
"id": 1022103,
"seq": 10221030,
"bondsGroupId": 10221,
"assetbundleName": "honorname_0221_03",
"name": "星空の下の演奏会",
"description": "天馬咲希と初音ミクのキズナランクを46まで上げよう。"
},
{
"id": 1022201,
"seq": 10222010,
"bondsGroupId": 10222,
"assetbundleName": "honorname_0222_01",
"name": "オシャレが気になるお年頃",
"description": "天馬咲希と鏡音リンのキズナランクを5まで上げよう。"
},
{
"id": 1022202,
"seq": 10222020,
"bondsGroupId": 10222,
"assetbundleName": "honorname_0222_02",
"name": "JK語でBFF",
"description": "天馬咲希と鏡音リンのキズナランクを26まで上げよう。"
},
{
"id": 1022203,
"seq": 10222030,
"bondsGroupId": 10222,
"assetbundleName": "honorname_0222_03",
"name": "キラキラのメロディー",
"description": "天馬咲希と鏡音リンのキズナランクを46まで上げよう。"
},
{
"id": 1022301,
"seq": 10223010,
"bondsGroupId": 10223,
"assetbundleName": "honorname_0223_01",
"name": "出せていない答えを探して",
"description": "天馬咲希と鏡音レンのキズナランクを5まで上げよう。"
},
{
"id": 1022302,
"seq": 10223020,
"bondsGroupId": 10223,
"assetbundleName": "honorname_0223_02",
"name": "オレは結構好きだけどな",
"description": "天馬咲希と鏡音レンのキズナランクを26まで上げよう。"
},
{
"id": 1022303,
"seq": 10223030,
"bondsGroupId": 10223,
"assetbundleName": "honorname_0223_03",
"name": "相手の想いも受け止めて",
"description": "天馬咲希と鏡音レンのキズナランクを46まで上げよう。"
},
{
"id": 1022401,
"seq": 10224010,
"bondsGroupId": 10224,
"assetbundleName": "honorname_0224_01",
"name": "なんでも話せる先輩",
"description": "天馬咲希と巡音ルカのキズナランクを5まで上げよう。"
},
{
"id": 1022402,
"seq": 10224020,
"bondsGroupId": 10224,
"assetbundleName": "honorname_0224_02",
"name": "屋上の相談",
"description": "天馬咲希と巡音ルカのキズナランクを26まで上げよう。"
},
{
"id": 1022403,
"seq": 10224030,
"bondsGroupId": 10224,
"assetbundleName": "honorname_0224_03",
"name": "涙を拭って",
"description": "天馬咲希と巡音ルカのキズナランクを46まで上げよう。"
},
{
"id": 1022601,
"seq": 10226010,
"bondsGroupId": 10226,
"assetbundleName": "honorname_0226_01",
"name": "話好きと口下手さん",
"description": "天馬咲希とKAITOのキズナランクを5まで上げよう。"
},
{
"id": 1022602,
"seq": 10226020,
"bondsGroupId": 10226,
"assetbundleName": "honorname_0226_02",
"name": "メロディーは感覚派",
"description": "天馬咲希とKAITOのキズナランクを26まで上げよう。"
},
{
"id": 1022603,
"seq": 10226030,
"bondsGroupId": 10226,
"assetbundleName": "honorname_0226_03",
"name": "すくい上げた記憶",
"description": "天馬咲希とKAITOのキズナランクを46まで上げよう。"
},
{
"id": 1030401,
"seq": 10304010,
"bondsGroupId": 10304,
"assetbundleName": "honorname_0304_01",
"name": "リズム隊",
"description": "望月穂波と日野森志歩のキズナランクを5まで上げよう。"
},
{
"id": 1030402,
"seq": 10304020,
"bondsGroupId": 10304,
"assetbundleName": "honorname_0304_02",
"name": "もっと頼って",
"description": "望月穂波と日野森志歩のキズナランクを26まで上げよう。"
},
{
"id": 1030403,
"seq": 10304030,
"bondsGroupId": 10304,
"assetbundleName": "honorname_0304_03",
"name": "すれ違いを乗り越えて",
"description": "望月穂波と日野森志歩のキズナランクを46まで上げよう。"
},
{
"id": 1030501,
"seq": 10305010,
"bondsGroupId": 10305,
"assetbundleName": "honorname_0305_01",
"name": "犬のお散歩友達",
"description": "望月穂波と花里みのりのキズナランクを5まで上げよう。"
},
{
"id": 1030502,
"seq": 10305020,
"bondsGroupId": 10305,
"assetbundleName": "honorname_0305_02",
"name": "しばおとサモちゃん",
"description": "望月穂波と花里みのりのキズナランクを26まで上げよう。"
},
{
"id": 1030503,
"seq": 10305030,
"bondsGroupId": 10305,
"assetbundleName": "honorname_0305_03",
"name": "勇気と希望を胸に",
"description": "望月穂波と花里みのりのキズナランクを46まで上げよう。"
},
{
"id": 1030601,
"seq": 10306010,
"bondsGroupId": 10306,
"assetbundleName": "honorname_0306_01",
"name": "文武両道",
"description": "望月穂波と桐谷遥のキズナランクを5まで上げよう。"
},
{
"id": 1030602,
"seq": 10306020,
"bondsGroupId": 10306,
"assetbundleName": "honorname_0306_02",
"name": "ワンマンの先輩",
"description": "望月穂波と桐谷遥のキズナランクを26まで上げよう。"
},
{
"id": 1030603,
"seq": 10306030,
"bondsGroupId": 10306,
"assetbundleName": "honorname_0306_03",
"name": "好きなものに一途",
"description": "望月穂波と桐谷遥のキズナランクを46まで上げよう。"
},
{
"id": 1030801,
"seq": 10308010,
"bondsGroupId": 10308,
"assetbundleName": "honorname_0308_01",
"name": "美化委員のお姉さん",
"description": "望月穂波と日野森雫のキズナランクを5まで上げよう。"
},
{
"id": 1030802,
"seq": 10308020,
"bondsGroupId": 10308,
"assetbundleName": "honorname_0308_02",
"name": "タコとおはぎ",
"description": "望月穂波と日野森雫のキズナランクを26まで上げよう。"
},
{
"id": 1030803,
"seq": 10308030,
"bondsGroupId": 10308,
"assetbundleName": "honorname_0308_03",
"name": "話題の中心は志歩",
"description": "望月穂波と日野森雫のキズナランクを46まで上げよう。"
},
{
"id": 1031301,
"seq": 10313010,
"bondsGroupId": 10313,
"assetbundleName": "honorname_0313_01",
"name": "チーム保護者",
"description": "望月穂波と天馬司のキズナランクを5まで上げよう。"
},
{
"id": 1031302,
"seq": 10313020,
"bondsGroupId": 10313,
"assetbundleName": "honorname_0313_02",
"name": "咲希を見守り隊",
"description": "望月穂波と天馬司のキズナランクを26まで上げよう。"
},
{
"id": 1031303,
"seq": 10313030,
"bondsGroupId": 10313,
"assetbundleName": "honorname_0313_03",
"name": "絶大な包容力",
"description": "望月穂波と天馬司のキズナランクを46まで上げよう。"
},
{
"id": 1031401,
"seq": 10314010,
"bondsGroupId": 10314,
"assetbundleName": "honorname_0314_01",
"name": "本当に同級生?",
"description": "望月穂波と鳳えむのキズナランクを5まで上げよう。"
},
{
"id": 1031402,
"seq": 10314020,
"bondsGroupId": 10314,
"assetbundleName": "honorname_0314_02",
"name": "アップルパイ天国",
"description": "望月穂波と鳳えむのキズナランクを26まで上げよう。"
},
{
"id": 1031403,
"seq": 10314030,
"bondsGroupId": 10314,
"assetbundleName": "honorname_0314_03",
"name": "もう寂しくないね!",
"description": "望月穂波と鳳えむのキズナランクを46まで上げよう。"
},
{
"id": 1031701,
"seq": 10317010,
"bondsGroupId": 10317,
"assetbundleName": "honorname_0317_01",
"name": "お世話します、されます",
"description": "望月穂波と宵崎奏のキズナランクを5まで上げよう。"
},
{
"id": 1031702,
"seq": 10317020,
"bondsGroupId": 10317,
"assetbundleName": "honorname_0317_02",
"name": "食卓でアップルパイを",
"description": "望月穂波と宵崎奏のキズナランクを26まで上げよう。"
},
{
"id": 1031703,
"seq": 10317030,
"bondsGroupId": 10317,
"assetbundleName": "honorname_0317_03",
"name": "築いてきた信頼",
"description": "望月穂波と宵崎奏のキズナランクを46まで上げよう。"
},
{
"id": 1031801,
"seq": 10318010,
"bondsGroupId": 10318,
"assetbundleName": "honorname_0318_01",
"name": "みんなに頼られる優等生",
"description": "望月穂波と朝比奈まふゆのキズナランクを5まで上げよう。"
},
{
"id": 1031802,
"seq": 10318020,
"bondsGroupId": 10318,
"assetbundleName": "honorname_0318_02",
"name": "太陽ではなくライオン",
"description": "望月穂波と朝比奈まふゆのキズナランクを26まで上げよう。"
},
{
"id": 1031803,
"seq": 10318030,
"bondsGroupId": 10318,
"assetbundleName": "honorname_0318_03",
"name": "もし、力になれるなら",
"description": "望月穂波と朝比奈まふゆのキズナランクを46まで上げよう。"
},
{
"id": 1031901,
"seq": 10319010,
"bondsGroupId": 10319,
"assetbundleName": "honorname_0319_01",
"name": "ナマコじゃなくて犬です…",
"description": "望月穂波と東雲絵名のキズナランクを5まで上げよう。"
},
{
"id": 1031902,
"seq": 10319020,
"bondsGroupId": 10319,
"assetbundleName": "honorname_0319_02",
"name": "もうお母さんじゃん",
"description": "望月穂波と東雲絵名のキズナランクを26まで上げよう。"
},
{
"id": 1031903,
"seq": 10319030,
"bondsGroupId": 10319,
"assetbundleName": "honorname_0319_03",
"name": "わたしのワニを描いて",
"description": "望月穂波と東雲絵名のキズナランクを46まで上げよう。"
},
{
"id": 1032101,
"seq": 10321010,
"bondsGroupId": 10321,
"assetbundleName": "honorname_0321_01",
"name": "リードと土台の音",
"description": "望月穂波と初音ミクのキズナランクを5まで上げよう。"
},
{
"id": 1032102,
"seq": 10321020,
"bondsGroupId": 10321,
"assetbundleName": "honorname_0321_02",
"name": "演奏だけはブレないように",
"description": "望月穂波と初音ミクのキズナランクを26まで上げよう。"
},
{
"id": 1032103,
"seq": 10321030,
"bondsGroupId": 10321,
"assetbundleName": "honorname_0321_03",
"name": "星座の見かた教えて",
"description": "望月穂波と初音ミクのキズナランクを46まで上げよう。"
},
{
"id": 1032301,
"seq": 10323010,
"bondsGroupId": 10323,
"assetbundleName": "honorname_0323_01",
"name": "自分らしい絵を",
"description": "望月穂波と鏡音レンのキズナランクを5まで上げよう。"
},
{
"id": 1032302,
"seq": 10323020,
"bondsGroupId": 10323,
"assetbundleName": "honorname_0323_02",
"name": "ケンカしたっていいだろ",
"description": "望月穂波と鏡音レンのキズナランクを26まで上げよう。"