-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_trinkets.json
2258 lines (2258 loc) · 52.8 KB
/
data_trinkets.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
[
{
"title": "被吞下的硬币",
"titleEn": "Swallowed Penny",
"id": "1",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "受伤时生成硬币。",
"offset": "0px 0px",
"quoteEn": "Gulp!",
"color": "#99ac9a"
},
{
"title": "石化大便",
"titleEn": "Petrified Poop",
"id": "2",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "摧毁大便生成物品的概率上升。",
"offset": "-32px 0px",
"quoteEn": "It feels lucky?",
"color": "#525252"
},
{
"title": "7号电池",
"titleEn": "AAA Battery",
"id": "3",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "主动道具差1格时自动充满。",
"offset": "-64px 0px",
"quoteEn": "Trickle charge",
"color": "#a19d95"
},
{
"title": "损坏的遥控器",
"titleEn": "Broken Remote",
"id": "4",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "使用主动道具会随机传送。",
"offset": "-96px 0px",
"quoteEn": "It's broken",
"color": "#414040"
},
{
"title": "紫心奖章",
"titleEn": "Purple Heart",
"id": "5",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "提升精英敌人的出现概率。",
"offset": "-128px 0px",
"quoteEn": "Challenge up",
"color": "#5e3861"
},
{
"title": "断掉的磁铁",
"titleEn": "Broken Magnet",
"id": "6",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "角色会吸引硬币。",
"offset": "-160px 0px",
"quoteEn": "It kinda works!",
"color": "#792929"
},
{
"title": "念珠段",
"titleEn": "Rosary Bead",
"id": "7",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "天使房转换率上升。",
"offset": "-192px 0px",
"quoteEn": "Faith up",
"color": "#6b3535"
},
{
"title": "游戏卡带",
"titleEn": "Cartridge",
"id": "8",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "受伤时概率触发无敌效果。",
"offset": "-224px 0px",
"quoteEn": "I remember these",
"color": "#786a64"
},
{
"title": "波动虫",
"titleEn": "Pulse Worm",
"id": "9",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "泪弹忽大忽小。",
"offset": "-256px 0px",
"quoteEn": "Wub wub!",
"color": "#9d9d9d"
},
{
"title": "蠕动虫",
"titleEn": "Wiggle Worm",
"id": "10",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "泪弹扭来扭去。",
"offset": "-288px 0px",
"quoteEn": "Wiggle waggle!",
"color": "#8c8c8c"
},
{
"title": "环形虫",
"titleEn": "Ring Worm",
"id": "11",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "泪弹螺旋前进。",
"offset": "-320px 0px",
"quoteEn": "Woop woop!",
"color": "#989898"
},
{
"title": "扁形虫",
"titleEn": "Flat Worm",
"id": "12",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "泪弹变成扁圆形。",
"offset": "-352px 0px",
"quoteEn": "Blub blub!",
"color": "#a3a3a3"
},
{
"title": "商店积分",
"titleEn": "Store Credit",
"id": "13",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "免费购买一个物品。",
"offset": "-384px 0px",
"quoteEn": "YES!",
"color": "#767676"
},
{
"title": "老茧",
"titleEn": "Callus",
"id": "14",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "防止角色受到的地形伤害。",
"offset": "-416px 0px",
"quoteEn": "Your feet feel stronger",
"color": "#784746"
},
{
"title": "幸运石",
"titleEn": "Lucky Rock",
"id": "15",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "摧毁岩石会生成硬币。",
"offset": "-448px 0px",
"quoteEn": "There's something inside it",
"color": "#444343"
},
{
"title": "妈妈的脚趾甲",
"titleEn": "Mom's Toenail",
"id": "16",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "每隔一段时间会生成妈妈的腿。",
"offset": "-480px 0px",
"quoteEn": "???",
"color": "#a39d7b"
},
{
"title": "黑色口红",
"titleEn": "Black Lipstick",
"id": "17",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "黑心的生成概率上升。",
"offset": "-512px 0px",
"quoteEn": "Evil Up",
"color": "#4f4e4e"
},
{
"title": "圣经小册",
"titleEn": "Bible Tract",
"id": "18",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "永恒之心的生成概率上升。",
"offset": "-544px 0px",
"quoteEn": "Faith up",
"color": "#717165"
},
{
"title": "回形针",
"titleEn": "Paper Clip",
"id": "19",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "打开金箱子不需要钥匙。",
"offset": "-576px 0px",
"quoteEn": "Master of lockpicking",
"color": "#626262"
},
{
"title": "猴爪",
"titleEn": "Monkey Paw",
"id": "20",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "角色只有半颗心时,获得黑心,只能触发3次。",
"offset": "-608px 0px",
"quoteEn": "Wish granted",
"color": "#583734"
},
{
"title": "神秘纸片",
"titleEn": "Mysterious Paper",
"id": "21",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "概率触发各种纸的效果。",
"offset": "0px -32px",
"quoteEn": "???",
"color": "#949494"
},
{
"title": "恶魔的尾巴",
"titleEn": "Daemon's Tail",
"id": "22",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "所有心变为黑心。",
"offset": "-32px -32px",
"quoteEn": "Evil up",
"color": "#222121"
},
{
"title": "寻人启事",
"titleEn": "Missing Poster",
"id": "23",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "死亡后变为游魂。",
"offset": "-64px -32px",
"quoteEn": "???",
"color": "#848389"
},
{
"title": "屁股硬币",
"titleEn": "Butt Penny",
"id": "24",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "拾取硬币时会放屁。",
"offset": "-96px -32px",
"quoteEn": "Wealth of gas",
"color": "#412204"
},
{
"title": "神秘糖果",
"titleEn": "Mysterious Candy",
"id": "25",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "角色会随机放屁或生成大便。",
"offset": "-128px -32px",
"quoteEn": "Uh-oh!",
"color": "#392b0b"
},
{
"title": "钩形虫",
"titleEn": "Hook Worm",
"id": "26",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "泪弹方形前进。",
"offset": "-160px -32px",
"quoteEn": "Zip zoop!",
"color": "#8c8c8c"
},
{
"title": "鞭形虫",
"titleEn": "Whip Worm",
"id": "27",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "泪弹快速前进。",
"offset": "-192px -32px",
"quoteEn": "Wooosh!",
"color": "#969696"
},
{
"title": "碎安卡十字",
"titleEn": "Broken Ankh",
"id": "28",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "死亡后概率复活为???。",
"offset": "-224px -32px",
"quoteEn": "Eternal life?",
"color": "#353434"
},
{
"title": "鱼头",
"titleEn": "Fish Head",
"id": "29",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "受伤时生成蓝苍蝇。",
"offset": "-256px -32px",
"quoteEn": "It stinks",
"color": "#35451d"
},
{
"title": "角膜炎",
"titleEn": "Pinky Eye",
"id": "30",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "概率发射毒性泪弹。",
"offset": "-288px -32px",
"quoteEn": "Poison shots",
"color": "#8e5858"
},
{
"title": "图钉",
"titleEn": "Push Pin",
"id": "31",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "概率发射穿刺泪弹。",
"offset": "-320px -32px",
"quoteEn": "Piercing shots",
"color": "#46556a"
},
{
"title": "裸盖蘑菇",
"titleEn": "Liberty Cap",
"id": "32",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "随机获得其他蘑菇的效果。",
"offset": "-352px -32px",
"quoteEn": "Touch Fuzzy, Get Dizzy",
"color": "#4a4a4a"
},
{
"title": "脐带",
"titleEn": "Umbilical Cord",
"id": "33",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "只有半颗心时生成一个小史蒂文跟班。受伤时概率生成双子跟班。",
"offset": "-384px -32px",
"quoteEn": "Fetal Protection",
"color": "#833f3f"
},
{
"title": "小孩的心脏",
"titleEn": "Child's Heart",
"id": "34",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "红心的生成概率上升。",
"offset": "-416px -32px",
"quoteEn": "It calls out to its brothers",
"color": "#5a1122"
},
{
"title": "弯羊角",
"titleEn": "Curved Horn",
"id": "35",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "伤害上升。",
"offset": "-448px -32px",
"quoteEn": "DMG up",
"color": "#745353"
},
{
"title": "生锈的钥匙",
"titleEn": "Rusted Key",
"id": "36",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "钥匙和箱子的生成概率上升。",
"offset": "-480px -32px",
"quoteEn": "It feels lucky?",
"color": "#4e2c24"
},
{
"title": "山羊蹄",
"titleEn": "Goat Hoof",
"id": "37",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "移速上升。",
"offset": "-512px -32px",
"quoteEn": "Speed up",
"color": "#2f2121"
},
{
"title": "妈妈的珍珠",
"titleEn": "Mom's Pearl",
"id": "38",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "魂心的生成概率上升。",
"offset": "-544px -32px",
"quoteEn": "It emanates purity",
"color": "#8b8a8a"
},
{
"title": "癌症",
"titleEn": "Cancer",
"id": "39",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "射速上升。",
"offset": "-576px -32px",
"quoteEn": "Yay, cancer!",
"color": "#231f17"
},
{
"title": "红补丁",
"titleEn": "Red Patch",
"id": "40",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "受伤时当前房间中概率伤害上升。",
"offset": "-608px -32px",
"quoteEn": "Your rage grows",
"color": "#561717"
},
{
"title": "火柴棍",
"titleEn": "Match Stick",
"id": "41",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "炸弹的生成概率上升。",
"offset": "0px -64px",
"quoteEn": "Tastes like burning",
"color": "#71584d"
},
{
"title": "幸运脚趾",
"titleEn": "Lucky Toe",
"id": "42",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "幸运上升。",
"offset": "-32px -64px",
"quoteEn": "Luck up!",
"color": "#765752"
},
{
"title": "诅咒的头骨",
"titleEn": "Cursed Skull",
"id": "43",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "受伤后如果角色只有半颗心,则会随机传送。",
"offset": "-64px -64px",
"quoteEn": "Cursed?",
"color": "#8f8f8f"
},
{
"title": "保险瓶盖",
"titleEn": "Safety Cap",
"id": "44",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "胶囊的生成概率上升。",
"offset": "-96px -64px",
"quoteEn": "Don't swallow it",
"color": "#959595"
},
{
"title": "黑桃A",
"titleEn": "Ace of Spades",
"id": "45",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "卡牌的生成概率上升。",
"offset": "-128px -64px",
"quoteEn": "Luck of the draw",
"color": "#b9b9b9"
},
{
"title": "以撒的叉子",
"titleEn": "Isaac's Fork",
"id": "46",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "清理房间概率回复红心。",
"offset": "-160px -64px",
"quoteEn": "Consume thy enemy",
"color": "#5e5e5e"
},
{
"title": "遗失的书页",
"titleEn": "A Missing Page",
"id": "48",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "受伤后概率触发全屏伤害。",
"offset": "-224px -64px",
"quoteEn": "It glows with power",
"color": "#755a54"
},
{
"title": "染血硬币",
"titleEn": "Bloody Penny",
"id": "49",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "拾取硬币概率生成红心。",
"offset": "-256px -64px",
"quoteEn": "Wealth of health",
"color": "#722121"
},
{
"title": "焦灼硬币",
"titleEn": "Burnt Penny",
"id": "50",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "拾取硬币概率生成炸弹。",
"offset": "-288px -64px",
"quoteEn": "Wealth of chaos",
"color": "#434242"
},
{
"title": "扁平硬币",
"titleEn": "Flat Penny",
"id": "51",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "拾取硬币概率生成钥匙。",
"offset": "-320px -64px",
"quoteEn": "Wealth of answers",
"color": "#7e7e7e"
},
{
"title": "假币",
"titleEn": "Counterfeit Penny",
"id": "52",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "拾取硬币概率获得双倍硬币。",
"offset": "-352px -64px",
"quoteEn": "Wealth of wealth",
"color": "#ada766"
},
{
"title": "血虱",
"titleEn": "Tick",
"id": "53",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "无法被其他饰品替换,血量很高的敌人会减少血量,进入头目房后会恢复红心。",
"offset": "-384px -64px",
"quoteEn": "Well, that's not coming off",
"color": "#4e3b34"
},
{
"title": "以撒的头",
"titleEn": "Isaac's Head",
"id": "54",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "发射穿刺泪弹的跟班。",
"offset": "-416px -64px",
"quoteEn": "Dead friend",
"color": "#9e8584"
},
{
"title": "抹大拉的信仰",
"titleEn": "Maggy's Faith",
"id": "55",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "进入下一层时会获得永恒之心。",
"offset": "-448px -64px",
"quoteEn": "Faith's reward",
"color": "#a9a861"
},
{
"title": "犹大的舌头",
"titleEn": "Judas' Tongue",
"id": "56",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "交易只需要一颗心之容器。",
"offset": "-480px -64px",
"quoteEn": "Payment Received",
"color": "#792020"
},
{
"title": "???的灵魂",
"titleEn": "???'s Soul",
"id": "57",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "发射灵体追踪泪弹的跟班。",
"offset": "-512px -64px",
"quoteEn": "Imaginary Friend",
"color": "#2e4d8a"
},
{
"title": "参孙的发髻",
"titleEn": "Samson's Lock",
"id": "58",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "消灭敌人时在当前房间中概率获得伤害上升。",
"offset": "-544px -64px",
"quoteEn": "Your rage grows",
"color": "#3d2a24"
},
{
"title": "该隐的眼睛",
"titleEn": "Cain's Eye",
"id": "59",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "进入下一层时概率显示特殊房间位置。",
"offset": "-576px -64px",
"quoteEn": "May you see your destination",
"color": "#979797"
},
{
"title": "夏娃的鸟爪",
"titleEn": "Eve's Bird Foot",
"id": "60",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "击杀敌人时概率生成死鸟跟班。",
"offset": "-608px -64px",
"quoteEn": "Revenge from beyond",
"color": "#3b3b3b"
},
{
"title": "左断手",
"titleEn": "The Left Hand",
"id": "61",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "箱子变为红箱子。",
"offset": "0px -96px",
"quoteEn": "The left-hand path reaps dark rewards",
"color": "#4d3a3a"
},
{
"title": "闪亮岩石",
"titleEn": "Shiny Rock",
"id": "62",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "宝箱石头和暗门石头每10秒闪烁一次。",
"offset": "-32px -96px",
"quoteEn": "It shines for its brothers",
"color": "#9c9c9c"
},
{
"title": "安全剪刀",
"titleEn": "Safety Scissors",
"id": "63",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "即爆炸弹和超级即爆炸弹变为炸弹。",
"offset": "-64px -96px",
"quoteEn": "Fuse Cutter",
"color": "#4e6170"
},
{
"title": "彩虹虫",
"titleEn": "Rainbow Worm",
"id": "64",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "随机蠕虫特效。",
"offset": "-96px -96px",
"quoteEn": "Bleep Bloop Blop",
"color": "#70614b"
},
{
"title": "长条虫",
"titleEn": "Tape Worm",
"id": "65",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "泪弹飞得更远。",
"offset": "-128px -96px",
"quoteEn": "Floooooooooop!",
"color": "#9c9c9c"
},
{
"title": "懒懒虫",
"titleEn": "Lazy Worm",
"id": "66",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "泪弹飞得更慢。",
"offset": "-160px -96px",
"quoteEn": "Pft",
"color": "#b9b9b9"
},
{
"title": "碎裂六面骰",
"titleEn": "Cracked Dice",
"id": "67",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "受伤时概率触发一种骰子的效果。",
"offset": "-192px -96px",
"quoteEn": "You feel cursed... kinda.",
"color": "#959595"
},
{
"title": "超级磁铁",
"titleEn": "Super Magnet",
"id": "68",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "角色吸引掉落物、敌人和敌人的泪弹。",
"offset": "-224px -96px",
"quoteEn": "It Pulls",
"color": "#a1a1a1"
},
{
"title": "褪色的全家福",
"titleEn": "Faded Polaroid",
"id": "69",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "角色偶尔会变为透明色,使所有敌人混乱。",
"offset": "-256px -96px",
"quoteEn": "You feel faded",
"color": "#a48e81"
},
{
"title": "虱子",
"titleEn": "Louse",
"id": "70",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "偶尔生成蓝蜘蛛。",
"offset": "-288px -96px",
"quoteEn": "Itchy, tasty...",
"color": "#6e6262"
},
{
"title": "鲍勃的膀胱",
"titleEn": "Bob's Bladder",
"id": "71",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "炸弹会留下绿色的水迹。",
"offset": "-320px -96px",
"quoteEn": "Creepy bombs",
"color": "#4d7436"
},
{
"title": "钮扣电池",
"titleEn": "Watch Battery",
"id": "72",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "电池的生成概率上升。",
"offset": "-352px -96px",
"quoteEn": "Lil charge",
"color": "#626262"
},
{
"title": "雷管",
"titleEn": "Blasting Cap",
"id": "73",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "炸弹爆炸后有概率生成一个炸弹。",
"offset": "-384px -96px",
"quoteEn": "Pop! Pop!",
"color": "#781400"
},
{
"title": "饰钉定位器",
"titleEn": "Stud Finder",
"id": "74",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "发现暗门的概率上升。",
"offset": "-416px -96px",
"quoteEn": "The ground below feels hollow...",
"color": "#5f5138"
},
{
"title": "错误",
"titleEn": "Error",
"id": "75",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "每个房间会获得一个随机饰品效果。",
"offset": "-448px -96px",
"quoteEn": "Effect not found?",
"color": "#300000"
},
{
"title": "筹码",
"titleEn": "Poker Chip",
"id": "76",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "箱子会出现更多东西或者什么都不出现。",
"offset": "-480px -96px",
"quoteEn": "It's double down time!",
"color": "#735d5d"
},
{
"title": "水疱",
"titleEn": "Blister",
"id": "77",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "泪弹击退效果上升。",
"offset": "-512px -96px",
"quoteEn": "Bounce back!",
"color": "#a79999"
},
{
"title": "秒针",
"titleEn": "Second Hand",
"id": "78",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "敌人受到异常状态的时间延长。",
"offset": "-544px -96px",
"quoteEn": "Extended stat effect time!",
"color": "#5b0c0c"
},
{
"title": "无名无尽",
"titleEn": "Endless Nameless",
"id": "79",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "使用卡牌或胶囊时,有概率生成一个相同的卡牌或胶囊。",
"offset": "-576px -96px",
"quoteEn": "I'm stuck in a loop...",
"color": "#2a2a2a"
},
{
"title": "黑色羽毛",
"titleEn": "Black Feather",
"id": "80",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "邪恶的道具越多,角色的伤害越高。",
"offset": "-608px -96px",
"quoteEn": "With darkness comes power",
"color": "#262525"
},
{
"title": "盲目的怒火",
"titleEn": "Blind Rage",
"id": "81",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "角色受伤后的无敌时间增加。",
"offset": "0px -128px",
"quoteEn": "Blind to damage",
"color": "#7e7d7d"
},
{
"title": "黄金马蹄铁",
"titleEn": "Golden Horse Shoe",
"id": "82",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "宝箱房有概率变为二选一。",
"offset": "-32px -128px",
"quoteEn": "Feel lucky?",
"color": "#ab8a45"
},
{
"title": "商店钥匙",
"titleEn": "Store Key",
"id": "83",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "进入商店不需要钥匙。",
"offset": "-64px -128px",
"quoteEn": "Stores are open",
"color": "#5b5754"
},
{
"title": "贪婪的肋骨",
"titleEn": "Rib of Greed",
"id": "84",
"type": "饰品",
"quality": "0",
"charge": null,
"effect": "商店中不会出现贪婪。",
"offset": "-96px -128px",
"quoteEn": "Feels greedy",
"color": "#949494"
},
{
"title": "业报",
"titleEn": "Karma",