-
Notifications
You must be signed in to change notification settings - Fork 0
/
items.js
2226 lines (2225 loc) · 71.3 KB
/
items.js
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
const items = [
{
rawName: "Armor-Piercing Rounds",
rawRarity: "Common",
rawDescription:
"Deal an additional 20% damage (+20% per stack) to bosses.\n",
rawId: "61\n",
rawCategory: "DamageAIBlacklist\n",
category: ["Damage"],
rarity: "Common",
expansion: "",
name: "Armor-Piercing Rounds",
position: 6,
},
{
rawName: "Bustling Fungus",
rawRarity: "Common",
rawDescription:
"After standing still for 1 second, create a zone that heals for 4.5% (+2.25% per stack) of your health every second to all allies within 3m (+1.5m per stack).\n",
rawId: "16\n",
rawCategory: "HealingAIBlacklist\n",
category: ["Healing"],
rarity: "Common",
expansion: "",
name: "Bustling Fungus",
position: 18,
},
{
rawName: "Bison Steak",
rawRarity: "Common",
rawDescription: "Increases maximum health by 25 (+25 per stack).\n",
rawId: "",
rawCategory: "Healing\n",
category: ["Healing"],
rarity: "Common",
expansion: "",
name: "Bison Steak",
position: 10,
},
{
rawName: "Bundle of Fireworks",
rawRarity: "Common",
rawDescription:
"Activating an interactable launches 8 (+4 per stack) fireworks that deal 300% base damage.\n",
rawId: "42\n",
rawCategory: "DamageAIBlacklist\n",
category: ["Damage"],
rarity: "Common",
expansion: "",
name: "Bundle of Fireworks",
position: 9,
},
{
rawName: "Backup Magazine",
rawRarity: "Common",
rawDescription: "Add +1 (+1 per stack) charge of your Secondary skill.\n",
rawId: "58\n",
rawCategory: "Utility\n",
category: ["Utility"],
rarity: "Common",
expansion: "",
name: "Backup Magazine",
position: 22,
},
{
rawName:
"Survivors of the Void - DLC ContentDelicate Watch is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info.Delicate Watch",
rawRarity: "Common",
rawDescription:
"Increase damage by 20% (+20% per stack). Taking damage to below 25% health breaks this item.\nRarityNoTier\n",
rawId: "",
rawCategory: "DamageLowHealth\n",
category: ["Damage", "Low Health"],
rarity: "Common",
expansion: "Survivors of the Void",
name: "Delicate Watch",
position: 11,
},
{
rawName: "Crowbar",
rawRarity: "Common",
rawDescription:
"Deal +75% (+75% per stack) damage to enemies above 90% health.\n",
rawId: "17\n",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Common",
expansion: "",
name: "Crowbar",
position: 8,
},
{
rawName: "Energy Drink",
rawRarity: "Common",
rawDescription: "Sprint speed is improved by 25% (+25% per stack).\n",
rawId: "",
rawCategory: "UtilitySprintRelated\n",
category: ["Utility", "Sprint Related"],
rarity: "Common",
expansion: "",
name: "Energy Drink",
position: 23,
},
{
rawName: "Focus Crystal",
rawRarity: "Common",
rawDescription:
"Increase damage to enemies within 13m by 20% (+20% per stack).\n",
rawId: "",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Common",
expansion: "",
name: "Focus Crystal",
position: 19,
},
{
rawName: "Cautious Slug",
rawRarity: "Common",
rawDescription:
"Increases base health regeneration by +3 hp/s (+3 hp/s per stack) while outside of combat.\n",
rawId: "",
rawCategory: "Healing\n",
category: ["Healing"],
rarity: "Common",
expansion: "",
name: "Cautious Slug",
position: 13,
},
{
rawName: "Gasoline",
rawRarity: "Common",
rawDescription:
"Killing an enemy ignites all enemies within 12m (+4m per stack) for 150% base damage. Additionally, enemies burn for 150% (+75% per stack) base damage.\n",
rawId: "",
rawCategory: "DamageOnKillEffect\n",
category: ["Damage", "On Kill Effect"],
rarity: "Common",
expansion: "",
name: "Gasoline",
position: 16,
},
{
rawName:
"Survivors of the Void - DLC ContentMocha is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info.Mocha",
rawRarity: "Common",
rawDescription:
"Increases attack speed by 7.5% (+7.5 per stack) and movement speed by 7% (+7% per stack).\n",
rawId: "",
rawCategory: "DamageUtility\n",
category: ["Damage", "Utility"],
rarity: "Common",
expansion: "Survivors of the Void",
name: "Mocha",
position: 2,
},
{
rawName: "Monster Tooth",
rawRarity: "Common",
rawDescription:
"Killing an enemy spawns a healing orb that heals for 8 plus an additional 2% (+2% per stack) of maximum health.\n",
rawId: "",
rawCategory: "HealingOnKillEffect\n",
category: ["Healing", "On Kill Effect"],
rarity: "Common",
expansion: "",
name: "Monster Tooth",
position: 27,
},
{
rawName: "Medkit",
rawRarity: "Common",
rawDescription:
"2 seconds after getting hurt, heal for 20 plus an additional 5% (+5% per stack) of maximum health.\n",
rawId: "36\n",
rawCategory: "Healing\n",
category: ["Healing"],
rarity: "Common",
expansion: "",
name: "Medkit",
position: 17,
},
{
rawName:
"Survivors of the Void - DLC ContentOddly-shaped Opal is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info.Oddly-shaped Opal",
rawRarity: "Common",
rawDescription:
"Increase armor by 100 (+100 per stack) while out of danger.\n",
rawId: "",
rawCategory: "Utility\n",
category: ["Utility"],
rarity: "Common",
expansion: "Survivors of the Void",
name: "Oddly-shaped Opal",
position: 20,
},
{
rawName: "Repulsion Armor Plate",
rawRarity: "Common",
rawDescription:
"Reduce all incoming damage by 5 (+5 per stack). Cannot be reduced below 1.\n",
rawId: "",
rawCategory: "Utility\n",
category: ["Utility"],
rarity: "Common",
expansion: "",
name: "Repulsion Armor Plate",
position: 1,
},
{
rawName:
"Survivors of the Void - DLC ContentRoll of Pennies is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info.Roll of Pennies",
rawRarity: "Common",
rawDescription:
"Gain 3 (+3 per stack) gold on taking damage from an enemy. Scales over time.\n",
rawId: "",
rawCategory: "UtilityAIBlacklist\n",
category: ["Utility"],
rarity: "Common",
expansion: "Survivors of the Void",
name: "Roll of Pennies",
position: 12,
},
{
rawName: "Personal Shield Generator",
rawRarity: "Common",
rawDescription:
"Gain a shield equal to 8% (+8% per stack) of your maximum health. Recharges outside of danger.\n",
rawId: "",
rawCategory: "Utility\n",
category: ["Utility"],
rarity: "Common",
expansion: "",
name: "Personal Shield Generator",
position: 21,
},
{
rawName:
"Survivors of the Void - DLC ContentPower Elixir is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info.Power Elixir",
rawRarity: "CommonHealing",
rawDescription:
"Taking damage to below 25% health consumes this item, healing you for 75% of maximum health.\nRarityNoTier\n",
rawId: "",
rawCategory: "HealingLowHealthAIBlacklist\n",
category: ["Healing", "Low Health"],
rarity: "Common",
expansion: "Survivors of the Void",
name: "Power Elixir",
position: 14,
},
{
rawName: "Rusted Key",
rawRarity: "Common",
rawDescription:
"A hidden cache containing an item (80%/20%) will appear in a random location on each stage. Opening the cache consumes this item.\n",
rawId: "\n",
rawCategory: "UtilityAIBlacklist\n",
category: ["Utility"],
rarity: "Common",
expansion: "",
name: "Rusted Key",
position: 28,
},
{
rawName: "Paul's Goat Hoof",
rawRarity: "Common",
rawDescription: "Increases movement speed by 14% (+14% per stack).",
rawCategory: "Utility\n",
category: ["Utility"],
rawId: 8,
rarity: "Common",
expansion: "",
name: "Paul's Goat Hoof",
id: 8,
position: 15,
},
{
rawName: "Tougher Times",
rawRarity: "Common",
rawDescription:
"15% (+15% per stack) chance to block incoming damage. Unaffected by luck.\n",
rawId:
"Survivors of the Void - DLC ContentSafer Spaces is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info. Safer SpacesSurvivors of the Void - DLC ContentThis content is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info.Safer SpacesBlock the next source of damage. Corrupts all Tougher Times.Blocks incoming damage once. Recharges after 15 seconds (-10% per stack) Corrupts all Tougher Times.\n",
rawCategory: "UtilityBrotherBlacklist\n",
category: ["Utility"],
rarity: "Common",
expansion: "",
id: 1,
name: "Tougher Times",
position: 4,
},
{
rawName: "Tri-Tip Dagger",
rawRarity: "Common",
rawDescription:
"10% (+10% per stack) chance to bleed an enemy for 240% base damage.\n",
rawId: "20\n",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Common",
expansion: "",
name: "Tri-Tip Dagger",
position: 5,
},
{
rawName: "Stun Grenade",
rawRarity: "Common",
rawDescription:
"5% (+5% on stack) chance on hit to stun enemies for 2 seconds.\n",
rawId: "",
rawCategory: "UtilityAIBlacklist\n",
category: ["Utility"],
rarity: "Common",
expansion: "",
name: "Stun Grenade",
position: 25,
},
{
rawName: "Soldier's Syringe",
rawRarity: "Common",
rawDescription: "Increases attack speed by 15% (+15% per stack).",
rawId: "0",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Common",
expansion: "",
id: 0,
name: "Soldier's Syringe",
position: 26,
},
{
rawName: "Topaz Brooch",
rawRarity: "Common",
rawDescription:
"Gain a temporary barrier on kill for 15 health (+15 per stack).\n",
rawId: "",
rawCategory: "UtilityHealingOnKillEffect\n",
category: ["Healing", "Utility", "On Kill Effect"],
rarity: "Common",
expansion: "",
name: "Topaz Brooch",
position: 3,
},
{
rawName: "Sticky Bomb",
rawRarity: "Common",
rawDescription:
"5% (+5% per stack) chance on hit to attach a bomb to an enemy, detonating for 180% TOTAL damage.\n",
rawId: "",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Common",
expansion: "",
name: "Sticky Bomb",
position: 24,
},
{
rawName: "Bandolier",
rawRarity: "Uncommon",
rawDescription:
"18% (+10% per stack) chance on kill to drop an ammo pack that resets all skill cooldowns.\n",
rawId: "",
rawCategory: "UtilityOnKillEffect\n",
category: ["Utility", "On Kill Effect"],
rarity: "Uncommon",
expansion: "",
name: "Bandolier",
position: 2,
},
{
rawName: "Death Mark",
rawRarity: "Uncommon",
rawDescription:
"Enemies with 4 or more debuffs are marked for death, increasing damage taken by 50% from all sources for 7 (+7 per stack) seconds.\n",
rawId: "",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Uncommon",
expansion: "",
name: "Death Mark",
position: 5,
},
{
rawName: "Fuel Cell",
rawRarity: "Uncommon",
rawDescription:
"Hold an additional equipment charge (+1 per stack). Reduce equipment cooldown by 15% (+15% per stack).\n",
rawId: "",
rawCategory: "UtilityEquipmentRelated\n",
category: ["Utility", "Equipment Related"],
rarity: "Uncommon",
expansion: "",
name: "Fuel Cell",
position: 3,
voidTier: 2,
},
{
rawName: "Warbanner",
rawRarity: "Common",
rawDescription:
"On level up or starting the Teleporter event, drop a banner that strengthens all allies within 16m (+8m per stack). Raise attack and movement speed by 30%.\n",
rawId: "",
rawCategory: "UtilityAIBlacklistTurretBlacklist\n",
category: ["Utility"],
rarity: "Common",
expansion: "",
name: "Warbanner",
position: 29,
},
{
rawName: "Chronobauble",
rawRarity: "Uncommon",
rawDescription:
"Slow enemies on hit for -60% movement speed for 2s (+2s per stack).\n",
rawId: "65\n",
rawCategory: "Utility\n",
category: ["Utility"],
rarity: "Uncommon",
expansion: "",
name: "Chronobauble",
position: 23,
},
{
rawName: "Infusion",
rawRarity: "Uncommon",
rawDescription:
"Killing an enemy increases your health permanently by 1 (+1 per stack), up to a maximum of 100 (+100 per stack) health.\n",
rawId: "33\n",
rawCategory: "UtilityHealingOnKillEffect\n",
category: ["Healing", "Utility", "On Kill Effect"],
rarity: "Uncommon",
expansion: "",
name: "Infusion",
position: 15,
},
{
rawName: "Hopoo Feather",
rawRarity: "Uncommon",
rawDescription: "Gain +1 (+1 per stack) maximum jump count.\n",
rawId: "",
rawCategory: "UtilityAIBlacklist\n",
category: ["Utility"],
rarity: "Uncommon",
expansion: "",
name: "Hopoo Feather",
position: 10,
},
{
rawName:
"Survivors of the Void - DLC ContentIgnition Tank is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info.Ignition Tank",
rawRarity: "Uncommon",
rawDescription:
"Ignite effects deal +300% (+300% per stack) more damage over time.\n",
rawId: "",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Uncommon",
expansion: "Survivors of the Void",
name: "Ignition Tank",
position: 27,
},
{
rawName: "Leeching Seed",
rawRarity: "Uncommon",
rawDescription: "Dealing damage heals you for 1 (+1 per stack) health.\n",
rawId: "",
rawCategory: "Healing\n",
category: ["Healing"],
rarity: "Uncommon",
expansion: "",
name: "Leeching Seed",
position: 22,
},
{
rawName: "Lepton Daisy",
rawRarity: "Uncommon",
rawDescription:
"Release a healing nova during the Teleporter event, healing all nearby allies for 50% of their maximum health. Occurs 1 (+1 per stack) times.\n",
rawId: "",
rawCategory: "HealingAIBlacklistTurretBlacklist\n",
category: ["Healing"],
rarity: "Uncommon",
expansion: "",
name: "Lepton Daisy",
position: 28,
},
{
rawName: "Old War Stealthkit",
rawRarity: "Uncommon",
rawDescription:
"Falling below 25% health causes you to gain 40% movement speed and invisibility for 5s. Recharges every 30 seconds (-50% per stack).\n",
rawId: "",
rawCategory: "UtilityLowHealth\n",
category: ["Utility", "Low Health"],
rarity: "Uncommon",
expansion: "",
name: "Old War Stealthkit",
position: 19,
},
{
rawName: "Old Guillotine",
rawRarity: "Uncommon",
rawDescription:
"Instantly kill Elite monsters below 13% (+13% per stack) health.\n",
rawId: "78\n",
rawCategory: "DamageAIBlacklist\n",
category: ["Damage"],
rarity: "Uncommon",
expansion: "",
name: "Old Guillotine",
position: 8,
},
{
rawName: "Red Whip",
rawRarity: "Uncommon",
rawDescription:
"Leaving combat boosts your movement speed by 30% (+30% per stack).\n",
rawId: "",
rawCategory: "Utility\n",
category: ["Utility"],
rarity: "Uncommon",
expansion: "",
name: "Red Whip",
position: 25,
},
{
rawName: "Predatory Instincts",
rawRarity: "Uncommon",
rawDescription:
"Gain 5% critical chance. Critical strikes increase attack speed by 12%. Maximum cap of 36% (+24% per stack) attack speed.\n",
rawId: "19\n",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Uncommon",
expansion: "",
name: "Predatory Instincts",
position: 1,
},
{
rawName: "Razorwire",
rawRarity: "Uncommon",
rawDescription:
"Getting hit causes you to explode in a burst of razors, dealing 160% damage. Hits up to 5 (+2 per stack) targets in a 25m (+10m per stack) radius\n",
rawId: "",
rawCategory: "DamageAIBlacklist\n",
category: ["Damage"],
rarity: "Uncommon",
expansion: "",
name: "Razorwire",
position: 29,
},
{
rawName:
"Survivors of the Void - DLC ContentShuriken is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info.Shuriken",
rawRarity: "Uncommon",
rawDescription:
"Activating your Primary skill also throws a shuriken that deals 400% (+100% per stack) base damage. You can hold up to 3 (+1 per stack) shurikens which all reload over 10 seconds.\n",
rawId: "",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Uncommon",
expansion: "Survivors of the Void",
name: "Shuriken",
position: 20,
},
{
rawName: "Squid Polyp",
rawRarity: "Uncommon",
rawDescription:
"Activating an interactable summons a Squid Turret that attacks nearby enemies at 100% (+100% per stack) attack speed. Lasts 30 seconds.\nHealth Regen1/s (+0.2 per level)\n",
rawId: "103\n",
rawCategory: "DamageAIBlacklist\n3\n",
category: ["Damage"],
rarity: "Uncommon",
expansion: "",
name: "Squid Polyp",
position: 26,
},
{
rawName:
"Survivors of the Void - DLC ContentShipping Request Form is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info.Shipping Request Form",
rawRarity: "Uncommon",
rawDescription:
"A delivery containing 2 items (79%/20%/1%) will appear in a random location on each stage. (Increases rarity chances of the items per stack).\n",
rawId: "",
rawCategory: "Utility\n",
category: ["Utility"],
rarity: "Uncommon",
expansion: "Survivors of the Void",
name: "Shipping Request Form",
position: 12,
},
{
rawName: "Rose Buckler",
rawRarity: "Uncommon",
rawDescription: "Increase armor by 30 (+30 per stack) while sprinting.\n",
rawId: "",
rawCategory: "UtilitySprintRelated\n",
category: ["Utility", "Sprint Related"],
rarity: "Uncommon",
expansion: "",
name: "Rose Buckler",
position: 24,
},
{
rawName: "Ukulele",
rawRarity: "Uncommon",
rawDescription:
"25% chance to fire chain lightning for 80% TOTAL damage on up to 3 (+2 per stack) targets within 20m (+2m per stack).\n",
rawId: "11\n",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Uncommon",
expansion: "",
name: "Ukulele",
position: 4,
},
{
rawName: "Aegis",
rawRarity: "Legendary",
rawDescription:
"Healing past full grants you a temporary barrier for 50% (+50% per stack) of the amount you healed.\n",
rawId: "",
rawCategory: "UtilityHealing\n",
category: ["Healing", "Utility"],
rarity: "Legendary",
expansion: "",
name: "Aegis",
position: 3,
},
{
rawName: "Wax Quail",
rawRarity: "Uncommon",
rawDescription:
"Jumping while sprinting boosts you forward by 10m (+10m per stack).\n",
rawId: "76\n",
rawCategory: "UtilitySprintRelated\n",
category: ["Utility", "Sprint Related"],
rarity: "Uncommon",
expansion: "",
name: "Wax Quail",
position: 16,
},
{
rawName: "Brainstalks",
rawRarity: "Legendary",
rawDescription:
"Upon killing an elite monster, enter a frenzy for 4s (+4s per stack) where skills have 0.5s cooldowns.\n",
rawId: "70\n",
rawCategory: "UtilityAIBlacklistOnKillEffect\n",
category: ["Utility", "On Kill Effect"],
rarity: "Legendary",
expansion: "",
name: "Brainstalks",
position: 17,
},
{
rawName: "Brilliant Behemoth",
rawRarity: "Legendary",
rawDescription:
"All your attacks explode in a 4m (+2.5m per stack) radius for a bonus 60% TOTAL damage to nearby enemies.\n",
rawId: "",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Legendary",
expansion: "",
name: "Brilliant Behemoth",
position: 4,
id: 3,
},
{
rawName:
"Survivors of the Void - DLC ContentBottled Chaos is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info.Bottled Chaos",
rawRarity: "Legendary",
rawDescription:
"Trigger a random equipment effect 1 (+1 per stack) time(s).\n",
rawId: "",
rawCategory: "Utility\n",
category: ["Utility"],
rarity: "Legendary",
expansion: "Survivors of the Void",
name: "Bottled Chaos",
position: 22,
},
{
rawName: "Alien Head",
rawRarity: "Legendary",
rawDescription: "Reduce skill cooldowns by 25% (+25% per stack).\n",
rawId: "",
rawCategory: "Utility\n",
category: ["Utility"],
rarity: "Legendary",
expansion: "",
name: "Alien Head",
position: 1,
},
{
rawName: "Ceremonial Dagger",
rawRarity: "Legendary",
rawDescription:
"Killing an enemy fires out 3 homing daggers that deal 150% (+150% per stack) base damage.\n",
rawId: "",
rawCategory: "DamageOnKillEffectAIBlacklist\n",
category: ["Damage", "On Kill Effect"],
rarity: "Legendary",
expansion: "",
name: "Ceremonial Dagger",
position: 8,
},
{
rawName: "Hardlight Afterburner",
rawRarity: "Legendary",
rawDescription:
"Add +2 (+2 per stack) charges of your Utility skill. Reduces Utility skill cooldown by 33%.\n",
rawId: "",
rawCategory: "Utility\n",
category: ["Utility"],
rarity: "Legendary",
expansion: "",
name: "Hardlight Afterburner",
position: 31,
},
{
rawName: "Happiest Mask",
rawRarity: "Legendary",
rawDescription:
"Killing enemies has a 7% chance to spawn a ghost of the killed enemy with 1500% damage. Lasts 30s (+30s per stack).\n",
rawId: "",
rawCategory: "DamageUtilityOnKillEffect\n",
category: ["Damage", "Utility", "On Kill Effect"],
rarity: "Legendary",
expansion: "",
name: "Happiest Mask",
position: 12,
},
{
rawName: "Defensive Microbots",
rawRarity: "Legendary",
rawDescription:
"Shoot down 1 (+1 per stack) projectiles within 20m every 0.5 seconds. Recharge rate scales with attack speed.\n",
rawId: "",
rawCategory: "UtilityWorldUnique\n",
category: ["Utility"],
rarity: "Legendary",
expansion: "",
name: "Defensive Microbots",
position: 100,
hide: true,
},
{
rawName: "H3AD-5T v2",
rawRarity: "Legendary",
rawDescription:
"Increase jump height. Creates a 5m-100m radius kinetic explosion on hitting the ground, dealing 1000%-10000% base damage that scales up with fall distance. Recharges in 10 (-50% per stack) seconds.\n",
rawId: "",
rawCategory: "DamageUtilityAIBlacklist\n",
category: ["Damage", "Utility"],
rarity: "Legendary",
expansion: "",
name: "H3AD-5T v2",
position: 11,
},
{
rawName: "Frost Relic",
rawRarity: "Legendary",
rawDescription:
"Killing an enemy surrounds you with an ice storm that deals 1200% damage per second and slows enemies by 80% for 1.5s. The storm grows with every kill, increasing its radius by 2m. Stacks up to 18m (+12m per stack).\n",
rawId: "",
rawCategory: "DamageOnKillEffect\n",
category: ["Damage", "On Kill Effect"],
rarity: "Legendary",
expansion: "",
name: "Frost Relic",
position: 14,
},
{
rawName: "Interstellar Desk Plant",
rawRarity: "Legendary",
rawDescription:
"On kill, plant a healing fruit seed that grows into a plant after 5 seconds.The plant heals for 5% of maximum health every 0.5 second to all allies within 10m (+5.0m per stack). Lasts 10 seconds.\n",
rawId: "",
rawCategory: "Healing\n",
category: ["Healing"],
rarity: "Legendary",
expansion: "",
name: "Interstellar Desk Plant",
position: 21,
},
{
rawName: "Resonance Disc",
rawRarity: "Legendary",
rawDescription:
"Killing 4 enemies in 7 seconds charges the Resonance Disc. The disc launches itself toward a target for 300% base damage (+300% per stack), piercing all enemies it doesn't kill, and then explodes for 1000% base damage (+1000% per stack). Returns to the user, striking all enemies along the way for 300% base damage (+300% per stack).\n",
rawId: "",
rawCategory: "DamageOnKillEffect\n",
category: ["Damage", "On Kill Effect"],
rarity: "Legendary",
expansion: "",
name: "Resonance Disc",
position: 18,
},
{
rawName: "Sentient Meat Hook",
rawRarity: "Legendary",
rawDescription:
"20% (+20% per stack) chance on hit to fire homing hooks at up to 10 (+5 per stack) enemies for 100% TOTAL damage.\n",
rawId: "38\n",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Legendary",
expansion: "",
name: "Sentient Meat Hook",
position: 5,
},
{
rawName: "Rejuvenation Rack",
rawRarity: "Legendary",
rawDescription: "Heal +100% (+100% per stack) more.\n",
rawId: "75\n",
rawCategory: "Healing\n",
category: ["Healing"],
rarity: "Legendary",
expansion: "",
name: "Rejuvenation Rack",
position: 16,
},
{
rawName:
"Survivors of the Void - DLC ContentLaser Scope is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info.Laser Scope",
rawRarity: "Legendary",
rawDescription:
"Critical Strikes deal an additional 100% damage (+100% per stack).\n",
rawId: "",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Legendary",
expansion: "Survivors of the Void",
name: "Laser Scope",
position: 7,
},
{
rawName:
"Survivors of the Void - DLC ContentSpare Drone Parts is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info.Spare Drone Parts",
rawRarity: "Legendary",
rawDescription:
"Gain Col. Droneman. Drones gain +50% (+50% per stack) attack speed and cooldown reduction. Drones gain 10% chance to fire a missile on hit, dealing 300% TOTAL damage. Drones gain an automatic chain gun that deals 6x100% damage, bouncing to 2 enemies.\nHealth Regen9/s (+1.8 per level)\n",
rawId: "",
rawCategory: "DamageAIBlacklist\n20 m/s\n",
category: ["Damage"],
rarity: "Legendary",
expansion: "Survivors of the Void",
name: "Spare Drone Parts",
position: 9,
},
{
rawName:
"Survivors of the Void - DLC ContentSymbiotic Scorpion is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info.Symbiotic Scorpion",
rawRarity: "Legendary",
rawDescription:
"100% chance on hit to reduce armor by 2 (+2 per stack) permanently.\n",
rawId: "",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Legendary",
expansion: "Survivors of the Void",
name: "Symbiotic Scorpion",
position: 20,
},
{
rawName: "Shattering Justice",
rawRarity: "Legendary",
rawDescription:
"After hitting an enemy 5 times, reduce their armor by 60 for 8 (+8 per stack) seconds.\n",
rawId: "",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Legendary",
expansion: "",
name: "Shattering Justice",
position: 2,
},
{
rawName: "Soulbound Catalyst",
rawRarity: "Legendary",
rawDescription: "Kills reduce equipment cooldown by 4s (+2s per stack).\n",
rawId: "51\n",
rawCategory: "UtilityOnKillEffectEquipmentRelated\n",
category: ["Utility", "On Kill Effect", "Equipment Related"],
rarity: "Legendary",
expansion: "",
name: "Soulbound Catalyst",
position: 29,
},
{
rawName: "Unstable Tesla Coil",
rawRarity: "Legendary",
rawDescription:
"Fire out lightning that hits 3 (+2 per stack) enemies for 200% base damage every 0.5s. The Tesla Coil switches off every 10 seconds.\n",
rawId: "32\n",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Legendary",
expansion: "",
name: "Unstable Tesla Coil",
position: 24,
},
{
rawName: "Wake of Vultures",
rawRarity: "Legendary",
rawDescription:
"Gain the power of any killed elite monster for 8s (+5s per stack).\n",
rawId: "",
rawCategory: "DamageUtilityAIBlacklistOnKillEffect\n",
category: ["Damage", "Utility", "On Kill Effect"],
rarity: "Legendary",
expansion: "",
name: "Wake of Vultures",
position: 13,
},
{
rawName: "Artifact Key",
rawRarity: "BossBulwark's Ambry",
rawDescription: "A stone shard with immense power.\n",
rawId: "",
rawCategory: "WorldUnique\n",
category: [],
rarity: "Boss",
expansion: "",
name: "Artifact Key",
position: 100,
hide: true,
},
{
rawName:
"Survivors of the Void - DLC ContentDefense Nucleus is part of the Survivors of the Void DLC. It is only available if the DLC is enabled when starting a run.Click for more info.Defense Nucleus",
rawRarity: "BossXi Construct",
rawDescription:
"Killing elite monsters spawns an Alpha Construct with bonus 300% damage and 300% health. Limited to 4 (+4 per stack).\nDamage48 (+9.6 per level)\n",
rawId: "",
rawCategory: "DamageOnKillEffect\n",
category: ["Damage", "On Kill Effect"],
rarity: "Boss",
bossDrop: "Xi Construct",
expansion: "Survivors of the Void",
name: "Defense Nucleus",
position: 6,
},
{
rawName: "Charged Perforator",
rawRarity: "BossOverloading Worm",
rawDescription:
"10% chance on hit to down a lightning strike, dealing 500% (+500% per stack) damage.\n",
rawId: "",
rawCategory: "Damage\n",
category: ["Damage"],
rarity: "Boss",
expansion: "",
name: "Charged Perforator",
position: 5,
},
{
rawName: "Empathy Cores",
rawRarity: "BossSolus Control Unit",
rawDescription:
"Every 30 seconds, summon two Solus Probes that gain +100% (+100% per stack) damage per ally on your team.\n",
rawId: "",
rawCategory: "UtilityTurretBlacklist\n",
category: ["Utility"],
rarity: "Boss",
expansion: "",
name: "Empathy Cores",
position: 9,
},
{
rawName: "Genesis Loop",
rawRarity: "BossWandering Vagrant",
rawDescription:
"Falling below 25% health causes you to explode, dealing 6000% base damage. Recharges every 30 / (2 +1 per stack) seconds .\n",
rawId: "97\n",
rawCategory: "DamageLowHealth\n",
category: ["Damage", "Low Health"],
rarity: "Boss",
expansion: "",
name: "Genesis Loop",
position: 7,
},
{
rawName: "Irradiant Pearl",
rawRarity: "BossCleansing Pool",
rawDescription: "Increases ALL stats by 10% (+10% per stack).\n",
rawId: "93\n",
rawCategory: "DamageHealingUtilityWorldUnique\n",
category: ["Damage", "Healing", "Utility"],
rarity: "Boss",
expansion: "",
name: "Irradiant Pearl",
position: 100,
hide: true,
},
{