-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbonusItemInfo.json
5397 lines (5341 loc) · 148 KB
/
bonusItemInfo.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
{
"itemTagDefinitions": {
"//comment1": "Drop type tags",
"Generic": {
"displayName": "Generic",
"iconPath": "assets/img/Icons/AccordionIcons/Chaos.png",
"description": "General currency, drops anywhere",
"isHiddenByDefault": false,
"group": "currency1"
},
"LeagueDrop": {
"displayName": "League Mechanic Drop",
"iconPath": "assets/img/Icons/AccordionIcons/Essence.png",
"description": "Primary Source: Specific league mechanics",
"isHiddenByDefault": false,
"group": "currency1"
},
"BossDrop": {
"displayName": "Boss or Special Drop",
"iconPath": "assets/img/Icons/AccordionIcons/AwakenersOrb.png",
"description": "Primary Source: Specific encounter",
"isHiddenByDefault": false,
"group": "currency1"
},
"NonDrop": {
"displayName": "Non-Drop",
"iconPath": "assets/img/Icons/AccordionIcons/BestiaryOrb.png",
"description": "Primary Source: None, currently unobtainable in challenge leagues",
"isHiddenByDefault": true,
"group": "currency1"
},
"//comment2": "Drop source or common currency type tags",
"Breach": {
"displayName": "Breach",
"iconPath": "assets/img/Icons/AccordionIcons/Breachstone.png",
"description": "Drops from Breach Encounters and Rewards",
"isHiddenByDefault": false,
"group": "currency2"
},
"Harbinger": {
"displayName": "Harbinger",
"iconPath": "assets/img/Icons/AccordionIcons/FracturingOrb.png",
"description": "Drops from Harbinger encounters and Rewards",
"isHiddenByDefault": false,
"group": "currency2"
},
"Heist": {
"displayName": "Heist",
"iconPath": "assets/img/Icons/AccordionIcons/HeistGrandBlueprint.png",
"description": "Drops from Heist related content",
"isHiddenByDefault": false,
"group": "currency2"
},
"Beyond": {
"displayName": "Beyond",
"iconPath": "assets/img/Icons/AccordionIcons/TaintedOrbofFusing.png",
"description": "Drops from Beyond demons",
"isHiddenByDefault": false,
"group": "currency2"
},
"Harvest": {
"displayName": "Harvest",
"iconPath": "assets/img/Icons/AccordionIcons/HarvestSeed.png",
"description": "Drops from Harvest",
"isHiddenByDefault": false,
"group": "currency2"
},
"Lab": {
"displayName": "Lab",
"iconPath": "assets/img/Icons/AccordionIcons/UberLabOffering.png",
"description": "Drops from the Eternal Labyrinth",
"isHiddenByDefault": false,
"group": "currency2"
},
"Eldritch": {
"displayName": "Eldritch",
"iconPath": "assets/img/Icons/AccordionIcons/ExceptionalEldritchIchor.png",
"description": "Drops from Exarch and Eater influenced monsters or bosses",
"isHiddenByDefault": false,
"group": "currency2"
},
"Report": {
"displayName": "Scouting Report",
"iconPath": "assets/img/Icons/AccordionIcons/ScoutingReport.png",
"description": "Scouting Report",
"isHiddenByDefault": false,
"group": "currency2"
},
"Catalyst": {
"displayName": "Catalyst",
"iconPath": "assets/img/Icons/AccordionIcons/ImbuedCatalyst.png",
"description": "Drops from ultimatum encounters",
"isHiddenByDefault": false,
"group": "currency2"
},
"Expedition": {
"displayName": "Expedition",
"iconPath": "assets/img/Icons/AccordionIcons/ExpeditionLogbookMap.png",
"description": "Drops from Expedition encounters",
"isHiddenByDefault": false,
"group": "currency2"
},
"Blight": {
"displayName": "Blight",
"iconPath": "assets/img/Icons/AccordionIcons/BlightOil.png",
"description": "Drops from Blight encounters",
"isHiddenByDefault": false,
"group": "currency2"
},
"Ancestors": {
"displayName": "Ancestors",
"iconPath": "assets/img/Icons/AccordionIcons/HinekorasSight.png",
"description": "",
"isHiddenByDefault": false,
"group": "currency2"
},
"//comment3": "tags for highly specific items to give them some tag and provide isHiddenByDefault",
"Meme": {
"displayName": "Redacted",
"iconPath": "assets/img/Icons/AccordionIcons/FishingRod.png",
"description": "Redacted",
"isHiddenByDefault": true,
"group": "currency3"
},
"RuthlessOnly": {
"displayName": "Ruthless exclusive",
"iconPath": "assets/img/Icons/AccordionIcons/EternalOrb.png",
"description": "Can only drop in ruthless",
"isHiddenByDefault": false,
"group": "currency3"
},
"//comment4": "Divination card outcome tags",
"GemOutcome": {
"displayName": "Gem Outcome",
"iconPath": "assets/img/Icons/AccordionIcons/SkillGemRed1.png",
"description": "Gives a Gem reward when turned in",
"isHiddenByDefault": false,
"group": "divination1"
},
"CurrencyOutcome": {
"displayName": "Currency Outcome",
"iconPath": "assets/img/Icons/AccordionIcons/Chaos.png",
"description": "Gives a Currency reward when turned in",
"isHiddenByDefault": false,
"group": "divination1"
},
"UniqueOutcome": {
"displayName": "Unique Outcome",
"iconPath": "assets/img/Icons/AccordionIcons/Unique.png",
"description": "Gives a Unique item reward when turned in",
"isHiddenByDefault": false,
"group": "divination1"
},
"SixLinkOutcome": {
"displayName": "Six Link Outcome",
"iconPath": "assets/img/Icons/AccordionIcons/Fusing.png",
"description": "Gives a Six-Link reward when turned in",
"isHiddenByDefault": false,
"group": "divination1"
},
"MapOutcome": {
"displayName": "Map or Fragment Outcome",
"iconPath": "assets/img/Icons/AccordionIcons/Map.png",
"description": "Gives a Map, Fragment or other similar reward when turned in",
"isHiddenByDefault": false,
"group": "divination1"
},
"InfluencedOutcome": {
"displayName": "Influenced Outcome",
"iconPath": "assets/img/Icons/AccordionIcons/Voidorb.png",
"description": "Gives an item that is influenced",
"isHiddenByDefault": false,
"group": "divination1"
}
},
"//comment1": "These item bonus info texts are displayed in the FilterBlade Customizer tierList hoverBoxes. The texts are separate for section, baseType and (optional) unique name. The structure is: section (e.g. Uniques, Currency, ...) -> 'items' -> baseType (e.g. Simple Robe) -> property 1: 'text' (string to be displayed for the entire baseType), property 2: 'items' -> uniqueName (e.g. Tabula Rasa) -> 'text' (string to be displayed just for this one specific unique).",
"bonusItemInfo": {
"Currency": {
"displayTagsNextToItem": false,
"items": {
"Tailoring Orb": {
"text": "Drops from Blueprints<br>Adds or replaces an enchantment on a body armour. This may reforge the body armour's sockets",
"tags": ["Heist", "BossDrop"]
},
"Tempering Orb": {
"text": "Drops from Blueprints<br>Adds or replaces an enchantment on a weapon. This may reforge the weapon's sockets",
"tags": ["Heist", "BossDrop"]
},
"Veiled Orb": {
"text": "Drops from Catarina<br>Removes a random modifier and adds a random veiled modifier to a rare item.",
"tags": ["BossDrop"]
},
"Sacred Crystallised Lifeforce": {
"text": "Drops from Oshabi<br>Used at the Horticrafting bench in your hideout for high tier crafting options",
"tags": ["Harvest", "BossDrop"]
},
"Vivid Crystallised Lifeforce": {
"text": "Yellow harvest crafting material",
"tags": ["Harvest", "LeagueDrop"]
},
"Wild Crystallised Lifeforce": {
"text": "Purple harvest crafting material",
"tags": ["Harvest", "LeagueDrop"]
},
"Primal Crystallised Lifeforce": {
"text": "Blue harvest crafting material",
"tags": ["Harvest", "LeagueDrop"]
},
"Tainted Divine Teardrop": {
"text": "Unpredictably raises or lowers the tier of each modifier on a corrupted rare item",
"tags": ["Beyond", "LeagueDrop"]
},
"Tainted Exalted Orb": {
"text": "Unpredictably adds or removes a modifier on a corrupted rare item",
"tags": ["Beyond", "LeagueDrop"]
},
"Tainted Chaos Orb": {
"text": "Unpredictably either reforges a corrupted rare item with new random modifiers or removes all of its modifiers",
"tags": ["Beyond", "LeagueDrop"]
},
"Tainted Orb of Fusing": {
"text": "Unpredictably adds or removes a link to the largest group of linked sockets on a corrupted item",
"tags": ["Beyond", "LeagueDrop"]
},
"Tainted Mythic Orb": {
"text": "Unpredictably either upgrades a corrupted item to unique rarity or destroys it",
"tags": ["Beyond", "LeagueDrop"]
},
"Tainted Chromatic Orb": {
"text": "Unpredictably reforges the colour of sockets on a corrupted item",
"tags": ["Beyond", "LeagueDrop"]
},
"Tainted Jeweller's Orb": {
"text": "Unpredictably adds or removes a socket on a corrupted item",
"tags": ["Beyond", "LeagueDrop"]
},
"Tainted Armourer's Scrap": {
"text": "Randomises the quality of a corrupted armour",
"tags": ["Beyond", "LeagueDrop"]
},
"Tainted Blacksmith's Whetstone": {
"text": "Randomises the quality of a corrupted weapon",
"tags": ["Beyond", "LeagueDrop"]
},
"Eldritch Chaos Orb": {
"text": "If The Searing Exarch is dominant, reroll prefix modifiers. If The Eater of Worlds is dominant, reroll suffix modifiers",
"tags": ["Eldritch", "Generic"]
},
"Eldritch Orb of Annulment": {
"text": "If The Searing Exarch is dominant, remove a prefix modifier. If The Eater of Worlds is dominant, remove a suffix modifier",
"tags": ["Eldritch", "Generic"]
},
"Eldritch Exalted Orb": {
"text": "If The Searing Exarch is dominant, add a prefix modifier. If The Eater of Worlds is dominant, add a suffix modifier",
"tags": ["Eldritch", "Generic"]
},
"Exceptional Eldritch Ember": {
"text": "Adds an Exceptional Searing Exarch implicit modifier to a Body Armour, Boots, Gloves or Helmet replacing any existing implicit modifier",
"tags": ["Eldritch", "BossDrop"]
},
"Exceptional Eldritch Ichor": {
"text": "Adds an Exceptional Eater of Worlds implicit modifier to a Body Armour, Boots, Gloves or Helmet replacing any existing implicit modifier",
"tags": ["Eldritch", "BossDrop"]
},
"Grand Eldritch Ember": {
"text": "Adds a Grand Searing Exarch implicit modifier to a Body Armour, Boots, Gloves or Helmet replacing any existing implicit modifier",
"tags": ["Eldritch", "Generic"]
},
"Grand Eldritch Ichor": {
"text": "Adds a Grand Eater of Worlds implicit modifier to a Body Armour, Boots, Gloves or Helmet replacing any existing implicit modifier",
"tags": ["Eldritch", "Generic"]
},
"Greater Eldritch Ember": {
"text": "Adds a Greater Searing Exarch implicit modifier to a Body Armour, Boots, Gloves or Helmet replacing any existing implicit modifier",
"tags": ["Eldritch", "Generic"]
},
"Greater Eldritch Ichor": {
"text": "Adds a Greater Eater of Worlds implicit modifier to a Body Armour, Boots, Gloves or Helmet replacing any existing implicit modifier",
"tags": ["Eldritch", "Generic"]
},
"Lesser Eldritch Ember": {
"text": "Adds a Lesser Searing Exarch implicit modifier to a Body Armour, Boots, Gloves or Helmet replacing any existing implicit modifier",
"tags": ["Eldritch", "Generic"]
},
"Lesser Eldritch Ichor": {
"text": "Adds a Lesser Eater of Worlds implicit modifier to a Body Armour, Boots, Gloves or Helmet replacing any existing implicit modifier",
"tags": ["Eldritch", "Generic"]
},
"Comprehensive Scouting Report": {
"text": "Drops if you have Planar Tactitian Atlas node<br>Reroll all of Kirac's Atlas Missions, adding additional mission options",
"tags": ["Report", "BossDrop"]
},
"Operative's Scouting Report": {
"text": "Drops if you have Solidarity Atlas node<br>Reroll all of Kirac's Atlas Missions, granting missions with rewarding implicit modifiers",
"tags": ["Report", "BossDrop"]
},
"Otherworldly Scouting Report": {
"text": "Drops if you have Expect the Unexpected Atlas node<br>Reroll all of Kirac's Atlas Missions, including at least one Breachstone",
"tags": ["Report", "BossDrop"]
},
"Blighted Scouting Report": {
"text": "Drops if you have Expect the Unexpected Atlas node<br>Reroll all of Kirac's Atlas Missions, including at least one Blighted Map",
"tags": ["Report", "BossDrop"]
},
"Delirious Scouting Report": {
"text": "Drops if you have Expect the Unexpected Atlas node<br>Reroll all of Kirac's Atlas Missions, adding layers of Delirium to all non-Unique Maps",
"tags": ["Report", "BossDrop"]
},
"Singular Scouting Report": {
"text": "Reroll all of Kirac's Atlas Missions, including at least one Unique map",
"tags": ["Report", "Generic"]
},
"Influenced Scouting Report": {
"text": "Reroll all of Kirac's Atlas Missions, including at least one Shaper Guardian, Elder Guardian, or Elderslayer Map",
"tags": ["Report", "Generic"]
},
"Explorer's Scouting Report": {
"text": "Reroll all of Kirac's Atlas Missions, using uncompleted Maps where possible",
"tags": ["Report", "Generic"]
},
"Vaal Scouting Report": {
"text": "Reroll all of Kirac's Atlas Missions, corrupting all non-Unique Maps",
"tags": ["Report", "Generic"]
},
"Fertile Catalyst": {
"text": "Adds quality that enhances Life and Mana modifiers on a ring, amulet or belt",
"tags": ["Catalyst", "LeagueDrop"]
},
"Prismatic Catalyst": {
"text": "Adds quality that enhances Resistance modifiers on a ring, amulet or belt",
"tags": ["Catalyst", "LeagueDrop"]
},
"Tempering Catalyst": {
"text": "Adds quality that enhances Defence modifiers on a ring, amulet or belt",
"tags": ["Catalyst", "LeagueDrop"]
},
"Accelerating Catalyst": {
"text": "Adds quality that enhances Speed modifiers on a ring, amulet or belt",
"tags": ["Catalyst", "LeagueDrop"]
},
"Unstable Catalyst": {
"text": "Adds quality that enhances Critical modifiers on a ring, amulet or belt",
"tags": ["Catalyst", "LeagueDrop"]
},
"Intrinsic Catalyst": {
"text": "Adds quality that enhances Attribute modifiers on a ring, amulet or belt",
"tags": ["Catalyst", "LeagueDrop"]
},
"Noxious Catalyst": {
"text": "Adds quality that enhances Physical and Chaos Damage modifiers on a ring, amulet or belt",
"tags": ["Catalyst", "LeagueDrop"]
},
"Turbulent Catalyst": {
"text": "Adds quality that enhances Elemental Damage modifiers on a ring, amulet or belt",
"tags": ["Catalyst", "LeagueDrop"]
},
"Abrasive Catalyst": {
"text": "Adds quality that enhances Attack modifiers on a ring, amulet or belt",
"tags": ["Catalyst", "LeagueDrop"]
},
"Imbued Catalyst": {
"text": "Adds quality that enhances Caster modifiers on a ring, amulet or belt",
"tags": ["Catalyst", "LeagueDrop"]
},
"Tainted Catalyst": {
"text": "Applies a random quality type and amount to a corrupted ring, amulet or belt",
"tags": ["Catalyst", "LeagueDrop"]
},
"Blessing of Chayula": {
"text": "Drops from Chayula<br>Upgrades a Chayula unique item or breachstone to a more powerful version",
"tags": ["Breach", "BossDrop"]
},
"Blessing of Uul-Netol": {
"text": "Drops from Uul-Netol<br>Upgrades a Uul-Netol unique item or breachstone to a more powerful version",
"tags": ["Breach", "BossDrop"]
},
"Blessing of Esh": {
"text": "Drops from Esh<br>Upgrades a Esh unique item or breachstone to a more powerful version",
"tags": ["Breach", "BossDrop"]
},
"Blessing of Tul": {
"text": "Drops from Tul<br>Upgrades a Tul unique item or breachstone to a more powerful version",
"tags": ["Breach", "BossDrop"]
},
"Blessing of Xoph": {
"text": "Drops from Xoph<br>Upgrades a Xoph unique item or breachstone to a more powerful version",
"tags": ["Breach", "BossDrop"]
},
"Burial Medallion": {
"text": "Brought to Dannig to refresh his vendor inventory",
"tags": ["Expedition", "LeagueDrop"]
},
"Exotic Coinage": {
"text": "Brought to Tujen to refresh his vendor inventory",
"tags": ["Expedition", "LeagueDrop"]
},
"Astragali": {
"text": "Brought to Gwennen to refresh her vendor inventory",
"tags": ["Expedition", "LeagueDrop"]
},
"Scrap Metal": {
"text": "Brought to Rog to refresh his vendor inventory",
"tags": ["Expedition", "LeagueDrop"]
},
"//comment1": "some of those can techincally very rarely drop from mob that drops vendor price of the items",
"Fracturing Orb": {
"text": "Fracture a random modifier on a rare item with at least 4 modifiers, locking it in place",
"tags": ["Harbinger", "LeagueDrop"]
},
"Fracturing Shard": {
"text": "A stack of 20 shards becomes a Fracturing Orb",
"tags": ["Harbinger", "LeagueDrop"]
},
"Ancient Orb": {
"text": "Reforges a unique equipment as another of the same item class",
"tags": ["Harbinger", "LeagueDrop"]
},
"Ancient Shard": {
"text": "A stack of 20 shards becomes an Ancient Orb",
"tags": ["Harbinger", "LeagueDrop"]
},
"Harbinger's Orb": {
"text": "Reforges a map item as another of a higher tier",
"tags": ["Harbinger", "LeagueDrop"]
},
"Harbinger's Shard": {
"text": "A stack of 20 shards becomes a Harbinger's Orb",
"tags": ["Harbinger", "LeagueDrop"]
},
"Horizon Shard": {
"text": "A stack of 20 shards becomes an Orb of Horizons",
"tags": ["Harbinger", "LeagueDrop"]
},
"Engineer's Orb": {
"text": "Improves the quality of a Strongbox",
"tags": ["Harbinger", "LeagueDrop"]
},
"Engineer's Shard": {
"text": "A stack of 20 shards becomes an Engineer's Orb",
"tags": ["Harbinger", "LeagueDrop"]
},
"Mirror Shard": {
"text": "A stack of 20 shards becomes a Mirror of Kalandra",
"tags": ["Harbinger", "LeagueDrop"]
},
"Exalted Shard": {
"text": "A stack of 20 shards becomes an Exalted Orb",
"tags": ["Harbinger", "LeagueDrop"]
},
"Annulment Shard": {
"text": "A stack of 20 shards becomes an Orb of Annulment",
"tags": ["Harbinger", "LeagueDrop"]
},
"Regal Shard": {
"text": "A stack of 20 shards becomes a Regal Orb",
"tags": ["Harbinger", "LeagueDrop"]
},
"Chaos Shard": {
"text": "A stack of 20 shards becomes a Chaos Orb",
"tags": ["Harbinger", "LeagueDrop"]
},
"Alchemy Shard": {
"text": "A stack of 20 shards becomes an Orb of Alchemy",
"tags": ["Harbinger", "LeagueDrop"]
},
"Binding Shard": {
"text": "A stack of 20 shards becomes an Orb of Binding",
"tags": ["Harbinger", "LeagueDrop"]
},
"Alteration Shard": {
"text": "A stack of 20 shards becomes an Orb of Alteration",
"tags": ["Harbinger", "LeagueDrop"]
},
"Transmutation Shard": {
"text": "A stack of 20 shards becomes an Orb of Transmutation",
"tags": ["Harbinger", "LeagueDrop"]
},
"Deregulation Scroll": {
"text": "Used to upgrade The Tempest's Binding to The Tempest's Liberation. Drops from boss portal in Infused Beachhead Maps",
"tags": ["Harbinger", "BossDrop"]
},
"Electroshock Scroll": {
"text": "Used to upgrade The Rippling Thoughts to The Surging Thoughts. Drops from boss portal in Infused Beachhead Maps",
"tags": ["Harbinger", "BossDrop"]
},
"Fragmentation Scroll": {
"text": "Used to upgrade The Fracturing Spinner to The Shattered Divinity. Drops from boss portal in Infused Beachhead Maps",
"tags": ["Harbinger", "BossDrop"]
},
"Haemocombustion Scroll": {
"text": "Used to upgrade The Enmity Divine to The Yielding Mortality. Drops from boss portal in Infused Beachhead Maps",
"tags": ["Harbinger", "BossDrop"]
},
"Specularity Scroll": {
"text": "Used to upgrade The Unshattered Will to The Immortal Will. Drops from boss portal in Infused Beachhead Maps",
"tags": ["Harbinger", "BossDrop"]
},
"Time-light Scroll": {
"text": "Used to upgrade The Flow Untethered to The Torrent's Reclamation. Drops from boss portal in Infused Beachhead Maps",
"tags": ["Harbinger", "BossDrop"]
},
"Awakener's Orb": {
"text": "Drops from Sirus<br>Destroys an item, applying its influence to another of the same item class. The second item is reforged as a rare item with both influence types and new modifiers",
"tags": ["BossDrop"]
},
"Orb of Dominance": {
"text": "Drops from Sirus, Shaper and Elder<br>Removes one Influenced Modifier from an item with at least two Influenced Modifiers and upgrades another Influenced Modifier",
"tags": ["BossDrop"]
},
"Hunter's Exalted Orb": {
"text": "Drops from Al-Hezmin, The Hunter<br>Adds Hunter influence and a new Hunter modifier to a rare item",
"tags": ["BossDrop"]
},
"Redeemer's Exalted Orb": {
"text": "Drops from Veritania, The Redeemer<br>Adds Redeemer influence and a new Redeemer modifier to a rare item",
"tags": ["BossDrop"]
},
"Warlord's Exalted Orb": {
"text": "Drops from Drox, The warlord<br>Adds Warlord influence and a new Warlord modifier to a rare item",
"tags": ["BossDrop"]
},
"Crusader's Exalted Orb": {
"text": "Drops from Baran, The Crusader<br>Adds Crusader influence and a new Crusader modifier to a rare item",
"tags": ["BossDrop"]
},
"Orb of Conflict": {
"text": "Drops from Maven or in Maven's Crucible<br>Unpredictably raise the strength of one Searing Exarch or Eater of Worlds modifier on an item and lower the strength of another",
"tags": ["BossDrop"]
},
"Mirror of Kalandra": {
"text": "Creates a mirrored copy of an item",
"tags": ["Generic"]
},
"Sacred Orb": {
"text": "Randomises the numeric values of base defences on an armour",
"tags": ["Generic"]
},
"Divine Orb": {
"text": "Randomises the numeric values of the random modifiers on an item",
"tags": ["Generic"]
},
"Exalted Orb": {
"text": "Augments a rare item with a new random modifier",
"tags": ["Generic"]
},
"Orb of Annulment": {
"text": "Removes a random modifier from an item",
"tags": ["Generic"]
},
"Orb of Unmaking": {
"text": "Grants an atlas passive skill refund point",
"tags": ["Generic"]
},
"Gemcutter's Prism": {
"text": "Improves the quality of a gem",
"tags": ["Generic"]
},
"Regal Orb": {
"text": "Upgrades a magic item to a rare item",
"tags": ["Generic"]
},
"Vaal Orb": {
"text": "Corrupts an item, modifying it unpredictably",
"tags": ["Generic"]
},
"Chaos Orb": {
"text": "Reforges a rare item with new random modifiers",
"tags": ["Generic"]
},
"Orb of Horizons": {
"text": "Reforges a map item as another of the same tier",
"tags": ["Generic"]
},
"Orb of Regret": {
"text": "Grants a passive skill refund point",
"tags": ["Generic"]
},
"Orb of Scouring": {
"text": "Removes all modifiers from an item",
"tags": ["Generic"]
},
"Blessed Orb": {
"text": "Randomises the numeric values of the implicit modifiers of an item",
"tags": ["Generic"]
},
"Orb of Fusing": {
"text": "Reforges the links between sockets on an item",
"tags": ["Generic"]
},
"Cartographer's Chisel": {
"text": "Improves the quality of a map",
"tags": ["Generic"]
},
"Orb of Alchemy": {
"text": "Upgrades a normal item to a rare item",
"tags": ["Generic"]
},
"Orb of Binding": {
"text": "Upgrades a normal item to a rare item with up to four linked sockets",
"tags": ["Generic"]
},
"Jeweller's Orb": {
"text": "Reforges the number of sockets on an item",
"tags": ["Generic"]
},
"Enkindling Orb": {
"text": "Adds an enchantment to a utility flask that will improve it but prevent it from gaining charges during its effect",
"tags": ["Generic"]
},
"Instilling Orb": {
"text": "Adds an enchantment to a utility flask that will cause it to be used when certain conditions are met",
"tags": ["Generic"]
},
"Glassblower's Bauble": {
"text": "Improves the quality of a flask",
"tags": ["Generic"]
},
"Chromatic Orb": {
"text": "Reforges the colour of sockets on an item",
"tags": ["Generic"]
},
"Orb of Chance": {
"text": "Upgrades a normal item to a random rarity",
"tags": ["Generic"]
},
"Orb of Alteration": {
"text": "Reforges a magic item with new random modifiers",
"tags": ["Generic"]
},
"Orb of Transmutation": {
"text": "Upgrades a normal item to a magic item",
"tags": ["Generic"]
},
"Orb of Augmentation": {
"text": "Augments a magic item with a new random modifier",
"tags": ["Generic"]
},
"Blacksmith's Whetstone": {
"text": "Improves the quality of a weapon",
"tags": ["Generic"]
},
"Armourer's Scrap": {
"text": "Improves the quality of an armour",
"tags": ["Generic"]
},
"Portal Scroll": {
"text": "Creates a portal to town",
"tags": ["Generic"]
},
"Scroll of Wisdom": {
"text": "Identifies an item",
"tags": ["Generic"]
},
"Stacked Deck": {
"text": "A stack of unknown divination cards",
"tags": ["Generic"]
},
"Veiled Scarab": {
"text": "A stack of unknown scarabs",
"tags": ["Generic"]
},
"Albino Rhoa Feather": {
"text": "Redacted",
"tags": ["Meme"]
},
"Bestiary Orb": {
"text": "Stores a Beast in an item",
"tags": ["NonDrop"]
},
"Facetor's Lens": {
"text": "Adds stored experience to a gem, up to its maximum level",
"tags": ["NonDrop"]
},
"Infused Engineer's Orb": {
"tags": ["NonDrop"]
},
"Eternal Orb": {
"text": "Creates an imprint of an item for later restoration. The imprint can't be applied to Fractured Items",
"tags": ["RuthlessOnly"]
},
"Maven's Chisel of Avarice": {
"text": "Improves the quality of a map enhancing Currency found",
"tags": ["BossDrop"]
},
"Maven's Chisel of Divination": {
"text": "Improves the quality of a map enhancing Divination Cards found",
"tags": ["BossDrop"]
},
"Maven's Chisel of Procurement": {
"text": "Improves the quality of a map enhancing Item Rarity",
"tags": ["BossDrop"]
},
"Maven's Chisel of Proliferation": {
"text": "Improves the quality of a map enhancing Pack Size",
"tags": ["BossDrop"]
},
"Maven's Chisel of Scarabs": {
"text": "Improves the quality of a map enhancing Scarabs found",
"tags": ["BossDrop"]
},
"Reflecting Mist": {
"text": "Unpredictably reflects a rare amulet or ring, breaking it into two mirrored halves with reflected modifiers",
"tags": ["LeagueDrop"]
}
}
},
"Resonator": {
"items": {
"Primitive Chaotic Resonator": {
"text": "Single socket Resonator reforging a rare item using Fossils"
},
"Potent Chaotic Resonator": {
"text": "Two socket Resonator reforging a rare item using Fossils"
},
"Powerful Chaotic Resonator": {
"text": "Three socket Resonator reforging a rare item using Fossils"
},
"Prime Chaotic Resonator": {
"text": "Four socket Resonator reforging a rare item using Fossils"
},
"Primitive Alchemical Resonator": {
"text": "Single socket Resonator upgrading a normal item to a rare item using Fossils"
},
"Potent Alchemical Resonator": {
"text": "Two socket Resonator upgrading a normal item to a rare item using Fossils"
},
"Powerful Alchemical Resonator": {
"text": "Three socket Resonator upgrading a normal item to a rare item using Fossils"
},
"Prime Alchemical Resonator": {
"text": "Four socket Resonator upgrading a normal item to a rare item using Fossils"
}
}
},
"Fossil": {
"items": {
"Aberrant Fossil": {
"text": "More Chaos modifiers, No Lightning modifiers"
},
"Aetheric Fossil": {
"text": "More Caster modifiers, Fewer Attack modifiers"
},
"Bloodstained Fossil": {
"text": "Corrupted, Has a Corrupted implicit modifier"
},
"Bound Fossil": {
"text": "More Minion, Aura or Curse modifiers"
},
"Corroded Fossil": {
"text": "More Physical Ailment or Chaos Ailment modifiers, No Elemental modifiers"
},
"Deft Fossil": {
"text": "More Critical modifiers, No Attribute modifiers"
},
"Dense Fossil": {
"text": "More Defence modifiers, No Life modifiers"
},
"Faceted Fossil": {
"text": "More Gem modifiers"
},
"Fractured Fossil": {
"text": "Creates a split copy. Cannot be used to split Influenced, Enchanted, Fractured, or Synthesised items."
},
"Frigid Fossil": {
"text": "More Cold modifiers, No Fire modifiers"
},
"Fundamental Fossil": {
"text": "More Attribute modifiers, No Critical modifiers"
},
"Gilded Fossil": {
"text": "Item is overvalued by vendors"
},
"Glyphic Fossil": {
"text": "Has a Corrupt Essence modifier"
},
"Hollow Fossil": {
"text": "Has an Abyssal Socket"
},
"Jagged Fossil": {
"text": "More Physical modifiers, No Chaos modifiers"
},
"Lucent Fossil": {
"text": "More Mana modifiers, No Speed modifiers"
},
"Metallic Fossil": {
"text": "More Lightning modifiers, No Physical modifiers"
},
"Opulent Fossil": {
"text": "More Drop modifiers, No Tagless modifiers"
},
"Prismatic Fossil": {
"text": "More Elemental modifiers, No Physical Ailment or Chaos Ailment modifiers"
},
"Pristine Fossil": {
"text": "More Life modifiers, No Defence modifiers"
},
"Sanctified Fossil": {
"text": "Numeric values are lucky, High Level modifiers are more common"
},
"Scorched Fossil": {
"text": "More Fire modifiers, No Cold modifiers"
},
"Serrated Fossil": {
"text": "More Attack modifiers, No Caster modifiers"
},
"Shuddering Fossil": {
"text": "More Speed modifiers, No mana modifiers"
},
"Tangled Fossil": {
"text": "Makes a random modifier type much more likely and prevents another random modifier type. Effects revealed once resonator is fully socketed."
}
}
},
"DeliriumOrb": {
"items": {
"Abyssal Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Abyss Items reward type"
},
"Armoursmith's Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Armour reward type"
},
"Blacksmith's Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Weapons reward type"
},
"Blighted Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Blight reward type"
},
"Cartographer's Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Map Items reward type"
},
"Diviner's Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Divination Cards reward type"
},
"Foreboding Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Harbinger Items reward type"
},
"Fossilised Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Fossils reward type"
},
"Fragmented Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Fragments reward type"
},
"Jeweller's Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Trinkets reward type"
},
"Obscured Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Breach Items reward type"
},
"Singular Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Unique Items reward type"
},
"Skittering Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Scarabs reward type"
},
"Thaumaturge's Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Gems reward type"
},
"Timeless Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Legion reward type"
},
"Whispering Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Essences reward type"
},
"Fine Delirium Orb": {
"text": "Modifies a Map item adding layers of Delirium with the Currency Items reward type"
}
}
},
"Oil": {
"items": {
"Prismatic Oil": {
"text": "Can be used to anoint special Passive Skills not on the Passive Skill Tree otherwise."
},
"Tainted Oil": {
"text": "Can be combined with other oils to enchant corrupted rings, amulets or blighted maps."
},
"Reflective Oil": {
"text": "Can be combined with other oils to enchant mirrored rings, amulets or blighted maps."
},
"Clear Oil": {
"text": "Anoints ring/amulet. Modifies blighted maps: 6% increased Pack size, 12% reduced Monster Movement Speed"
},
"Sepia Oil": {
"text": "Anoints ring/amulet. Modifies blighted maps: 6% increased Pack size, Towers deal 25% more Damage"
},
"Amber Oil": {
"text": "Anoints ring/amulet. Modifies blighted maps: 6% increased Pack size, 25% reduced Cost of Towers"
},
"Verdant Oil": {
"text": "Anoints ring/amulet. Modifies blighted maps: 6% increased Pack size, 45% increased Experience gain"
},
"Teal Oil": {
"text": "Anoints ring/amulet. Modifies blighted maps: 6% increased Pack size, Blight Monsters spawn 30% faster, Encounter duration is 50 seconds shorter"
},
"Azure Oil": {
"text": "Anoints ring/amulet. Modifies blighted maps: 6% increased Pack size, Varieties of Items contained in 5 Blight Chests are Lucky"
},
"Indigo Oil": {
"text": "Anoints ring/amulet. Modifies blighted maps: 6% increased Pack size, Up to 3 additional Blight Bosses"
},
"Violet Oil": {
"text": "Anoints ring/amulet. Modifies blighted maps: 6% increased Pack size, 25% chance for an additional Reward Chest"
},
"Crimson Oil": {
"text": "Anoints ring/amulet. Modifies blighted maps: 6% increased Pack size, Varieties of Items contained in 12 Blight Chests are Lucky"
},
"Black Oil": {
"text": "Anoints ring/amulet. Modifies blighted maps: 6% increased Pack size, 7% chance for Blight Chests to contain an additional Reward"
},
"Opalescent Oil": {
"text": "Anoints ring/amulet. Modifies blighted maps: 6% increased Pack size, Varieties of Items contained in 18 Blight Chests are Lucky"
},
"Silver Oil": {
"text": "Anoints ring/amulet. Modifies blighted maps: 6% increased Pack size, 80% increased Quantity of Items"
},
"Golden Oil": {
"text": "Anoints ring/amulet. Modifies blighted maps: 6% increased Pack size, 30% chance for Blight Chests to contain an additional Reward"
}
}
},
"Incubator": {
"items": {
"Fine Incubator" : {
"text" : "Does not drop. Awards a Currency item."
},
"Whispering Incubator" : {
"text" : "Does not drop. Awards an Essence item."
},
"Geomancer's Incubator" : {
"text" : "Awards a 6-Linked Armour item."
},
"Abyssal Incubator" : {
"text" : "Awards a Rare Abyss item."
},
"Blighted Incubator" : {
"text" : "Awards a Blight item. Usually blighted maps, oils or scarabs."
},
"Cartographer's Incubator" : {
"text" : "Awards a Map item. Can grant special maps, if ItemLevel is 81 or higher."
},
"Diviner's Incubator" : {
"text" : "Awards Stacked Decks."
},
"Foreboding Incubator" : {
"text" : "Awards Currency Shards or a Harbinger item."
},
"Fossilised Incubator" : {
"text" : "Awards a Fossil item."
},
"Gemcutter's Incubator" : {
"text" : "Does not drop. Awards a Quality Gem item."
},
"Infused Incubator" : {
"text" : "Awards an Essence item."
},
"Kalguuran Incubator" : {
"text" : "Awards an Expedition item. Usually expedition reroll currencies or scarabs"
},
"Maddening Incubator" : {
"text" : "Awards a Delirium item. Usually simulacrum splinters or delirium orbs"
},
"Obscured Incubator" : {
"text" : "Awards a Breach item. Usually splinters or scarabs."
},
"Ornate Incubator" : {
"text" : "Awards a Currency item."
},
"Otherworldly Incubator" : {
"text" : "Awards a Unique Map."
},
"Singular Incubator" : {
"text" : "Awards Unique item. (enjoy your bramblejack)!"
},
"Skittering Incubator" : {
"text" : "Awards a Scarab item."