80ee00a8-275d-438b-8779-5e372a66f3ad.json
65.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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
{
"__type__": "cc.JsonAsset",
"_name": "config",
"_objFlags": 0,
"_native": "",
"json": {
"role": {
"1": {
"id": 1,
"name": "旁白",
"RoleType": 1
},
"2": {
"id": 2,
"name": "梵优",
"RoleType": 2
},
"3": {
"id": 3,
"name": "艾尔",
"RoleType": 3
},
"4": {
"id": 4,
"name": "该隐",
"RoleType": 3
},
"5": {
"id": 5,
"name": "系统",
"RoleType": 3
},
"6": {
"id": 6,
"name": "老师",
"RoleType": 4
},
"7": {
"id": 7,
"name": "同学A",
"RoleType": 4
},
"8": {
"id": 8,
"name": "芙",
"RoleType": 3
},
"9": {
"id": 9,
"name": "艾尔",
"RoleType": 3
},
"10": {
"id": 10,
"name": "艾尔",
"RoleType": 3
},
"11": {
"id": 11,
"name": "同学B",
"RoleType": 4
},
"12": {
"id": 12,
"name": "路人A",
"RoleType": 4
},
"13": {
"id": 13,
"name": "路人B",
"RoleType": 4
},
"14": {
"id": 14,
"name": "艾尔",
"RoleType": 3
},
"15": {
"id": 15,
"name": "列夫",
"RoleType": 3
},
"16": {
"id": 16,
"name": "美食部学生A",
"RoleType": 4
},
"17": {
"id": 17,
"name": "美食部部长",
"RoleType": 4
},
"18": {
"id": 18,
"name": "惊悚部部长",
"RoleType": 4
},
"19": {
"id": 19,
"name": "表演部部长",
"RoleType": 4
},
"20": {
"id": 20,
"name": "惊悚部学生A",
"RoleType": 4
},
"21": {
"id": 21,
"name": "惊悚部学生B",
"RoleType": 4
},
"22": {
"id": 22,
"name": "布鲁斯",
"RoleType": 4
},
"23": {
"id": 23,
"name": "该隐",
"RoleType": 3
},
"24": {
"id": 24,
"name": "未知号码",
"RoleType": 4
},
"25": {
"id": 25,
"name": "梵优",
"RoleType": 3
},
"26": {
"id": 26,
"name": "艾尔",
"RoleType": 3
},
"27": {
"id": 27,
"name": "列夫",
"RoleType": 3
},
"28": {
"id": 28,
"name": "猎人A",
"RoleType": 4
},
"29": {
"id": 29,
"name": "猎人B",
"RoleType": 4
},
"30": {
"id": 30,
"name": "猎人C",
"RoleType": 4
},
"31": {
"id": 31,
"name": "主持人",
"RoleType": 4
},
"32": {
"id": 32,
"name": "该隐",
"RoleType": 3
},
"33": {
"id": 33,
"name": "村民A",
"RoleType": 4
},
"34": {
"id": 34,
"name": "村民B",
"RoleType": 4
},
"35": {
"id": 35,
"name": "村民C",
"RoleType": 4
},
"36": {
"id": 36,
"name": "工作人员",
"RoleType": 4
},
"37": {
"id": 37,
"name": "莱恩",
"RoleType": 3
},
"38": {
"id": 38,
"name": "鲁敏",
"RoleType": 3
},
"39": {
"id": 39,
"name": "司机",
"RoleType": 4
},
"40": {
"id": 40,
"name": "小女孩",
"RoleType": 4
},
"41": {
"id": 41,
"name": "母亲",
"RoleType": 4
},
"42": {
"id": 42,
"name": "父亲",
"RoleType": 4
},
"43": {
"id": 43,
"name": "???",
"RoleType": 4
},
"44": {
"id": 44,
"name": "该隐",
"RoleType": 3
}
},
"sceneType": {
"1": {
"id": 1,
"name": "消息",
"table": "MessageSceneConfig",
"extra": ""
},
"2": {
"id": 2,
"name": "朋友圈",
"table": "MomentSceneConfig",
"extra": "{\"replyId\": \"table.role\"}"
},
"3": {
"id": 3,
"name": "约会",
"table": "DateSceneConfig",
"extra": "{\"face\": \"enum.FaceType\", \"portrait\":\"table.role\",\"portraitFace\": \"enum.FaceType\"}"
},
"4": {
"id": 4,
"name": "电话",
"table": "role",
"extra": ""
},
"5": {
"id": 5,
"name": "阻断",
"table": "",
"extra": ""
}
},
"CatBubbleConfig": {
"1": {
"id": 1,
"type": 1,
"content": "艾尔今天变成你的男朋友了吗?"
},
"2": {
"id": 2,
"type": 1,
"content": "今天摆脱单身了吗?"
},
"3": {
"id": 3,
"type": 1,
"content": "【模仿艾尔】梵优,你都不会尴尬的吗?"
},
"4": {
"id": 4,
"type": 1,
"content": "我睡床你睡地下吧?"
},
"5": {
"id": 5,
"type": 1,
"content": "喵呜~"
},
"6": {
"id": 6,
"type": 2,
"content": "骂我的声音太小了!你没吃饭吗!"
},
"7": {
"id": 7,
"type": 2,
"content": "爱丽丝,是该隐恋人的名字"
},
"8": {
"id": 8,
"type": 2,
"content": "艾尔的过去是什么样的呢?"
},
"9": {
"id": 9,
"type": 2,
"content": "吸血鬼都讨厌教堂"
},
"10": {
"id": 10,
"type": 2,
"content": "凯瑟琳大教堂里似乎有很厉害的血阵"
},
"11": {
"id": 11,
"type": 2,
"content": "半血血族无法留下印记"
},
"12": {
"id": 12,
"type": 2,
"content": "艾尔好像很喜欢蔷薇花"
},
"13": {
"id": 13,
"type": 2,
"content": "该隐是超级厉害的血族"
},
"14": {
"id": 14,
"type": 2,
"content": "我是一只可爱的小猫咪~"
},
"15": {
"id": 15,
"type": 2,
"content": "命运无法改变"
},
"16": {
"id": 16,
"type": 2,
"content": "我想吃艾尔做的爱~心~早~餐~"
},
"17": {
"id": 17,
"type": 2,
"content": "猜猜你为什么会穿越~"
},
"18": {
"id": 18,
"type": 2,
"content": "【模仿艾尔】梵优,过来~"
},
"19": {
"id": 19,
"type": 2,
"content": "你是不是给我喂了劣质猫粮?"
},
"20": {
"id": 20,
"type": 2,
"content": "滚滚长江东逝水啊啊啊!!!"
},
"21": {
"id": 21,
"type": 2,
"content": "你最遗憾的是什么事?"
},
"22": {
"id": 22,
"type": 2,
"content": "艾尔的酒品很差!"
},
"23": {
"id": 23,
"type": 2,
"content": "吸血鬼最害怕的就是火焰"
},
"24": {
"id": 24,
"type": 2,
"content": "芙最喜欢吃甜点了~"
},
"25": {
"id": 25,
"type": 2,
"content": "艾尔没有自愈能力"
},
"26": {
"id": 26,
"type": 2,
"content": "看到的,不一定是真相"
},
"27": {
"id": 27,
"type": 2,
"content": "通常情况下,血族不会在白天出现"
},
"28": {
"id": 28,
"type": 2,
"content": "艾尔是个幼稚的吸血鬼"
},
"29": {
"id": 29,
"type": 2,
"content": "艾尔是个双标的吸血鬼"
},
"30": {
"id": 30,
"type": 2,
"content": "艾尔是个没素质的吸血鬼"
},
"31": {
"id": 31,
"type": 2,
"content": "梵优喜欢吃炸酱面吗?"
},
"32": {
"id": 32,
"type": 2,
"content": "你叠的被子还没我叠的整齐"
},
"33": {
"id": 33,
"type": 2,
"content": "猫都生活得比你精致(ಥ﹏ಥ)"
},
"34": {
"id": 34,
"type": 2,
"content": "喜欢的话就去表白呀~"
},
"35": {
"id": 35,
"type": 2,
"content": "亚伯的残疾好像和艾尔有关"
},
"36": {
"id": 36,
"type": 2,
"content": "恶魔,还是神明?"
},
"37": {
"id": 37,
"type": 2,
"content": "如果重新来一次……"
},
"38": {
"id": 38,
"type": 2,
"content": "你无法挣脱命运"
},
"39": {
"id": 39,
"type": 2,
"content": "这一次,会幸福的"
},
"40": {
"id": 40,
"type": 2,
"content": "你要去接他回家吗?"
},
"41": {
"id": 41,
"type": 2,
"content": "看到这碗猫粮了吗?踢翻都不给你"
},
"42": {
"id": 42,
"type": 2,
"content": "我跟你说个好消息!今天..."
},
"43": {
"id": 43,
"type": 2,
"content": "黑艾尔其实是..."
}
},
"CatFoodConfig": {
"1": {
"id": 1,
"name": "猫粮",
"limitAdEveryDay": 3,
"numberEveryAd": 2,
"exp": 20,
"introduction": "通过看广告、奖励、分享服装等方式获取,可用于饭统的升级。"
},
"2": {
"id": 2,
"name": "罐头",
"limitAdEveryDay": 0,
"numberEveryAd": 0,
"exp": 50,
"introduction": "通过奖励等方式领取,可用于饭统升级。"
}
},
"CatLevelConfig": {
"1": {
"id": 1,
"level": 0,
"totalExp": 0,
"expForLevelUp": 100
},
"2": {
"id": 2,
"level": 1,
"totalExp": 100,
"expForLevelUp": 150
},
"3": {
"id": 3,
"level": 2,
"totalExp": 250,
"expForLevelUp": 250
},
"4": {
"id": 4,
"level": 3,
"totalExp": 500,
"expForLevelUp": 400
},
"5": {
"id": 5,
"level": 4,
"totalExp": 900,
"expForLevelUp": 600
},
"6": {
"id": 6,
"level": 5,
"totalExp": 1500,
"expForLevelUp": 850
},
"7": {
"id": 7,
"level": 6,
"totalExp": 2350,
"expForLevelUp": 1150
},
"8": {
"id": 8,
"level": 7,
"totalExp": 3500,
"expForLevelUp": 1500
},
"9": {
"id": 9,
"level": 8,
"totalExp": 5000,
"expForLevelUp": 1900
},
"10": {
"id": 10,
"level": 9,
"totalExp": 6900,
"expForLevelUp": 2400
},
"11": {
"id": 11,
"level": 10,
"totalExp": 9300,
"expForLevelUp": 0
}
},
"CatRewardConfig": {
"1": {
"id": 1,
"rewardType": 1,
"rewardUnlockCondition": 1,
"rewardTaskDescription": "登录第一天",
"CatFoodNumber": 5,
"CannedNumber": 3,
"ClothesId": 0
},
"2": {
"id": 2,
"rewardType": 1,
"rewardUnlockCondition": 2,
"rewardTaskDescription": "登录第二天",
"CatFoodNumber": 4,
"CannedNumber": 1,
"ClothesId": 0
},
"3": {
"id": 3,
"rewardType": 1,
"rewardUnlockCondition": 3,
"rewardTaskDescription": "登录第三天",
"CatFoodNumber": 3,
"CannedNumber": 1,
"ClothesId": 0
},
"4": {
"id": 4,
"rewardType": 1,
"rewardUnlockCondition": 4,
"rewardTaskDescription": "登录第四天",
"CatFoodNumber": 3,
"CannedNumber": 2,
"ClothesId": 0
},
"5": {
"id": 5,
"rewardType": 1,
"rewardUnlockCondition": 5,
"rewardTaskDescription": "登录第五天",
"CatFoodNumber": 3,
"CannedNumber": 2,
"ClothesId": 0
},
"6": {
"id": 6,
"rewardType": 1,
"rewardUnlockCondition": 6,
"rewardTaskDescription": "登录第六天",
"CatFoodNumber": 3,
"CannedNumber": 2,
"ClothesId": 0
},
"7": {
"id": 7,
"rewardType": 1,
"rewardUnlockCondition": 7,
"rewardTaskDescription": "登录第七天",
"CatFoodNumber": 4,
"CannedNumber": 1,
"ClothesId": 0
},
"8": {
"id": 8,
"rewardType": 1,
"rewardUnlockCondition": 8,
"rewardTaskDescription": "登录第八天",
"CatFoodNumber": 6,
"CannedNumber": 4,
"ClothesId": 0
},
"9": {
"id": 9,
"rewardType": 1,
"rewardUnlockCondition": 9,
"rewardTaskDescription": "登录第九天",
"CatFoodNumber": 4,
"CannedNumber": 4,
"ClothesId": 0
},
"10": {
"id": 10,
"rewardType": 1,
"rewardUnlockCondition": 10,
"rewardTaskDescription": "登录第十天",
"CatFoodNumber": 5,
"CannedNumber": 3,
"ClothesId": 0
},
"11": {
"id": 11,
"rewardType": 2,
"rewardUnlockCondition": 1,
"rewardTaskDescription": "饭统等级到达1级",
"CatFoodNumber": 3,
"CannedNumber": 0,
"ClothesId": 22
},
"12": {
"id": 12,
"rewardType": 2,
"rewardUnlockCondition": 2,
"rewardTaskDescription": "饭统等级到达2级",
"CatFoodNumber": 3,
"CannedNumber": 2,
"ClothesId": 0
},
"13": {
"id": 13,
"rewardType": 2,
"rewardUnlockCondition": 3,
"rewardTaskDescription": "饭统等级到达3级",
"CatFoodNumber": 4,
"CannedNumber": 3,
"ClothesId": 0
},
"14": {
"id": 14,
"rewardType": 2,
"rewardUnlockCondition": 4,
"rewardTaskDescription": "饭统等级到达4级",
"CatFoodNumber": 4,
"CannedNumber": 3,
"ClothesId": 0
},
"15": {
"id": 15,
"rewardType": 2,
"rewardUnlockCondition": 5,
"rewardTaskDescription": "饭统等级到达5级",
"CatFoodNumber": 6,
"CannedNumber": 5,
"ClothesId": 0
},
"16": {
"id": 16,
"rewardType": 2,
"rewardUnlockCondition": 6,
"rewardTaskDescription": "饭统等级到达6级",
"CatFoodNumber": 4,
"CannedNumber": 3,
"ClothesId": 0
},
"17": {
"id": 17,
"rewardType": 2,
"rewardUnlockCondition": 7,
"rewardTaskDescription": "饭统等级到达7级",
"CatFoodNumber": 7,
"CannedNumber": 0,
"ClothesId": 24
},
"18": {
"id": 18,
"rewardType": 2,
"rewardUnlockCondition": 8,
"rewardTaskDescription": "饭统等级到达8级",
"CatFoodNumber": 8,
"CannedNumber": 4,
"ClothesId": 0
},
"19": {
"id": 19,
"rewardType": 2,
"rewardUnlockCondition": 9,
"rewardTaskDescription": "饭统等级到达9级",
"CatFoodNumber": 9,
"CannedNumber": 4,
"ClothesId": 0
},
"20": {
"id": 20,
"rewardType": 2,
"rewardUnlockCondition": 10,
"rewardTaskDescription": "饭统等级到达10级",
"CatFoodNumber": 0,
"CannedNumber": 0,
"ClothesId": 23
},
"21": {
"id": 21,
"rewardType": 3,
"rewardUnlockCondition": 1,
"rewardTaskDescription": "完成第1章主线剧情",
"CatFoodNumber": 4,
"CannedNumber": 1,
"ClothesId": 0
},
"22": {
"id": 22,
"rewardType": 3,
"rewardUnlockCondition": 10,
"rewardTaskDescription": "完成第10章主线剧情",
"CatFoodNumber": 4,
"CannedNumber": 1,
"ClothesId": 0
},
"23": {
"id": 23,
"rewardType": 3,
"rewardUnlockCondition": 20,
"rewardTaskDescription": "完成第20章主线剧情",
"CatFoodNumber": 4,
"CannedNumber": 1,
"ClothesId": 0
},
"24": {
"id": 24,
"rewardType": 3,
"rewardUnlockCondition": 40,
"rewardTaskDescription": "完成第40章主线剧情",
"CatFoodNumber": 0,
"CannedNumber": 3,
"ClothesId": 21
},
"25": {
"id": 25,
"rewardType": 3,
"rewardUnlockCondition": 60,
"rewardTaskDescription": "完成第60章主线剧情",
"CatFoodNumber": 4,
"CannedNumber": 2,
"ClothesId": 0
},
"26": {
"id": 26,
"rewardType": 3,
"rewardUnlockCondition": 80,
"rewardTaskDescription": "完成第80章主线剧情",
"CatFoodNumber": 8,
"CannedNumber": 3,
"ClothesId": 0
},
"27": {
"id": 27,
"rewardType": 3,
"rewardUnlockCondition": 100,
"rewardTaskDescription": "完成第100章主线剧情",
"CatFoodNumber": 9,
"CannedNumber": 4,
"ClothesId": 0
},
"28": {
"id": 28,
"rewardType": 1,
"rewardUnlockCondition": 11,
"rewardTaskDescription": "登录第十一天",
"CatFoodNumber": 5,
"CannedNumber": 5,
"ClothesId": 0
},
"29": {
"id": 29,
"rewardType": 1,
"rewardUnlockCondition": 12,
"rewardTaskDescription": "登录第十二天",
"CatFoodNumber": 6,
"CannedNumber": 5,
"ClothesId": 0
},
"30": {
"id": 30,
"rewardType": 1,
"rewardUnlockCondition": 13,
"rewardTaskDescription": "登录第十三天",
"CatFoodNumber": 5,
"CannedNumber": 4,
"ClothesId": 0
},
"31": {
"id": 31,
"rewardType": 1,
"rewardUnlockCondition": 14,
"rewardTaskDescription": "登录第十四天",
"CatFoodNumber": 6,
"CannedNumber": 5,
"ClothesId": 0
},
"32": {
"id": 32,
"rewardType": 1,
"rewardUnlockCondition": 15,
"rewardTaskDescription": "登录第十五天",
"CatFoodNumber": 5,
"CannedNumber": 5,
"ClothesId": 0
},
"33": {
"id": 33,
"rewardType": 1,
"rewardUnlockCondition": 16,
"rewardTaskDescription": "登录第十六天",
"CatFoodNumber": 6,
"CannedNumber": 5,
"ClothesId": 0
},
"34": {
"id": 34,
"rewardType": 1,
"rewardUnlockCondition": 17,
"rewardTaskDescription": "登录第十七天",
"CatFoodNumber": 7,
"CannedNumber": 4,
"ClothesId": 0
},
"35": {
"id": 35,
"rewardType": 1,
"rewardUnlockCondition": 18,
"rewardTaskDescription": "登录第十八天",
"CatFoodNumber": 8,
"CannedNumber": 5,
"ClothesId": 0
},
"36": {
"id": 36,
"rewardType": 1,
"rewardUnlockCondition": 19,
"rewardTaskDescription": "登录第十九天",
"CatFoodNumber": 8,
"CannedNumber": 4,
"ClothesId": 0
},
"37": {
"id": 37,
"rewardType": 1,
"rewardUnlockCondition": 20,
"rewardTaskDescription": "登录第二十天",
"CatFoodNumber": 9,
"CannedNumber": 5,
"ClothesId": 0
}
},
"CharacterVoiceConfig": {},
"DateSceneConfig": {
"1": {
"id": 1,
"DateType": 1,
"chapter_index": 1,
"name": 5,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 7166,
"ads": 0
},
"2": {
"id": 2,
"DateType": 1,
"chapter_index": 1,
"name": 6,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 7001,
"ads": 0
},
"3": {
"id": 3,
"DateType": 1,
"chapter_index": 1,
"name": 7,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 7200,
"ads": 0
},
"4": {
"id": 4,
"DateType": 1,
"chapter_index": 1,
"name": 8,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 7347,
"ads": 0
},
"5": {
"id": 5,
"DateType": 1,
"chapter_index": 1,
"name": 9,
"background": "date_ui_fanpaijieju",
"start_plot_id": 7467,
"ads": 0
},
"6": {
"id": 6,
"DateType": 1,
"chapter_index": 1,
"name": 10,
"background": "date_ui_nvzhudeng",
"start_plot_id": 7595,
"ads": 0
},
"7": {
"id": 7,
"DateType": 1,
"chapter_index": 1,
"name": 11,
"background": "date_ui_nvzhudeng",
"start_plot_id": 7677,
"ads": 0
},
"8": {
"id": 8,
"DateType": 1,
"chapter_index": 1,
"name": 12,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 7748,
"ads": 0
},
"9": {
"id": 9,
"DateType": 1,
"chapter_index": 1,
"name": 13,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 7848,
"ads": 0
},
"10": {
"id": 10,
"DateType": 1,
"chapter_index": 1,
"name": 14,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 7940,
"ads": 0
},
"11": {
"id": 11,
"DateType": 1,
"chapter_index": 1,
"name": 16,
"background": "date_ui_fanpaijieju",
"start_plot_id": 8073,
"ads": 0
},
"12": {
"id": 12,
"DateType": 1,
"chapter_index": 1,
"name": 17,
"background": "date_ui_fanpaijieju",
"start_plot_id": 8151,
"ads": 0
},
"13": {
"id": 13,
"DateType": 1,
"chapter_index": 1,
"name": 18,
"background": "date_ui_fanpaijieju",
"start_plot_id": 8244,
"ads": 0
},
"14": {
"id": 14,
"DateType": 1,
"chapter_index": 1,
"name": 19,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 8309,
"ads": 0
},
"15": {
"id": 15,
"DateType": 1,
"chapter_index": 1,
"name": 21,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 8457,
"ads": 0
},
"16": {
"id": 16,
"DateType": 1,
"chapter_index": 1,
"name": 22,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 8616,
"ads": 0
},
"17": {
"id": 17,
"DateType": 1,
"chapter_index": 1,
"name": 23,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 8618,
"ads": 0
},
"18": {
"id": 18,
"DateType": 1,
"chapter_index": 1,
"name": 24,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 8686,
"ads": 0
},
"19": {
"id": 19,
"DateType": 1,
"chapter_index": 1,
"name": 25,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 8775,
"ads": 0
},
"20": {
"id": 20,
"DateType": 1,
"chapter_index": 1,
"name": 26,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 8891,
"ads": 0
},
"21": {
"id": 21,
"DateType": 1,
"chapter_index": 1,
"name": 27,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 8974,
"ads": 0
},
"22": {
"id": 22,
"DateType": 1,
"chapter_index": 1,
"name": 28,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 9066,
"ads": 0
},
"23": {
"id": 23,
"DateType": 1,
"chapter_index": 1,
"name": 32,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 9186,
"ads": 0
},
"24": {
"id": 24,
"DateType": 1,
"chapter_index": 1,
"name": 33,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 9375,
"ads": 0
},
"25": {
"id": 25,
"DateType": 1,
"chapter_index": 1,
"name": 34,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 9379,
"ads": 0
},
"26": {
"id": 26,
"DateType": 1,
"chapter_index": 1,
"name": 35,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 9445,
"ads": 1
},
"27": {
"id": 27,
"DateType": 1,
"chapter_index": 1,
"name": 36,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 9524,
"ads": 1
},
"28": {
"id": 28,
"DateType": 1,
"chapter_index": 1,
"name": 37,
"background": "date_ui_nvzhudeng",
"start_plot_id": 9638,
"ads": 1
},
"29": {
"id": 29,
"DateType": 1,
"chapter_index": 1,
"name": 38,
"background": "date_ui_nvzhudeng",
"start_plot_id": 9757,
"ads": 1
},
"30": {
"id": 30,
"DateType": 1,
"chapter_index": 1,
"name": 39,
"background": "date_ui_nvzhudeng",
"start_plot_id": 9858,
"ads": 1
},
"31": {
"id": 31,
"DateType": 1,
"chapter_index": 1,
"name": 40,
"background": "date_ui_nvzhudeng",
"start_plot_id": 9935,
"ads": 1
},
"32": {
"id": 32,
"DateType": 1,
"chapter_index": 1,
"name": 41,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 10026,
"ads": 1
},
"33": {
"id": 33,
"DateType": 1,
"chapter_index": 1,
"name": 42,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 10110,
"ads": 1
},
"34": {
"id": 34,
"DateType": 1,
"chapter_index": 1,
"name": 43,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 10232,
"ads": 1
},
"35": {
"id": 35,
"DateType": 1,
"chapter_index": 1,
"name": 44,
"background": "date_ui_nvzhudeng",
"start_plot_id": 10309,
"ads": 1
},
"36": {
"id": 36,
"DateType": 1,
"chapter_index": 1,
"name": 45,
"background": "date_ui_nvzhudeng",
"start_plot_id": 10391,
"ads": 1
},
"37": {
"id": 37,
"DateType": 1,
"chapter_index": 1,
"name": 46,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 10499,
"ads": 1
},
"38": {
"id": 38,
"DateType": 1,
"chapter_index": 1,
"name": 47,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 10597,
"ads": 1
},
"39": {
"id": 39,
"DateType": 1,
"chapter_index": 1,
"name": 48,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 10684,
"ads": 1
},
"40": {
"id": 40,
"DateType": 1,
"chapter_index": 1,
"name": 49,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 10783,
"ads": 1
},
"41": {
"id": 41,
"DateType": 1,
"chapter_index": 1,
"name": 50,
"background": "date_ui_nvzhudeng",
"start_plot_id": 10856,
"ads": 1
},
"42": {
"id": 42,
"DateType": 1,
"chapter_index": 1,
"name": 51,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 11216,
"ads": 1
},
"43": {
"id": 43,
"DateType": 1,
"chapter_index": 1,
"name": 52,
"background": "date_ui_nvzhudeng",
"start_plot_id": 11232,
"ads": 1
},
"44": {
"id": 44,
"DateType": 1,
"chapter_index": 1,
"name": 54,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 11807,
"ads": 1
},
"45": {
"id": 45,
"DateType": 1,
"chapter_index": 1,
"name": 55,
"background": "date_ui_nvzhudeng",
"start_plot_id": 11457,
"ads": 1
},
"46": {
"id": 46,
"DateType": 1,
"chapter_index": 1,
"name": 56,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 11717,
"ads": 1
},
"47": {
"id": 47,
"DateType": 1,
"chapter_index": 1,
"name": 57,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 11812,
"ads": 1
},
"48": {
"id": 48,
"DateType": 1,
"chapter_index": 1,
"name": 58,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 11893,
"ads": 1
},
"49": {
"id": 49,
"DateType": 1,
"chapter_index": 1,
"name": 59,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 12003,
"ads": 1
},
"50": {
"id": 50,
"DateType": 1,
"chapter_index": 1,
"name": 60,
"background": "date_ui_yuelanzhen_yellow",
"start_plot_id": 12074,
"ads": 1
},
"51": {
"id": 51,
"DateType": 1,
"chapter_index": 1,
"name": 61,
"background": "date_ui_nvzhudeng",
"start_plot_id": 12190,
"ads": 1
},
"52": {
"id": 52,
"DateType": 1,
"chapter_index": 1,
"name": 63,
"background": "date_ui_nvzhudeng",
"start_plot_id": 12255,
"ads": 1
},
"53": {
"id": 53,
"DateType": 1,
"chapter_index": 1,
"name": 64,
"background": "date_ui_nvzhudeng",
"start_plot_id": 12359,
"ads": 1
},
"54": {
"id": 54,
"DateType": 1,
"chapter_index": 1,
"name": 65,
"background": "date_ui_nvzhudeng",
"start_plot_id": 12460,
"ads": 1
},
"55": {
"id": 55,
"DateType": 1,
"chapter_index": 1,
"name": 66,
"background": "date_ui_nvzhudeng",
"start_plot_id": 12573,
"ads": 1
},
"56": {
"id": 56,
"DateType": 1,
"chapter_index": 1,
"name": 67,
"background": "date_ui_nvzhudeng",
"start_plot_id": 12701,
"ads": 1
},
"57": {
"id": 57,
"DateType": 1,
"chapter_index": 1,
"name": 68,
"background": "date_ui_nvzhudeng",
"start_plot_id": 12802,
"ads": 1
},
"58": {
"id": 58,
"DateType": 1,
"chapter_index": 1,
"name": 69,
"background": "date_ui_nvzhudeng",
"start_plot_id": 12869,
"ads": 1
},
"59": {
"id": 59,
"DateType": 1,
"chapter_index": 1,
"name": 70,
"background": "date_ui_nvzhudeng",
"start_plot_id": 12942,
"ads": 1
},
"60": {
"id": 60,
"DateType": 1,
"chapter_index": 1,
"name": 71,
"background": "date_ui_nvzhudeng",
"start_plot_id": 13049,
"ads": 1
},
"61": {
"id": 61,
"DateType": 1,
"chapter_index": 1,
"name": 72,
"background": "date_ui_nvzhudeng",
"start_plot_id": 13141,
"ads": 1
},
"62": {
"id": 62,
"DateType": 1,
"chapter_index": 1,
"name": 73,
"background": "date_ui_nvzhudeng",
"start_plot_id": 13237,
"ads": 1
},
"63": {
"id": 63,
"DateType": 1,
"chapter_index": 1,
"name": 74,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 13318,
"ads": 1
},
"64": {
"id": 64,
"DateType": 1,
"chapter_index": 1,
"name": 75,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 13405,
"ads": 1
},
"65": {
"id": 65,
"DateType": 1,
"chapter_index": 1,
"name": 76,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 13492,
"ads": 1
},
"66": {
"id": 66,
"DateType": 1,
"chapter_index": 1,
"name": 77,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 13587,
"ads": 1
},
"67": {
"id": 67,
"DateType": 1,
"chapter_index": 1,
"name": 78,
"background": "date_ui_nvzhudeng",
"start_plot_id": 13686,
"ads": 1
},
"68": {
"id": 68,
"DateType": 1,
"chapter_index": 1,
"name": 79,
"background": "date_ui_nvzhudeng",
"start_plot_id": 13766,
"ads": 1
},
"69": {
"id": 69,
"DateType": 1,
"chapter_index": 1,
"name": 80,
"background": "date_ui_nvzhudeng",
"start_plot_id": 13857,
"ads": 1
},
"70": {
"id": 70,
"DateType": 1,
"chapter_index": 1,
"name": 81,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 13986,
"ads": 1
},
"71": {
"id": 71,
"DateType": 1,
"chapter_index": 1,
"name": 82,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 14070,
"ads": 1
},
"72": {
"id": 72,
"DateType": 1,
"chapter_index": 1,
"name": 83,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 14151,
"ads": 1
},
"73": {
"id": 73,
"DateType": 1,
"chapter_index": 1,
"name": 84,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 14287,
"ads": 1
},
"74": {
"id": 74,
"DateType": 1,
"chapter_index": 1,
"name": 85,
"background": "date_ui_gonghui",
"start_plot_id": 14378,
"ads": 1
},
"75": {
"id": 75,
"DateType": 1,
"chapter_index": 1,
"name": 87,
"background": "date_ui_gonghui",
"start_plot_id": 14506,
"ads": 1
},
"76": {
"id": 76,
"DateType": 1,
"chapter_index": 1,
"name": 88,
"background": "date_ui_gonghui",
"start_plot_id": 14601,
"ads": 1
},
"77": {
"id": 77,
"DateType": 1,
"chapter_index": 1,
"name": 89,
"background": "date_ui_gonghui",
"start_plot_id": 14681,
"ads": 1
},
"78": {
"id": 78,
"DateType": 1,
"chapter_index": 1,
"name": 90,
"background": "date_ui_gonghui",
"start_plot_id": 14798,
"ads": 1
},
"79": {
"id": 79,
"DateType": 1,
"chapter_index": 1,
"name": 91,
"background": "date_ui_gonghui",
"start_plot_id": 14907,
"ads": 1
},
"80": {
"id": 80,
"DateType": 1,
"chapter_index": 1,
"name": 92,
"background": "date_ui_gonghui",
"start_plot_id": 15800,
"ads": 1
},
"81": {
"id": 81,
"DateType": 1,
"chapter_index": 1,
"name": 93,
"background": "date_ui_gonghui",
"start_plot_id": 15801,
"ads": 1
},
"82": {
"id": 82,
"DateType": 1,
"chapter_index": 1,
"name": 94,
"background": "date_ui_gonghui",
"start_plot_id": 15336,
"ads": 1
},
"83": {
"id": 83,
"DateType": 1,
"chapter_index": 1,
"name": 95,
"background": "date_ui_gonghui",
"start_plot_id": 15614,
"ads": 1
},
"84": {
"id": 84,
"DateType": 1,
"chapter_index": 1,
"name": 96,
"background": "date_ui_gonghui",
"start_plot_id": 15696,
"ads": 1
},
"85": {
"id": 85,
"DateType": 1,
"chapter_index": 1,
"name": 97,
"background": "date_ui_gonghui",
"start_plot_id": 15806,
"ads": 1
},
"86": {
"id": 86,
"DateType": 1,
"chapter_index": 1,
"name": 98,
"background": "date_ui_gonghui",
"start_plot_id": 15911,
"ads": 1
},
"87": {
"id": 87,
"DateType": 1,
"chapter_index": 1,
"name": 99,
"background": "date_ui_gonghui",
"start_plot_id": 15988,
"ads": 1
},
"88": {
"id": 88,
"DateType": 1,
"chapter_index": 1,
"name": 100,
"background": "date_ui_gonghui",
"start_plot_id": 16122,
"ads": 1
},
"89": {
"id": 89,
"DateType": 1,
"chapter_index": 1,
"name": 101,
"background": "date_ui_gonghui",
"start_plot_id": 16212,
"ads": 1
},
"90": {
"id": 90,
"DateType": 1,
"chapter_index": 1,
"name": 102,
"background": "date_ui_gonghui",
"start_plot_id": 16370,
"ads": 1
},
"91": {
"id": 91,
"DateType": 1,
"chapter_index": 1,
"name": 103,
"background": "date_ui_gonghui",
"start_plot_id": 16455,
"ads": 1
},
"92": {
"id": 92,
"DateType": 1,
"chapter_index": 1,
"name": 104,
"background": "date_ui_gonghui",
"start_plot_id": 16544,
"ads": 1
},
"93": {
"id": 93,
"DateType": 1,
"chapter_index": 1,
"name": 105,
"background": "date_ui_bieshu_dark02",
"start_plot_id": 16634,
"ads": 0
},
"94": {
"id": 94,
"DateType": 1,
"chapter_index": 1,
"name": 106,
"background": "date_ui_gonghui",
"start_plot_id": 16814,
"ads": 1
},
"95": {
"id": 95,
"DateType": 1,
"chapter_index": 1,
"name": 107,
"background": "date_ui_gonghui",
"start_plot_id": 16917,
"ads": 1
},
"96": {
"id": 96,
"DateType": 1,
"chapter_index": 1,
"name": 108,
"background": "date_ui_gonghui",
"start_plot_id": 17110,
"ads": 1
},
"97": {
"id": 97,
"DateType": 1,
"chapter_index": 1,
"name": 109,
"background": "date_ui_gonghui",
"start_plot_id": 17233,
"ads": 1
},
"98": {
"id": 98,
"DateType": 1,
"chapter_index": 1,
"name": 110,
"background": "date_ui_gonghui",
"start_plot_id": 17401,
"ads": 1
},
"99": {
"id": 99,
"DateType": 1,
"chapter_index": 1,
"name": 111,
"background": "date_ui_gonghui",
"start_plot_id": 17361,
"ads": 1
},
"100": {
"id": 100,
"DateType": 1,
"chapter_index": 1,
"name": 112,
"background": "date_ui_gonghui",
"start_plot_id": 17414,
"ads": 1
},
"101": {
"id": 101,
"DateType": 1,
"chapter_index": 1,
"name": 113,
"background": "date_ui_gonghui",
"start_plot_id": 17434,
"ads": 1
}
},
"GuideManagerConfig": {
"1": {
"id": 1,
"GuideType": 2,
"param": 6,
"arrow_direction": 1
},
"2": {
"id": 2,
"GuideType": 3,
"param": 0,
"arrow_direction": 1
},
"3": {
"id": 3,
"GuideType": 4,
"param": 2,
"arrow_direction": 1
},
"4": {
"id": 4,
"GuideType": 1,
"param": 0,
"arrow_direction": 1
}
},
"I18nConfig": {
"1": {
"id": 1,
"cn": "梵优"
},
"2": {
"id": 2,
"cn": "艾尔"
},
"3": {
"id": 3,
"cn": "该隐"
},
"4": {
"id": 4,
"cn": "系统"
},
"5": {
"id": 5,
"cn": "约兰镇"
},
"6": {
"id": 6,
"cn": "月影别墅"
},
"7": {
"id": 7,
"cn": "危险降临"
},
"8": {
"id": 8,
"cn": "双面人"
},
"9": {
"id": 9,
"cn": "反派的结局"
},
"10": {
"id": 10,
"cn": "女主登场"
},
"11": {
"id": 11,
"cn": "情书"
},
"12": {
"id": 12,
"cn": "三个人的约会"
},
"13": {
"id": 13,
"cn": "男主登场"
},
"14": {
"id": 14,
"cn": "意外的剧情"
},
"15": {
"id": 15,
"cn": "芙"
},
"16": {
"id": 16,
"cn": "血族形态的他"
},
"17": {
"id": 17,
"cn": "我们的关系"
},
"18": {
"id": 18,
"cn": "窗边的蔷薇花"
},
"19": {
"id": 19,
"cn": "爱上她了吗"
},
"21": {
"id": 21,
"cn": "掰回剧情计划"
},
"22": {
"id": 22,
"cn": "黑夜里的光"
},
"23": {
"id": 23,
"cn": "黑夜的囚笼"
},
"24": {
"id": 24,
"cn": "血族的精神世界"
},
"25": {
"id": 25,
"cn": "断掉的记忆"
},
"26": {
"id": 26,
"cn": "芙的情感"
},
"27": {
"id": 27,
"cn": "艾尔和梵优的过往"
},
"28": {
"id": 28,
"cn": "告白"
},
"29": {
"id": 29,
"cn": "油画"
},
"30": {
"id": 30,
"cn": "手枪"
},
"31": {
"id": 31,
"cn": "手表"
},
"32": {
"id": 32,
"cn": "归还的诗歌集"
},
"33": {
"id": 33,
"cn": "情书风波【上】"
},
"34": {
"id": 34,
"cn": "情书风波【中】"
},
"35": {
"id": 35,
"cn": "情书风波【下】"
},
"36": {
"id": 36,
"cn": "为了结局"
},
"37": {
"id": 37,
"cn": "梳理剧情"
},
"38": {
"id": 38,
"cn": "公平竞争"
},
"39": {
"id": 39,
"cn": "学园祭"
},
"40": {
"id": 40,
"cn": "主角的光芒"
},
"41": {
"id": 41,
"cn": "单翼"
},
"42": {
"id": 42,
"cn": "地狱火"
},
"43": {
"id": 43,
"cn": "猎人公会"
},
"44": {
"id": 44,
"cn": "绯闻男友"
},
"45": {
"id": 45,
"cn": "社团活动"
},
"46": {
"id": 46,
"cn": "列夫登场"
},
"47": {
"id": 47,
"cn": "舞会的邀请"
},
"48": {
"id": 48,
"cn": "危险边缘"
},
"49": {
"id": 49,
"cn": "不再安全的家"
},
"50": {
"id": 50,
"cn": "他来了"
},
"51": {
"id": 51,
"cn": "问题的答案"
},
"52": {
"id": 52,
"cn": "才是初见"
},
"53": {
"id": 53,
"cn": "列夫"
},
"54": {
"id": 54,
"cn": "列夫的阴谋"
},
"55": {
"id": 55,
"cn": "我的舞伴"
},
"56": {
"id": 56,
"cn": "我身上的印记"
},
"57": {
"id": 57,
"cn": "贵公子"
},
"58": {
"id": 58,
"cn": "奇怪的民宅"
},
"59": {
"id": 59,
"cn": "两个印记"
},
"60": {
"id": 60,
"cn": "该隐和芙"
},
"61": {
"id": 61,
"cn": "悲剧人物"
},
"62": {
"id": 62,
"cn": "未知号码"
},
"63": {
"id": 63,
"cn": "凯瑟琳教堂"
},
"64": {
"id": 64,
"cn": "背叛?"
},
"65": {
"id": 65,
"cn": "计划开始"
},
"66": {
"id": 66,
"cn": "血色蔷薇花"
},
"67": {
"id": 67,
"cn": "无法抑制的怒火"
},
"68": {
"id": 68,
"cn": "无法抑制的怒火2"
},
"69": {
"id": 69,
"cn": "无法抑制的怒火3"
},
"70": {
"id": 70,
"cn": "月下的美人"
},
"71": {
"id": 71,
"cn": "他是吸血鬼"
},
"72": {
"id": 72,
"cn": "迷雾般的过去"
},
"73": {
"id": 73,
"cn": "微醺"
},
"74": {
"id": 74,
"cn": "灵魂烙印"
},
"75": {
"id": 75,
"cn": "解除印记"
},
"76": {
"id": 76,
"cn": "最后一支舞"
},
"77": {
"id": 77,
"cn": "舞会终了"
},
"78": {
"id": 78,
"cn": "奇怪的村子"
},
"79": {
"id": 79,
"cn": "来自过去"
},
"80": {
"id": 80,
"cn": "只剩复仇"
},
"81": {
"id": 81,
"cn": "新的篇章"
},
"82": {
"id": 82,
"cn": "短命的头衔"
},
"83": {
"id": 83,
"cn": "黑与白"
},
"84": {
"id": 84,
"cn": "讨厌的吸血鬼"
},
"85": {
"id": 85,
"cn": "猎人据点"
},
"86": {
"id": 86,
"cn": "日记本"
},
"87": {
"id": 87,
"cn": "报名"
},
"88": {
"id": 88,
"cn": "夜愿大酒店"
},
"89": {
"id": 89,
"cn": "莱恩"
},
"90": {
"id": 90,
"cn": "酒吧人渣"
},
"91": {
"id": 91,
"cn": "酒吧的混战"
},
"92": {
"id": 92,
"cn": "夜"
},
"93": {
"id": 93,
"cn": "血族的终点"
},
"94": {
"id": 94,
"cn": "17年的陪伴"
},
"95": {
"id": 95,
"cn": "回归主线的剧情"
},
"96": {
"id": 96,
"cn": "秋后算账"
},
"97": {
"id": 97,
"cn": "第一场测试"
},
"98": {
"id": 98,
"cn": "亚伯的恋情"
},
"99": {
"id": 99,
"cn": "靶"
},
"100": {
"id": 100,
"cn": "故居"
},
"101": {
"id": 101,
"cn": "十三年前"
},
"102": {
"id": 102,
"cn": "记忆里的蔷薇"
},
"103": {
"id": 103,
"cn": "出口"
},
"104": {
"id": 104,
"cn": "神秘人"
},
"105": {
"id": 105,
"cn": "艾尔生日番外"
},
"106": {
"id": 106,
"cn": "两只眼睛"
},
"107": {
"id": 107,
"cn": "破碎的记忆"
},
"108": {
"id": 108,
"cn": "第二场测试"
},
"109": {
"id": 109,
"cn": "忙里偷闲"
},
"110": {
"id": 110,
"cn": "一"
},
"111": {
"id": 111,
"cn": "二"
},
"112": {
"id": 112,
"cn": "三"
},
"113": {
"id": 113,
"cn": "四"
}
},
"ItemTbl": {
"1": {
"id": 1,
"name": 29,
"desc": 1,
"scale": 3,
"scaletime": 1,
"collecttime": 0.5,
"delaytime": 1,
"picture": "huap",
"whiteSprite": "huab",
"icon": "huai",
"type": 1,
"plot": 1111,
"foggy": 1,
"foggyPicture": "huam",
"toastMsg": "请前往公众号获取兑换码"
},
"2": {
"id": 2,
"name": 30,
"desc": 2,
"scale": 3,
"scaletime": 1,
"collecttime": 0.5,
"delaytime": 1,
"picture": "qiangp",
"whiteSprite": "qiangb",
"icon": "qiangi",
"type": 2,
"plot": 7463,
"foggy": 0,
"foggyPicture": "qiangm",
"toastMsg": ""
},
"3": {
"id": 3,
"name": 31,
"desc": 3,
"scale": 3,
"scaletime": 1,
"collecttime": 0.5,
"delaytime": 1,
"picture": "biaop",
"whiteSprite": "biaob",
"icon": "biaoi",
"type": 3,
"plot": 7074,
"foggy": 0,
"foggyPicture": "biaom",
"toastMsg": ""
},
"4": {
"id": 4,
"name": 86,
"desc": 5,
"scale": 3,
"scaletime": 1,
"collecttime": 0.5,
"delaytime": 1,
"picture": "benp",
"whiteSprite": "benb",
"icon": "beni",
"type": 4,
"plot": 1111,
"foggy": 0,
"foggyPicture": "benm",
"toastMsg": ""
}
},
"MessageSceneConfig": {
"1": {
"id": 1,
"title": 2,
"roles": [
3
]
},
"2": {
"id": 2,
"title": 3,
"roles": [
4
]
},
"3": {
"id": 3,
"title": 4,
"roles": [
5
]
},
"4": {
"id": 4,
"title": 15,
"roles": [
8
]
},
"5": {
"id": 5,
"title": 53,
"roles": [
15
]
},
"6": {
"id": 6,
"title": 62,
"roles": [
24
]
}
},
"RelationLevelConfig": {
"1": {
"id": 1,
"relation_value": 1000
},
"2": {
"id": 2,
"relation_value": 1000
},
"3": {
"id": 3,
"relation_value": 1000
},
"4": {
"id": 4,
"relation_value": 1000
},
"5": {
"id": 5,
"relation_value": 1000
},
"6": {
"id": 6,
"relation_value": 1000
},
"7": {
"id": 7,
"relation_value": 1000
},
"8": {
"id": 8,
"relation_value": 1000
},
"9": {
"id": 9,
"relation_value": 1000
},
"10": {
"id": 10,
"relation_value": 1000
}
},
"StoryTbl": {
"1": {
"id": 1,
"plotId": 1111,
"itemId": 1,
"toastMsg": "敬请期待",
"title": "",
"content": "在我的印象中,吸血鬼都喜欢住在古堡里。%%%%月影别墅虽然算不得古堡,但绝对是座庞然大物。%%%%别墅内部一共有四层,布局大致是这样的…… %%%%一楼大厅,厨房,活动室,活动室里面有钢琴,不过我俩好像都不会的样子。%%%%二楼就主要是办公室了,我的卧室,还有两间客房,虽然没人会来过夜。%%%%艾尔的房间在三楼,除此之外只有资料室和书房,当然我一般不会上去。%%%%四楼比较诡异,和三楼布局十分相似,唯一的区别大概就是四楼的每间屋子里都种上了蔷薇花。%%%%这一层我之前从未上去过,直到那天…… %%%%别墅四周十分幽静,如果我一个人住在这里,我一定会害怕。%%%% 还好有人作伴。%%%% 咳咳,这么一想,我居然一直在和艾尔同居。%%%%但是仔细一想,我和一个吸血鬼同居了,这……简直更可怕了。%%%%不过,如果我没记错的话,艾尔现在只有二十一岁。%%%%那么这么大一个别墅,他是从哪里得到的呢?"
},
"2": {
"id": 2,
"plotId": 7463,
"itemId": 2,
"toastMsg": "敬请期待",
"title": "",
"content": "这还是我第一次拿起手枪。%%%%枪身上刻着一朵金色蔷薇花。%%%%枪应该是艾尔送给“我”的。%%%%这一次,艾尔用这把枪救了我的命。%%%%可是原著中,梵优到死,都没有开出那保命的一枪。%%%%啊……不禁有点难过了。%%%%不过…… 这把枪真的非常眼熟。%%%%为什么呢? 我一定在原著中的哪个地方,见过它。%%%%说起来…… 原著中并没有怎么刻画过梵优这个角色。%%%%所以“我”为什么会成为猎人呢?%%%%又为什么会一直和艾尔在一起?%%%%我现在还有太多的疑问,但我知道这把枪应该会陪伴我很久。"
},
"3": {
"id": 3,
"plotId": 7074,
"itemId": 3,
"toastMsg": "第二天再来哦!",
"title": "",
"content": "梵优:“老大,我的手表好像坏了,慢了不止三分钟了。”%%%%艾尔:“遇到这种问题,你应该去找修表的,而不是找我。”%%%% 梵优:“但我觉得你会修啊。”%%%%他瞥了我一眼,拿走了手表。%%%%嘀嗒……嘀嗒……的声音,从我耳边消失了。%%%%其实我很少带手表。%%%%因为我总觉得它走得很辛苦。%%%%而且,一直在前进的时间,让我感到害怕。%%%%指针每向前走一步,都是我再也无法回头的现在。%%%%明明,我还没有过好现在。"
},
"4": {
"id": 4,
"plotId": 1111,
"itemId": 3,
"toastMsg": "敬请期待",
"title": "",
"content": "梵优:“完……完全坏掉了!”%%%%梵优:“我是让你帮忙修表,不是拆表啊!”%%%%艾尔:“我可没说,我会修呢。”%%%%梵优:“你胡扯!我老大会修的,我明明看见他修好了!”%%%%梵优:“又被你这家伙搞坏了!”%%%%艾尔:“你在说什么啊,我和你老大难道不是一个人么?”%%%%梵优:“根本不!一!样!你只是一个讨人厌的吸血鬼!”%%%%艾尔:“你居然为了一只手表凶我……”%%%%艾尔:“难道我还不如一只手表重要吗?”%%%%梵优:“你该不会以为,卖惨我会放过你吧?”%%%%艾尔:“我以为我什么都不说,你就会放过我呢。”%%%%真是个厚颜无耻的家伙!%%%%我把他赶去重新修表了。%%%%不过仔细想想,这个时候……虽然一直被欺负,但我还是很快乐的。"
},
"5": {
"id": 5,
"plotId": 1111,
"itemId": 4,
"toastMsg": "双面人章节完成解锁",
"title": "",
"content": "写在序页,%%%%写给自己,%%%%也写给以后可能看到它的人:%%%%穿越进游戏,这种感觉太诡异了。%%%%有朝一日,我如果离开了游戏,那这本日记将成为我在异世界生活过的见证。%%%%如果我遭遇不测无法离开…… %%%%那么后来的人,也可以知道我都遭遇了些什么。%%%%我将在这本日记中,%%%%记录自己在这个世界中所经历的一切。 %%%%争取每天一记吧。"
},
"6": {
"id": 6,
"plotId": 7463,
"itemId": 4,
"toastMsg": "我们的关系章节完成解锁",
"title": "",
"content": "9月22日,不知道是什么天气。%%%%第一次提笔写日记,有些紧张。%%%%不过比起我今天的经历,这都不算什么!%%%%我今天遭遇了吸血鬼的追击!%%%%差点就失去了生命!%%%%好在反派先生救了我,不过他这个人有点奇怪。%%%%我刚刚因为怀疑他是杀了“我”的人而感到内疚,他就说我声音比警报器大???%%%%我瞬间就不内疚了。"
},
"7": {
"id": 7,
"plotId": 8229,
"itemId": 4,
"toastMsg": "断掉的记忆章节完成解锁",
"title": "",
"content": "9月23日,9月24日,天气不重要了。%%%%之所以一连写两天的,是因为我中途昏过去了。%%%%所以我遭遇了非常可怕的事!%%%%第一件事,我居然和梵优是同一天生日诶!%%%%不过真的有人在生日的时候送别人黄色的花吗???%%%%这看起来不像菊花啊???%%%%虽说认错花是我的问题,但是他选这个颜色的花就很奇怪吧!?%%%% 第二件事,我遇到了男女主角!!!女主角芙长得真好看~ %%%%不过该隐啊,啊啊啊真的好帅哦!%%%%和游戏中一样帅!❥(„ಡωಡ„) %%%%就是看我的眼神不太帅,我不喜欢!%%%%第三件事,哦。遇到艾尔的另一个形态了,就是真正的那个反派。%%%%印象很差,不知道以后能不能好好相处。%%%%╮( •́ω•̀ )╭但毕竟是个不成气候,原著中也很少出现的吸血鬼,我倒是不用担心需要经常面对他啦。%%%%对了,“我”居然还给艾尔写过情书,真是不成熟!%%%% \\(•ㅂ•)/♥区区反派而已!"
},
"8": {
"id": 8,
"plotId": 8972,
"itemId": 4,
"toastMsg": "断掉的记忆章节完成解锁",
"title": "",
"content": "9月25日,9月26日%%%%我想想,要怎么区分艾尔的两个面呢?%%%%黑发时候的他,就叫老大吧。%%%%白发时候的他,就叫艾尔吧!%%%%今天芙来到别墅了,顺便还借了本书。%%%%她果真是个好孩子,对知识充满着渴望!%%%%不过晚上我们就一起遇险了,然后被艾尔救了。%%%%感动了一小会!%%%%( ´•︵•` )我差点就哭了! 没想到那样的反派居然也有挺温暖的一面。%%%%以后应该可以……好好相处的吧?%%%%不过他是不是真的会修路灯啊?"
},
"9": {
"id": 9,
"plotId": 8972,
"itemId": 4,
"toastMsg": "情书风波(下)章节完成解锁",
"title": "",
"content": "9月27日%%%%骨折的第一天,疼。%%%%想奴役老大帮忙端茶倒水,但是他没有鸟我。%%%%%%%% 9月28日%%%%老大问我,窗边的花是什么时候放在那的。%%%%愚蠢!╮( •́ω•̀ )╭都放那好几天了才看到吗? %%%%%%%%9月29日%%%%今天老大来问我窗边的花是怎么来的。%%%%愚蠢!╮( •́ω•̀ )╭当然是你送的啊!%%%%%%%%9月30日%%%%今天老大说我房间里的花有些枯萎了。%%%%愚蠢!╮( •́ω•̀ )╭你还指望我会帮你浇花吗!"
},
"10": {
"id": 10,
"plotId": 9521,
"itemId": 4,
"toastMsg": "地狱火章节完成解锁",
"title": "",
"content": "10月5日%%%%震惊!!!为什么芙喜欢老大啊!?!??%%%%这剧情不对吧!!!%%%%而且我当时放情书的那本《托里诗歌集》不见了!%%%%我得赶紧找找啊啊啊!!%%%% 不过,那个不成气候的吸血鬼艾尔,好久没出现了呢。 %%%%%%%%10月6日%%%%今天见到艾尔了。%%%%我刚以为可以和他和平共处,结果……%%%%艾尔是不是有毛病是不是是不是是不是??%%%%他是不是不喜欢当个人???%%%%啊啊啊啊不成气候又愚蠢的吸血鬼啊!!%%%%他敢让我社死,他就一定会付出代价的!%%%% ╮( •́ω•̀ )╭我一点也不生气呢~ %%%%区区一个喜欢放火可能会导致尿床的吸血鬼罢了!"
},
"11": {
"id": 11,
"plotId": 10229,
"itemId": 4,
"toastMsg": "社团活动章节完成解锁",
"title": "",
"content": "10月7日%%%%这篇是我补的,因为我昨晚晕倒了,我真是生活在水深火热之中!%%%%昨晚第一次在公园里近距离观摩失足吸血鬼放火事件。%%%%哎呀,好吓人呢!%%%%他总是这么暴躁也不知道是跟谁学的?%%%%还好我不会被他影响,我依旧温婉可爱ฅ( ̳• ◡ • ̳)ฅ %%%%但我居然又晕过去了,这样下去我会不会短命啊!%%%%都是这可恶又愚蠢的吸血鬼害得!!!%%%%说起来,昨晚也见到该隐啦!虽然他打招呼的方式有些特别!%%%%不过,有的吸血鬼就算打招呼很凶狠,可他依旧优雅。%%%%而有的吸血鬼只会放火害我受伤罢了!%%%%如果他继续不配合剧情的话,我就把他铲除了吧!%%%%得找个机会认真写个暗杀计划呢٩(๑`灬´๑)۶"
},
"12": {
"id": 12,
"plotId": 10481,
"itemId": 4,
"toastMsg": "危险边缘章节完成解锁",
"title": "",
"content": "10月8日,中午。%%%%我佛了,为什么所有人都觉得艾尔是我男友啊?%%%%为什么昨天晚上还会被人偷拍啊!我也不是什么学校风云人物吧?%%%%经历了情书事件,我现在对任何雄性生物都失去了好感!%%%%如果能换个世界生活,我也绝对不会留在这里!%%%%而且!昨天芙告诉我要和我公平竞争艾尔?%%%%哦,我可怜的芙!%%%%哦,亲爱的,你怎么了!审美为什么出现了问题!=͟͟͞͞=͟͟͞͞(●⁰ꈊ⁰● |||) %%%%我真是怎么想都想不通。%%%%不会真的有人喜欢吸血鬼吧?不会吧不会吧?%%%%╮( •́ω•̀ )╭真是自己找罪受呢。%%%%公平竞争?真是好笑!%%%%有的人喜欢吸血鬼,而有的清醒智者,比如我,只是在想如何报仇罢了!"
},
"13": {
"id": 13,
"plotId": 10778,
"itemId": 4,
"toastMsg": "敬请期待",
"title": "",
"content": "10月9日%%%%现在是9号凌晨,我就怀着一颗悲愤的心情开始写日记。%%%%气死我了气死我了气死我了!!凸(゜皿゜メ) %%%%我为什么要帮那个吸血鬼啊!?%%%%昨晚忽然出现了一个叫作列夫的元老要调查公园的事情。%%%%报着大家在同一个屋檐下的能帮则帮的心态,我决定帮助那家伙。%%%%可是!!!我在想方设法掩护他,不让列夫发现他的秘密!%%%%他!居!然!在!搞!我!%%%%我还以为他大意了,不知道列夫会来别墅。%%%%结果他明明知道!不仅不作防范!%%%%而且,还处心积虑的把我藏起来的情书又找了出来(╬ ̄皿 ̄)%%%%甚至还供在了密室里!!!%%%%他都算好列夫会找去密室了,他就是想让我社死!%%%%他就只是想搞我!!%%%%为什么在搞我这一方面,他的智商这么高啊!!!?%%%%果然还是应该把他铲除了!%%%%但凡我打得过他,他绝对不会活到现在!%%%%绝对不会!!!凸(艹皿艹 )"
}
},
"SuitConfig": {
"2": {
"id": 2,
"clothingType": 1,
"clothingId": 21,
"suitId": 2,
"clothingName": "发饰碎片",
"unlockCondition": "完成40章剧情领取",
"isUnlock": false
},
"3": {
"id": 3,
"clothingType": 1,
"clothingId": 31,
"suitId": 3,
"clothingName": "发饰碎片",
"unlockCondition": "敬请期待",
"isUnlock": false
},
"4": {
"id": 4,
"clothingType": 2,
"clothingId": 12,
"suitId": 1,
"clothingName": "头发碎片",
"unlockCondition": "头发1的解锁条件是什么?",
"isUnlock": true
},
"5": {
"id": 5,
"clothingType": 2,
"clothingId": 22,
"suitId": 2,
"clothingName": "头发碎片",
"unlockCondition": "饭统等级到达1级",
"isUnlock": false
},
"6": {
"id": 6,
"clothingType": 2,
"clothingId": 32,
"suitId": 3,
"clothingName": "头发碎片",
"unlockCondition": "敬请期待",
"isUnlock": false
},
"7": {
"id": 7,
"clothingType": 3,
"clothingId": 13,
"suitId": 1,
"clothingName": "衣服碎片",
"unlockCondition": "衣服1的解锁条件是什么?",
"isUnlock": true
},
"8": {
"id": 8,
"clothingType": 3,
"clothingId": 23,
"suitId": 2,
"clothingName": "衣服碎片",
"unlockCondition": "饭统达到十级获取",
"isUnlock": false
},
"9": {
"id": 9,
"clothingType": 3,
"clothingId": 33,
"suitId": 3,
"clothingName": "衣服碎片",
"unlockCondition": "敬请期待",
"isUnlock": false
},
"11": {
"id": 11,
"clothingType": 4,
"clothingId": 24,
"suitId": 2,
"clothingName": "手包碎片",
"unlockCondition": "饭统达到七级获取",
"isUnlock": false
},
"12": {
"id": 12,
"clothingType": 4,
"clothingId": 34,
"suitId": 3,
"clothingName": "手包碎片",
"unlockCondition": "敬请期待",
"isUnlock": false
},
"13": {
"id": 13,
"clothingType": 5,
"clothingId": 15,
"suitId": 1,
"clothingName": "鞋子碎片",
"unlockCondition": "鞋子1的解锁条件是什么?",
"isUnlock": true
},
"14": {
"id": 14,
"clothingType": 5,
"clothingId": 25,
"suitId": 2,
"clothingName": "鞋子碎片",
"unlockCondition": "走心少女派公众号回复碎片获取",
"isUnlock": false
},
"15": {
"id": 15,
"clothingType": 5,
"clothingId": 35,
"suitId": 3,
"clothingName": "鞋子碎片",
"unlockCondition": "敬请期待",
"isUnlock": false
}
}
}
}