forked from Zamiell/zamiel-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
items.json
2588 lines (2586 loc) · 57.8 KB
/
items.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
{
"001": {
"name": "The Sad Onion",
"shown": true,
"tears": "0.7",
"text": ""
},
"002": {
"name": "The Inner Eye",
"delay": "3",
"delay_x": "2.1",
"shown": true,
"text": "triple shot",
"in_summary": true,
"summary_name": "Triple"
},
"003": {
"name": "Spoon Bender",
"shown": true,
"text": "homing tears"
},
"004": {
"name": "Cricket's Head",
"dmg": "0.5",
"dmg_x": "1.5",
"shown": true,
"text": "",
"in_summary": true,
"summary_name": "CHead"
},
"005": {
"name": "My Reflection",
"height": "1",
"range": "1.5",
"shown": true,
"text": "boomerang tears"
},
"006": {
"name": "Number One",
"height": "0.45",
"range": "-15.78",
"shown": true,
"tears": "1.5",
"text": ""
},
"007": {
"name": "Blood of the Martyr",
"dmg": "1",
"shown": true,
"text": ""
},
"008": {
"name": "Brother Bobby",
"shown": true,
"text": "familiar (3.5 dmg / tear)"
},
"009": {
"name": "Skatole",
"shown": true,
"text": "flies won't attack you"
},
"010": {
"name": "Halo of Flies",
"shown": true,
"text": "two fly orbitals"
},
"011": {
"name": "1UP",
"shown": true,
"text": "+1 life"
},
"012": {
"name": "Magic Mushroom",
"dmg": "0.3",
"dmg_x": "1.5",
"health": "1",
"height": "0.5",
"range": "5.25",
"shown": true,
"speed": "0.3",
"text": "size up",
"in_summary": true,
"summary_name": "MMush"
},
"013": {
"name": "The Virus",
"speed": "-0.1",
"shown": true,
"text": "poison touch, speed delayed"
},
"014": {
"name": "Roid Rage",
"height": "0.5",
"range": "5.25",
"shown": true,
"speed": "0.6",
"text": ""
},
"015": {
"name": "<3",
"health": "1",
"shown": true,
"health_only": true,
"text": "full heal"
},
"016": {
"name": "Raw Liver",
"health": "2",
"shown": true,
"health_only": true,
"text": "full heal"
},
"017": {
"name": "Skeleton Key",
"shown": true,
"text": "+99 keys"
},
"018": {
"name": "A Dollar",
"shown": true,
"text": "+99 cents"
},
"019": {
"name": "Boom!",
"shown": true,
"text": "+10 bombs"
},
"020": {
"name": "Transcendence",
"shown": true,
"text": "flight"
},
"021": {
"name": "The Compass",
"shown": true,
"text": "reveals special rooms",
"in_summary": true,
"summary_name": "Compass"
},
"022": {
"name": "Lunch",
"health": "1",
"shown": true,
"health_only": true,
"text": ""
},
"023": {
"name": "Dinner",
"health": "1",
"shown": true,
"health_only": true,
"text": ""
},
"024": {
"name": "Dessert",
"health": "1",
"shown": true,
"health_only": true,
"text": ""
},
"025": {
"name": "Breakfast",
"health": "1",
"shown": true,
"health_only": true,
"text": ""
},
"026": {
"name": "Rotten Meat",
"health": "1",
"shown": true,
"health_only": true,
"text": ""
},
"027": {
"name": "Wooden Spoon",
"shown": true,
"speed": "0.3",
"text": ""
},
"028": {
"name": "The Belt",
"shown": true,
"speed": "0.3",
"text": ""
},
"029": {
"name": "Mom's Underwear",
"height": "0.5",
"range": "5.25",
"shown": true,
"text": ""
},
"030": {
"name": "Mom's Heels",
"height": "0.5",
"range": "5.25",
"shown": true,
"text": ""
},
"031": {
"name": "Mom's Lipstick",
"height": "0.5",
"range": "5.25",
"shown": true,
"text": ""
},
"032": {
"name": "Wire Coat Hanger",
"shown": true,
"tears": "0.7",
"text": ""
},
"033": {
"name": "The Bible",
"shown": true,
"text": "temporary flight, instantly kills mom / it lives",
"space": true
},
"034": {
"name": "The Book of Belial",
"shown": true,
"text": "+12.5% deal chance, x1.5 dmg with blood of the martyr, temporary +2 dmg",
"space": true
},
"035": {
"name": "The Necronomicon",
"shown": true,
"text": "deals 40 dmg to the room",
"space": true
},
"036": {
"name": "The Poop",
"shown": true,
"text": "makes a poop",
"space": true
},
"037": {
"name": "Mr. Boom",
"shown": true,
"text": "makes a bomb (110 dmg)",
"space": true
},
"038": {
"name": "Tammy's Head",
"shown": true,
"text": "shoots 10 tears (current dmg + 25)",
"space": true
},
"039": {
"name": "Mom's Bra",
"shown": true,
"text": "temporarily freezes enemies",
"space": true
},
"040": {
"name": "Kamikaze",
"shown": true,
"text": ".5 heart dmg to self, 40 dmg explosion",
"space": true
},
"041": {
"name": "Mom's Pad",
"shown": true,
"text": "temporarily fears enemies",
"space": true
},
"042": {
"name": "Bob's Rotten Head",
"shown": true,
"text": "shoots a poison bomb (50 dmg + 6-8 / tick)",
"space": true
},
"044": {
"name": "Teleport",
"shown": true,
"text": "",
"space": true
},
"045": {
"name": "Yum Heart",
"shown": true,
"text": "heals 1 heart",
"space": true
},
"046": {
"luck": "1",
"name": "Lucky Foot",
"shown": true,
"text": "better gambling chances"
},
"047": {
"name": "Doctor's Remote",
"shown": true,
"text": "shoots a missile (current dmg x 20)",
"space": true
},
"048": {
"name": "Cupid's Arrow",
"shown": true,
"text": "piercing"
},
"049": {
"name": "Shoop Da Whoop",
"shown": true,
"text": "shoots a blood laser (current dmg x 7)",
"space": true
},
"050": {
"name": "Steven",
"dmg": "1",
"shown": true,
"text": ""
},
"051": {
"name": "Pentagram",
"dmg": "1",
"shown": true,
"text": "+20% deal chance"
},
"052": {
"name": "Dr. Fetus",
"delay_x": "2.5",
"dmg_x": "3",
"shown": true,
"text": "bomb tears",
"in_summary": true
},
"053": {
"name": "Magneto",
"shown": true,
"text": "attracts pickups"
},
"054": {
"name": "Treasure Map",
"shown": true,
"text": "reveals the floor layout",
"in_summary": true,
"summary_name": "Map"
},
"055": {
"name": "Mom's Eye",
"shown": true,
"text": "chance to shoot a 2nd tear backwards"
},
"056": {
"name": "Lemon Mishap",
"shown": true,
"text": "makes a pool of pee",
"space": true
},
"057": {
"name": "Distant Admiration",
"shown": true,
"text": "orbital (5 dmg / tick)"
},
"058": {
"name": "Book of Shadows",
"shown": true,
"text": "temporary invincibility",
"space": true
},
"060": {
"name": "The Ladder",
"shown": true,
"text": "can cross gaps"
},
"062": {
"name": "Charm of the Vampire",
"shown": true,
"text": "heals half heart every 13 enemy deaths"
},
"063": {
"name": "The Battery",
"shown": true,
"text": "can double charge activated items"
},
"064": {
"name": "Steam Sale",
"shown": true,
"text": "all shop items are half price"
},
"065": {
"name": "Anarchist's Cookbook",
"shown": true,
"text": "spawns 6 troll bombs",
"space": true
},
"066": {
"name": "The Hourglass",
"shown": true,
"text": "temporarily slows enemies",
"space": true
},
"067": {
"name": "Sister Maggy",
"shown": true,
"text": "familiar (3.5 dmg / tear)"
},
"068": {
"name": "Technology",
"shown": true,
"text": "laser tears (piercing)"
},
"069": {
"name": "Chocolate Milk",
"shown": true,
"text": "charge tears (max is 4x dmg and 2.5x delay)",
"in_summary": true,
"summary_name": "Choco"
},
"070": {
"name": "Growth Hormones",
"dmg": "1",
"shown": true,
"speed": "0.4",
"text": ""
},
"071": {
"name": "Mini Mush",
"height": "1.5",
"range": "-4.25",
"shown": true,
"speed": "0.3",
"text": "size down"
},
"072": {
"name": "Rosary",
"shown": true,
"soul_hearts": "3",
"text": "puts the bible into most item pools"
},
"073": {
"name": "Cube of Meat",
"shown": true,
"text": "orbital (7 dmg / tick)",
"in_summary": true,
"summary_name": "Cube"
},
"074": {
"name": "A Quarter",
"shown": true,
"text": "+25 cents"
},
"075": {
"name": "PhD",
"shown": true,
"text": "bad stat pills become good, free pill"
},
"076": {
"name": "X-Ray Vision",
"shown": true,
"text": "automatically opens secret and super secret rooms"
},
"077": {
"name": "My Little Unicorn",
"shown": true,
"text": "temporary invincibility, 40 contact dmg",
"space": true
},
"078": {
"name": "Book of Revelations",
"shown": true,
"text": "+1 soul heart, changes floor boss to a horseman",
"space": true
},
"079": {
"dmg": "1",
"name": "The Mark",
"shown": true,
"speed": "0.2",
"soul_hearts": "1"
},
"080": {
"dmg": "0.5",
"name": "The Pact",
"shown": true,
"tears": "0.7",
"soul_hearts": "2"
},
"081": {
"name": "Dead Cat",
"shown": true,
"guppy": true,
"text": "+9 lives, sets heart containers to 1"
},
"082": {
"name": "Lord of the Pit",
"speed": "0.3",
"shown": true,
"text": "flying, speed delayed"
},
"083": {
"dmg": "0.7",
"name": "The Nail",
"shown": true,
"speed": "-0.18",
"text": "+1 soul heart, temporarily crush rocks",
"space": true
},
"084": {
"name": "We Need To Go Deeper!",
"shown": true,
"text": "spawns a trapdoor (10% chance of crawl space / black market)",
"space": true
},
"085": {
"name": "Deck of Cards",
"shown": true,
"text": "spawns a random tarot card",
"space": true
},
"086": {
"name": "Monstro's Tooth",
"shown": true,
"text": "summons monstro (120 dmg)",
"space": true
},
"087": {
"name": "Loki's Horns",
"shown": true,
"text": "chance to shoot 4 tears instead of 1"
},
"088": {
"name": "Little Chubby",
"shown": true,
"text": "familiar (3.5 dmg / tick)"
},
"089": {
"name": "Spider Bite",
"shown": true,
"text": "chance to shoot a slowing tear"
},
"090": {
"name": "The Small Rock",
"dmg": "1",
"speed": "-0.2",
"tears": "0.2",
"shown": true,
"text": "speed and tears delayed"
},
"091": {
"name": "Spelunker Hat",
"shown": true,
"text": "see adjacent special rooms on the map"
},
"092": {
"name": "Super Bandage",
"health": "1",
"shown": true,
"health_only": true,
"soul_hearts": "2",
"text": ""
},
"093": {
"name": "The Gamekid",
"shown": true,
"text": "temporary invincibility, 40 contact dmg",
"space": true
},
"094": {
"name": "Sack of Pennies",
"shown": true,
"text": "spawns a coin every 2 rooms cleared"
},
"095": {
"name": "Robo-Baby",
"shown": true,
"text": "familiar (3.5 dmg / laser)"
},
"096": {
"name": "Little C.H.A.D.",
"shown": true,
"text": "spawns a half heart every 2 rooms cleared"
},
"097": {
"name": "The Book of Sin",
"shown": true,
"text": "spawns a random pickup",
"space": true
},
"098": {
"name": "The Relic",
"shown": true,
"text": "spawns a soul heart every 4 rooms cleared"
},
"099": {
"name": "Little Gish",
"shown": true,
"text": "familiar (3.5 dmg / tear, chance to slow)"
},
"100": {
"name": "Little Steven",
"shown": true,
"text": "familiar (3.5 dmg / tear, homing tears)"
},
"101": {
"name": "The Halo",
"dmg": "0.3",
"health": "1",
"height": "0.5",
"range": "0.25",
"shown": true,
"speed": "0.3",
"tears": "0.2",
"text": ""
},
"102": {
"name": "Mom's Bottle of Pills",
"shown": true,
"text": "spawns a random pill",
"space": true
},
"103": {
"name": "The Common Cold",
"shown": true,
"text": "chance to shoot a poison tear"
},
"104": {
"name": "The Parasite",
"shown": true,
"text": "shots split in 2 pieces, each does 1/4 damage"
},
"105": {
"name": "The D6",
"shown": true,
"text": "rerolls pedestal items",
"space": true
},
"106": {
"name": "Mr. Mega",
"shown": true,
"text": "+5 bombs, bomb blast radius increased, bomb dmg increased from 50 to 110"
},
"107": {
"name": "Pinking Shears",
"shown": true,
"text": "spawns a melee familiar",
"space": true
},
"108": {
"name": "The Wafer",
"shown": true,
"text": "all dmg is reduced to half a heart"
},
"109": {
"name": "Money = Power",
"shown": true,
"text": "+0.04 dmg per coin held"
},
"110": {
"name": "Mom's Contacts",
"range": "0.25",
"shown": true,
"text": "chance to shoot a freeze tear, range delayed"
},
"111": {
"name": "The Bean",
"shown": true,
"text": "26 dmg per use",
"space": true
},
"112": {
"name": "Guardian Angel",
"shown": true,
"text": "orbital (7 dmg / tick)"
},
"113": {
"name": "Demon Baby",
"shown": true,
"text": "familiar (3 dmg / tear)"
},
"114": {
"name": "Mom's Knife",
"shown": true,
"text": "replaces tears with a knife (current dmg x 2 / tick)",
"in_summary": true,
"summary_name": "Knife"
},
"115": {
"name": "Ouija Board",
"shown": true,
"text": "spectral tears"
},
"116": {
"name": "9 Volt",
"shown": true,
"text": "quicker charge, fully charges current item on pickup"
},
"117": {
"name": "Dead Bird",
"shown": true,
"text": "spawns a bird familiar when hit (2 dmg / tick)"
},
"118": {
"name": "Brimstone",
"delay_x": "3",
"shown": true,
"text": "tears become blood laser, hits 12 or 13 times",
"in_summary": true,
"summary_name": "Brim"
},
"119": {
"name": "Blood Bag",
"health": "1",
"speed": "0.3",
"shown": true,
"text": "speed delayed"
},
"120": {
"name": "Odd Mushroom (Thin)",
"shown": true,
"speed": "0.3",
"tears": "1.7",
"text": "dmg * 0.9 - 0.4"
},
"121": {
"name": "Odd Mushroom (Thick)",
"dmg": "0.3",
"health": "1",
"height": "0.5",
"range": "0.25",
"shown": true,
"speed": "-0.1",
"text": ""
},
"122": {
"name": "Whore of Babylon",
"dmg": "1.5",
"shown": true,
"speed": "0.3",
"text": "only works with low red health"
},
"123": {
"name": "Monster Manual",
"shown": true,
"text": "summons a random familiar",
"space": true
},
"124": {
"name": "Dead Sea Scrolls",
"shown": true,
"text": "performs a random effect",
"space": true
},
"125": {
"name": "Bobby-Bomb",
"shown": true,
"text": "+5 bombs, homing bombs"
},
"126": {
"name": "Razor Blade",
"shown": true,
"text": "deals 1 heart dmg to self, gives a temporary +1.2 dmg per use",
"space": true
},
"127": {
"name": "Forget Me Now",
"shown": true,
"text": "generates a new floor",
"space": true
},
"128": {
"name": "Forever Alone",
"shown": true,
"text": "orbital (2 dmg / tick)"
},
"129": {
"name": "Bucket of Lard",
"health": "2",
"shown": true,
"speed": "-0.2",
"text": ""
},
"130": {
"name": "A Pony",
"shown": true,
"text": "flying, minimum speed 1.5",
"space": true
},
"131": {
"name": "Bomb Bag",
"shown": true,
"text": "spawns a bomb every 2 rooms cleared"
},
"132": {
"name": "A Lump of Coal",
"shown": true,
"text": "+dmg based on tear distance"
},
"133": {
"name": "Guppy's Paw",
"shown": true,
"guppy": true,
"text": "-1 heart container and +3 soul hearts",
"space": true
},
"134": {
"name": "Guppy's Tail",
"shown": true,
"guppy": true,
"text": "increased chance to find chests"
},
"135": {
"name": "IV Bag",
"shown": true,
"text": "spawns coins and deals dmg to self",
"space": true
},
"136": {
"name": "Best Friend",
"shown": true,
"text": "spawns a decoy (110 dmg explosion)"
},
"137": {
"name": "Remote Detonator",
"shown": true,
"text": "+5 bombs, manually detonate bombs",
"space": true
},
"138": {
"name": "Stigmata",
"dmg": "0.3",
"health": "1",
"shown": true,
"text": ""
},
"139": {
"name": "Mom's Purse",
"shown": true,
"text": "can carry 2 trinkets instead of 1"
},
"140": {
"name": "Bob's Curse",
"shown": true,
"text": "+5 bombs, bombs deal poison dmg"
},
"141": {
"name": "Pageant Boy",
"shown": true,
"text": "spawns 7 coins"
},
"142": {
"name": "Scapular",
"shown": true,
"text": "+1 soul heart if hit to half a red heart (once per room)"
},
"143": {
"name": "Speed Ball",
"shot_speed": "0.2",
"shown": true,
"speed": "0.3",
"text": ""
},
"144": {
"name": "Bum Friend",
"shown": true,
"text": "turns floor money into other pickups"
},
"145": {
"name": "Guppy's Head",
"shown": true,
"guppy": true,
"text": "spawn 2-4 blue flies",
"space": true
},
"146": {
"name": "Prayer Card",
"shown": true,
"text": "gives an eternal heart",
"space": true
},
"147": {
"name": "Notched Axe",
"shown": true,
"text": "breaks rocks and secret doors",
"space": true
},
"148": {
"name": "Infestation",
"shown": true,
"text": "spawns blue flies when hit"
},
"149": {
"name": "Ipecac",
"delay": "10",
"delay_x": "2",
"height": "13",
"shown": true,
"text": "explosive tears, +40 dmg",
"in_summary": true,
"summary_name": "Cac"
},
"150": {
"name": "Tough Love",
"shown": true,
"text": "chance to fire teeth tears (current dmg x 3.2)"
},
"151": {
"name": "The Mulligan",
"shown": true,
"text": "1/6 chance for blue fly on tear hit, effectively x1.33 damage"
},
"152": {
"name": "Technology 2",
"dmg_x": "0.65",
"shown": true,
"text": "laser tears (piercing)"
},
"153": {
"name": "Mutant Spider",
"delay": "3",
"delay_x" : "2.1",
"shown": true,
"text": "quad shot",
"in_summary": true,
"summary_name": "Quad"
},
"154": {
"name": "Chemical Peel",
"shown": true,
"text": "+2 flat dmg every 2nd shot"
},
"155": {
"name": "The Peeper",
"shown": true,
"text": "familiar (8 dmg / tick)"
},
"156": {
"name": "Habit",
"shown": true,
"text": "recharge one tick of space charge when hit"
},
"157": {
"name": "Bloody Lust",
"shown": true,
"text": "+dmg when hit (only for the current floor, max +6.5 dmg at 6 hits)"
},
"158": {
"name": "Crystal Ball",
"shown": true,
"text": "reveals the floor and spawns a card, rune, or soul heart",
"space": true
},
"159": {
"name": "Spirit of the Night",
"shown": true,
"text": "flight, spectral tears"
},
"160": {
"name": "Crack The Sky",
"shown": true,
"text": "create 5 beams (20 dmg)",
"space": true
},
"161": {
"name": "Ankh",
"shown": true,
"text": "+1 life (will respawn as blue baby)"
},
"162": {
"name": "Celtic Cross",
"shown": true,
"text": "shield when hit, based on luck"
},
"163": {
"name": "Ghost Baby",
"shown": true,
"text": "familiar (3.5 dmg / tear)"
},
"164": {
"name": "The Candle",
"shown": true,
"text": "shoots a flame (approx. 115 dmg)",
"space": true
},
"165": {
"name": "Cat-O-Nine-Tails",
"dmg": "1",
"shot_speed": "0.23",
"shown": true,
"text": ""
},
"166": {
"name": "D20",
"shown": true,
"text": "rerolls pickups",
"space": true
},
"167": {
"name": "Harlequin Baby",
"shown": true,
"text": "familiar (4 dmg / tear)"
},
"168": {
"name": "Epic Fetus",
"shown": true,
"text": "replaces tears with missiles (current dmg x 20)",
"in_summary": true,
"summary_name": "Epic"