From 52991fcdecb09290622a2f5b24905de7bcbdd53a Mon Sep 17 00:00:00 2001 From: Dominique Alexandre Date: Fri, 18 Sep 2020 21:34:37 -0400 Subject: [PATCH] Add support for fractured mods - Add fractured mods support - Add fractured item test - Update api test data - Update test for map with curse --- .../Apis/Poe/Models/Modifiers.cs | 1 + .../Poe/Trade/Data/Stats/StatDataService.cs | 13 ++++++- .../Apis/Poe/Trade/Search/Results/Hashes.cs | 5 +++ .../Apis/Poe/Trade/Search/Results/Mods.cs | 1 + .../Poe/Trade/Search/Results/ResultItem.cs | 5 +++ .../Poe/Trade/Search/Results/TradeItem.cs | 6 ++++ src/Sidekick/Sidekick.csproj | 6 ++-- src/Sidekick/Views/Prices/ItemPreview.xaml | 8 +++++ src/Sidekick/Views/Prices/PriceViewModel.cs | 1 + .../ItemParserTests/EquipmentParsing.cs | 36 +++++++++++++++++++ .../ItemParserTests/MapParsing.cs | 4 +-- .../TestData/ItemDataCategory.json | 2 +- .../TestData/StatDataCategory.json | 2 +- 13 files changed, 82 insertions(+), 8 deletions(-) diff --git a/src/Sidekick.Business/Apis/Poe/Models/Modifiers.cs b/src/Sidekick.Business/Apis/Poe/Models/Modifiers.cs index b84c64c3..940cb81d 100644 --- a/src/Sidekick.Business/Apis/Poe/Models/Modifiers.cs +++ b/src/Sidekick.Business/Apis/Poe/Models/Modifiers.cs @@ -9,5 +9,6 @@ public class Modifiers public List Crafted { get; set; } = new List(); public List Enchant { get; set; } = new List(); public List Pseudo { get; set; } = new List(); + public List Fractured { get; set; } = new List(); } } diff --git a/src/Sidekick.Business/Apis/Poe/Trade/Data/Stats/StatDataService.cs b/src/Sidekick.Business/Apis/Poe/Trade/Data/Stats/StatDataService.cs index 9b87019f..1b8c910a 100644 --- a/src/Sidekick.Business/Apis/Poe/Trade/Data/Stats/StatDataService.cs +++ b/src/Sidekick.Business/Apis/Poe/Trade/Data/Stats/StatDataService.cs @@ -40,6 +40,8 @@ public StatDataService(IPoeTradeClient poeApiClient, private List VeiledPatterns { get; set; } + private List FracturedPatterns { get; set; } + private Regex NewLinePattern { get; set; } private Regex IncreasedPattern { get; set; } @@ -53,6 +55,7 @@ public async Task OnInit() EnchantPatterns = new List(); CraftedPatterns = new List(); VeiledPatterns = new List(); + FracturedPatterns = new List(); NewLinePattern = new Regex("(?:\\\\)*[\\r\\n]+"); IncreasedPattern = new Regex(languageProvider.Language.ModifierIncreased); @@ -83,6 +86,7 @@ public async Task OnInit() case "enchant": suffix = "(?:\\ \\(enchant\\)\\n|(? x.Id == id); + if (result != null) + { + return result; + } + return null; } } diff --git a/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/Hashes.cs b/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/Hashes.cs index 0afbcbc4..18ca3117 100644 --- a/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/Hashes.cs +++ b/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/Hashes.cs @@ -36,6 +36,11 @@ public class Hashes [JsonIgnore] public List Pseudo => Parse(ApiPseudo); + [JsonPropertyName("fractured")] + public List> ApiFractured { get; set; } + [JsonIgnore] + public List Fractured => Parse(ApiFractured); + private List Parse(List> values) { var result = new List(); diff --git a/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/Mods.cs b/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/Mods.cs index 7d633191..275d478b 100644 --- a/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/Mods.cs +++ b/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/Mods.cs @@ -9,6 +9,7 @@ public class Mods public List Explicit { get; set; } = new List(); public List Crafted { get; set; } = new List(); public List Enchant { get; set; } = new List(); + public List Fractured { get; set; } = new List(); [JsonIgnore] public List Pseudo { get; set; } = new List(); diff --git a/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/ResultItem.cs b/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/ResultItem.cs index ecffdb5b..429c3075 100644 --- a/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/ResultItem.cs +++ b/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/ResultItem.cs @@ -20,6 +20,8 @@ public class ResultItem public bool Corrupted { get; set; } + public bool Fractured { get; set; } + public Influences Influences { get; set; } = new Influences(); public bool Verified { get; set; } @@ -58,6 +60,9 @@ public class ResultItem [JsonPropertyName("enchantMods")] public List EnchantMods { get; set; } + [JsonPropertyName("fracturedMods")] + public List FracturedMods { get; set; } + public List Sockets { get; set; } = new List(); public Extended Extended { get; set; } = new Extended(); diff --git a/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/TradeItem.cs b/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/TradeItem.cs index 4c947861..95bdc6ef 100644 --- a/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/TradeItem.cs +++ b/src/Sidekick.Business/Apis/Poe/Trade/Search/Results/TradeItem.cs @@ -64,6 +64,12 @@ public TradeItem(Result result, IStatDataService statDataService) result.Item.PseudoMods, result.Item.Extended.Mods?.Pseudo, result.Item.Extended.Hashes?.Pseudo); + + ParseMods(statDataService, + Modifiers.Fractured, + result.Item.FracturedMods, + result.Item.Extended.Mods?.Fractured, + result.Item.Extended.Hashes?.Fractured); } private void ParseMods(IStatDataService statDataService, List modifiers, List texts, List mods, List hashes) diff --git a/src/Sidekick/Sidekick.csproj b/src/Sidekick/Sidekick.csproj index 0df0e683..c35f180a 100644 --- a/src/Sidekick/Sidekick.csproj +++ b/src/Sidekick/Sidekick.csproj @@ -5,9 +5,9 @@ true true Resources\ExaltedOrb.ico - 1.0.2.0 - 1.0.2.0 - 1.0.2 + 1.0.3.0 + 1.0.3.0 + 1.0.3 app.manifest A Path of Exile helper that shows item prices using the official Path of Exile Trade API. https://github.com/domialex/Sidekick diff --git a/src/Sidekick/Views/Prices/ItemPreview.xaml b/src/Sidekick/Views/Prices/ItemPreview.xaml index e7a2ec75..68e90325 100644 --- a/src/Sidekick/Views/Prices/ItemPreview.xaml +++ b/src/Sidekick/Views/Prices/ItemPreview.xaml @@ -187,6 +187,14 @@ + + + + + + + + mod.Text) + .Should().Contain(expectedFractured); + } + #region ItemText private const string UniqueSixLink = @"Rarity: Unique @@ -299,6 +317,24 @@ Two Handed Axe Item Level: 50 -------- 11% reduced Enemy Stun Threshold +"; + + private const string FracturedItem = @"Rarity: Rare +Invasion Track +Iron Greaves +-------- +Armour: 6 +-------- +Sockets: B B +-------- +Item Level: 2 +-------- +10% increased Movement Speed (fractured) ++5 to maximum Life +Regenerate 1.9 Life per second ++8% to Cold Resistance +-------- +Fractured Item "; #endregion diff --git a/tests/Sidekick.Business.Tests/ItemParserTests/MapParsing.cs b/tests/Sidekick.Business.Tests/ItemParserTests/MapParsing.cs index 48d78054..8bf1f23a 100644 --- a/tests/Sidekick.Business.Tests/ItemParserTests/MapParsing.cs +++ b/tests/Sidekick.Business.Tests/ItemParserTests/MapParsing.cs @@ -77,7 +77,7 @@ public async Task ParseOccupiedMap() var expectedExplicits = new[] { - "Players are Cursed with Enfeeble" + "Players are Cursed with Enfeeble, with 60% increased Effect" }; actual.Type.Should().Be("Carcass Map"); @@ -190,7 +190,7 @@ Carcass Map Area is influenced by The Elder (implicit) Map is occupied by The Purifier (implicit) -------- -Players are Cursed with Enfeeble +Players are Cursed with Enfeeble, with 60% increased Effect Monsters have 70% chance to Avoid Elemental Ailments Monsters fire 2 additional Projectiles Monsters' skills Chain 2 additional times diff --git a/tests/Sidekick.TestInfrastructure/TestData/ItemDataCategory.json b/tests/Sidekick.TestInfrastructure/TestData/ItemDataCategory.json index 156925b8..d9ecc389 100644 --- a/tests/Sidekick.TestInfrastructure/TestData/ItemDataCategory.json +++ b/tests/Sidekick.TestInfrastructure/TestData/ItemDataCategory.json @@ -1 +1 @@ -[{"label":"Accessories","entries":[{"name":"Ahkeli\u0027s Meadow","type":"Ruby Ring","text":"Ahkeli\u0027s Meadow Ruby Ring","flags":{"prophecy":false,"unique":true}},{"name":"Ahkeli\u0027s Mountain","type":"Ruby Ring","text":"Ahkeli\u0027s Mountain Ruby Ring","flags":{"prophecy":false,"unique":true}},{"name":"Ahkeli\u0027s Valley","type":"Ruby Ring","text":"Ahkeli\u0027s Valley Ruby Ring","flags":{"prophecy":false,"unique":true}},{"name":"Andvarius","type":"Gold Ring","text":"Andvarius Gold Ring","flags":{"prophecy":false,"unique":true}},{"name":"Angler\u0027s Plait","type":"Unset Ring","text":"Angler\u0027s Plait Unset Ring","flags":{"prophecy":false,"unique":true}},{"name":"Araku Tiki","type":"Coral Amulet","text":"Araku Tiki Coral Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Ascent From Flesh","type":"Chain Belt","text":"Ascent From Flesh Chain Belt","flags":{"prophecy":false,"unique":true}},{"name":"Astral Projector","type":"Topaz Ring","text":"Astral Projector Topaz Ring","flags":{"prophecy":false,"unique":true}},{"name":"Astramentis","type":"Onyx Amulet","text":"Astramentis Onyx Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Atziri\u0027s Foible","type":"Paua Amulet","text":"Atziri\u0027s Foible Paua Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Aul\u0027s Uprising","type":"Onyx Amulet","text":"Aul\u0027s Uprising Onyx Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Auxium","type":"Chain Belt","text":"Auxium Chain Belt","flags":{"prophecy":false,"unique":true}},{"name":"Auxium","type":"Crystal Belt","text":"Auxium Crystal Belt","flags":{"prophecy":false,"unique":true}},{"name":"Badge of the Brotherhood","type":"Turquoise Amulet","text":"Badge of the Brotherhood Turquoise Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Bated Breath","type":"Chain Belt","text":"Bated Breath Chain Belt","flags":{"prophecy":false,"unique":true}},{"name":"Belt of the Deceiver","type":"Heavy Belt","text":"Belt of the Deceiver Heavy Belt","flags":{"prophecy":false,"unique":true}},{"name":"Berek\u0027s Grip","type":"Two-Stone Ring","text":"Berek\u0027s Grip Two-Stone Ring","flags":{"prophecy":false,"unique":true}},{"name":"Berek\u0027s Pass","type":"Two-Stone Ring","text":"Berek\u0027s Pass Two-Stone Ring","flags":{"prophecy":false,"unique":true}},{"name":"Berek\u0027s Respite","type":"Two-Stone Ring","text":"Berek\u0027s Respite Two-Stone Ring","flags":{"prophecy":false,"unique":true}},{"name":"Bisco\u0027s Collar","type":"Gold Amulet","text":"Bisco\u0027s Collar Gold Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Bisco\u0027s Leash","type":"Heavy Belt","text":"Bisco\u0027s Leash Heavy Belt","flags":{"prophecy":false,"unique":true}},{"name":"Blackheart","type":"Iron Ring","text":"Blackheart Iron Ring","flags":{"prophecy":false,"unique":true}},{"name":"Blightwell","type":"Clutching Talisman","text":"Blightwell Clutching Talisman","flags":{"prophecy":false,"unique":true}},{"name":"Bloodboil","type":"Coral Ring","text":"Bloodboil Coral Ring","flags":{"prophecy":false,"unique":true}},{"name":"Bloodgrip","type":"Marble Amulet","text":"Bloodgrip Marble Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Bloodgrip","type":"Coral Amulet","text":"Bloodgrip Coral Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Blood of Corruption","type":"Amber Amulet","text":"Blood of Corruption Amber Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Brinerot Mark","type":"Unset Ring","text":"Brinerot Mark Unset Ring","flags":{"prophecy":false,"unique":true}},{"name":"Call of the Brotherhood","type":"Two-Stone Ring","text":"Call of the Brotherhood Two-Stone Ring","flags":{"prophecy":false,"unique":true}},{"name":"Carnage Heart","type":"Onyx Amulet","text":"Carnage Heart Onyx Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Choir of the Storm","type":"Lapis Amulet","text":"Choir of the Storm Lapis Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Circle of Anguish","type":"Ruby Ring","text":"Circle of Anguish Ruby Ring","flags":{"prophecy":false,"unique":true}},{"name":"Circle of Fear","type":"Sapphire Ring","text":"Circle of Fear Sapphire Ring","flags":{"prophecy":false,"unique":true}},{"name":"Circle of Guilt","type":"Iron Ring","text":"Circle of Guilt Iron Ring","flags":{"prophecy":false,"unique":true}},{"name":"Circle of Nostalgia","type":"Amethyst Ring","text":"Circle of Nostalgia Amethyst Ring","flags":{"prophecy":false,"unique":true}},{"name":"Circle of Regret","type":"Topaz Ring","text":"Circle of Regret Topaz Ring","flags":{"prophecy":false,"unique":true}},{"name":"Coward\u0027s Chains","type":"Chain Belt","text":"Coward\u0027s Chains Chain Belt","flags":{"prophecy":false,"unique":true}},{"name":"Coward\u0027s Legacy","type":"Chain Belt","text":"Coward\u0027s Legacy Chain Belt","flags":{"prophecy":false,"unique":true}},{"name":"Cyclopean Coil","type":"Leather Belt","text":"Cyclopean Coil Leather Belt","flags":{"prophecy":false,"unique":true}},{"name":"Daresso\u0027s Salute","type":"Citrine Amulet","text":"Daresso\u0027s Salute Citrine Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Darkness Enthroned","type":"Stygian Vise","text":"Darkness Enthroned Stygian Vise","flags":{"prophecy":false,"unique":true}},{"name":"Death Rush","type":"Amethyst Ring","text":"Death Rush Amethyst Ring","flags":{"prophecy":false,"unique":true}},{"name":"Demigod\u0027s Bounty","type":"Golden Obi","text":"Demigod\u0027s Bounty Golden Obi","flags":{"prophecy":false,"unique":true}},{"name":"Demigod\u0027s Eye","type":"Golden Hoop","text":"Demigod\u0027s Eye Golden Hoop","flags":{"prophecy":false,"unique":true}},{"name":"Demigod\u0027s Presence","type":"Gold Amulet","text":"Demigod\u0027s Presence Gold Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Doedre\u0027s Damning","type":"Paua Ring","text":"Doedre\u0027s Damning Paua Ring","flags":{"prophecy":false,"unique":true}},{"name":"Doryani\u0027s Invitation","type":"Heavy Belt","text":"Doryani\u0027s Invitation Heavy Belt","flags":{"prophecy":false,"unique":true}},{"name":"Dream Fragments","type":"Sapphire Ring","text":"Dream Fragments Sapphire Ring","flags":{"prophecy":false,"unique":true}},{"name":"Dyadian Dawn","type":"Heavy Belt","text":"Dyadian Dawn Heavy Belt","flags":{"prophecy":false,"unique":true}},{"name":"Emberwake","type":"Ruby Ring","text":"Emberwake Ruby Ring","flags":{"prophecy":false,"unique":true}},{"name":"Essence Worm","type":"Unset Ring","text":"Essence Worm Unset Ring","flags":{"prophecy":false,"unique":true}},{"name":"Extractor Mentis","type":"Agate Amulet","text":"Extractor Mentis Agate Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Eye of Chayula","type":"Onyx Amulet","text":"Eye of Chayula Onyx Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Eye of Innocence","type":"Citrine Amulet","text":"Eye of Innocence Citrine Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Eyes of the Greatwolf","type":"Greatwolf Talisman","text":"Eyes of the Greatwolf Greatwolf Talisman","flags":{"prophecy":false,"unique":true}},{"name":"Faminebind","type":"Rustic Sash","text":"Faminebind Rustic Sash","flags":{"prophecy":false,"unique":true}},{"name":"Feastbind","type":"Rustic Sash","text":"Feastbind Rustic Sash","flags":{"prophecy":false,"unique":true}},{"name":"Fury Valve","type":"Turquoise Amulet","text":"Fury Valve Turquoise Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Gifts from Above","type":"Diamond Ring","text":"Gifts from Above Diamond Ring","flags":{"prophecy":false,"unique":true}},{"name":"Gloomfang","type":"Blue Pearl Amulet","text":"Gloomfang Blue Pearl Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Gluttony","type":"Leather Belt","text":"Gluttony Leather Belt","flags":{"prophecy":false,"unique":true}},{"name":"Hallowed Ground","type":"Unset Ring","text":"Hallowed Ground Unset Ring","flags":{"prophecy":false,"unique":true}},{"name":"Headhunter","type":"Leather Belt","text":"Headhunter Leather Belt","flags":{"prophecy":false,"unique":true}},{"name":"Heartbound Loop","type":"Moonstone Ring","text":"Heartbound Loop Moonstone Ring","flags":{"prophecy":false,"unique":true}},{"name":"Hinekora\u0027s Sight","type":"Onyx Amulet","text":"Hinekora\u0027s Sight Onyx Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Hyperboreus","type":"Leather Belt","text":"Hyperboreus Leather Belt","flags":{"prophecy":false,"unique":true}},{"name":"Hyrri\u0027s Truth","type":"Jade Amulet","text":"Hyrri\u0027s Truth Jade Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Icefang Orbit","type":"Iron Ring","text":"Icefang Orbit Iron Ring","flags":{"prophecy":false,"unique":true}},{"name":"Immortal Flesh","type":"Leather Belt","text":"Immortal Flesh Leather Belt","flags":{"prophecy":false,"unique":true}},{"name":"Impresence","type":"Onyx Amulet","text":"Impresence Onyx Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Kaom\u0027s Sign","type":"Coral Ring","text":"Kaom\u0027s Sign Coral Ring","flags":{"prophecy":false,"unique":true}},{"name":"Kaom\u0027s Way","type":"Coral Ring","text":"Kaom\u0027s Way Coral Ring","flags":{"prophecy":false,"unique":true}},{"name":"Karui Charge","type":"Jade Amulet","text":"Karui Charge Jade Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Karui Ward","type":"Jade Amulet","text":"Karui Ward Jade Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Kikazaru","type":"Topaz Ring","text":"Kikazaru Topaz Ring","flags":{"prophecy":false,"unique":true}},{"name":"Leash of Oblation","type":"Leather Belt","text":"Leash of Oblation Leather Belt","flags":{"prophecy":false,"unique":true}},{"name":"Le Heup of All","type":"Iron Ring","text":"Le Heup of All Iron Ring","flags":{"prophecy":false,"unique":true}},{"name":"Lori\u0027s Lantern","type":"Prismatic Ring","text":"Lori\u0027s Lantern Prismatic Ring","flags":{"prophecy":false,"unique":true}},{"name":"Malachai\u0027s Artifice","type":"Unset Ring","text":"Malachai\u0027s Artifice Unset Ring","flags":{"prophecy":false,"unique":true}},{"name":"Maligaro\u0027s Cruelty","type":"Turquoise Amulet","text":"Maligaro\u0027s Cruelty Turquoise Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Maligaro\u0027s Restraint","type":"Chain Belt","text":"Maligaro\u0027s Restraint Chain Belt","flags":{"prophecy":false,"unique":true}},{"name":"Mark of Submission","type":"Unset Ring","text":"Mark of Submission Unset Ring","flags":{"prophecy":false,"unique":true}},{"name":"Mark of the Elder","type":"Steel Ring","text":"Mark of the Elder Steel Ring","flags":{"prophecy":false,"unique":true}},{"name":"Mark of the Shaper","type":"Opal Ring","text":"Mark of the Shaper Opal Ring","flags":{"prophecy":false,"unique":true}},{"name":"Marylene\u0027s Fallacy","type":"Lapis Amulet","text":"Marylene\u0027s Fallacy Lapis Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Meginord\u0027s Girdle","type":"Heavy Belt","text":"Meginord\u0027s Girdle Heavy Belt","flags":{"prophecy":false,"unique":true}},{"name":"Ming\u0027s Heart","type":"Amethyst Ring","text":"Ming\u0027s Heart Amethyst Ring","flags":{"prophecy":false,"unique":true}},{"name":"Mokou\u0027s Embrace","type":"Ruby Ring","text":"Mokou\u0027s Embrace Ruby Ring","flags":{"prophecy":false,"unique":true}},{"name":"Mother\u0027s Embrace","type":"Heavy Belt","text":"Mother\u0027s Embrace Heavy Belt","flags":{"prophecy":false,"unique":true}},{"name":"Mutewind Seal","type":"Unset Ring","text":"Mutewind Seal Unset Ring","flags":{"prophecy":false,"unique":true}},{"name":"Natural Hierarchy","type":"Rotfeather Talisman","text":"Natural Hierarchy Rotfeather Talisman","flags":{"prophecy":false,"unique":true}},{"name":"Ngamahu\u0027s Sign","type":"Ruby Ring","text":"Ngamahu\u0027s Sign Ruby Ring","flags":{"prophecy":false,"unique":true}},{"name":"Ngamahu Tiki","type":"Coral Amulet","text":"Ngamahu Tiki Coral Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Night\u0027s Hold","type":"Black Maw Talisman","text":"Night\u0027s Hold Black Maw Talisman","flags":{"prophecy":false,"unique":true}},{"name":"Perandus Blazon","type":"Cloth Belt","text":"Perandus Blazon Cloth Belt","flags":{"prophecy":false,"unique":true}},{"name":"Perandus Signet","type":"Paua Ring","text":"Perandus Signet Paua Ring","flags":{"prophecy":false,"unique":true}},{"name":"Perquil\u0027s Toe","type":"Gold Amulet","text":"Perquil\u0027s Toe Gold Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Perseverance","type":"Vanguard Belt","text":"Perseverance Vanguard Belt","flags":{"prophecy":false,"unique":true}},{"name":"Praxis","type":"Paua Ring","text":"Praxis Paua Ring","flags":{"prophecy":false,"unique":true}},{"name":"Precursor\u0027s Emblem","type":"Two-Stone Ring","text":"Precursor\u0027s Emblem Two-Stone Ring","flags":{"prophecy":false,"unique":true}},{"name":"Precursor\u0027s Emblem","type":"Topaz Ring","text":"Precursor\u0027s Emblem Topaz Ring","flags":{"prophecy":false,"unique":true}},{"name":"Precursor\u0027s Emblem","type":"Sapphire Ring","text":"Precursor\u0027s Emblem Sapphire Ring","flags":{"prophecy":false,"unique":true}},{"name":"Precursor\u0027s Emblem","type":"Ruby Ring","text":"Precursor\u0027s Emblem Ruby Ring","flags":{"prophecy":false,"unique":true}},{"name":"Precursor\u0027s Emblem","type":"Prismatic Ring","text":"Precursor\u0027s Emblem Prismatic Ring","flags":{"prophecy":false,"unique":true}},{"name":"Presence of Chayula","type":"Onyx Amulet","text":"Presence of Chayula Onyx Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Prismweave","type":"Rustic Sash","text":"Prismweave Rustic Sash","flags":{"prophecy":false,"unique":true}},{"name":"Profane Proxy","type":"Unset Ring","text":"Profane Proxy Unset Ring","flags":{"prophecy":false,"unique":true}},{"name":"Putembo\u0027s Meadow","type":"Topaz Ring","text":"Putembo\u0027s Meadow Topaz Ring","flags":{"prophecy":false,"unique":true}},{"name":"Putembo\u0027s Mountain","type":"Topaz Ring","text":"Putembo\u0027s Mountain Topaz Ring","flags":{"prophecy":false,"unique":true}},{"name":"Putembo\u0027s Valley","type":"Topaz Ring","text":"Putembo\u0027s Valley Topaz Ring","flags":{"prophecy":false,"unique":true}},{"name":"Pyre","type":"Sapphire Ring","text":"Pyre Sapphire Ring","flags":{"prophecy":false,"unique":true}},{"name":"Rashkaldor\u0027s Patience","type":"Jade Amulet","text":"Rashkaldor\u0027s Patience Jade Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Redblade Band","type":"Unset Ring","text":"Redblade Band Unset Ring","flags":{"prophecy":false,"unique":true}},{"name":"Rigwald\u0027s Crest","type":"Two-Stone Ring","text":"Rigwald\u0027s Crest Two-Stone Ring","flags":{"prophecy":false,"unique":true}},{"name":"Rigwald\u0027s Curse","type":"Wereclaw Talisman","text":"Rigwald\u0027s Curse Wereclaw Talisman","flags":{"prophecy":false,"unique":true}},{"name":"Romira\u0027s Banquet","type":"Diamond Ring","text":"Romira\u0027s Banquet Diamond Ring","flags":{"prophecy":false,"unique":true}},{"name":"Ryslatha\u0027s Coil","type":"Studded Belt","text":"Ryslatha\u0027s Coil Studded Belt","flags":{"prophecy":false,"unique":true}},{"name":"Sacrificial Heart","type":"Paua Amulet","text":"Sacrificial Heart Paua Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Shaper\u0027s Seed","type":"Agate Amulet","text":"Shaper\u0027s Seed Agate Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Shavronne\u0027s Revelation","type":"Moonstone Ring","text":"Shavronne\u0027s Revelation Moonstone Ring","flags":{"prophecy":false,"unique":true}},{"name":"Sibyl\u0027s Lament","type":"Coral Ring","text":"Sibyl\u0027s Lament Coral Ring","flags":{"prophecy":false,"unique":true}},{"name":"Sidhebreath","type":"Paua Amulet","text":"Sidhebreath Paua Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Siegebreaker","type":"Heavy Belt","text":"Siegebreaker Heavy Belt","flags":{"prophecy":false,"unique":true}},{"name":"Snakepit","type":"Sapphire Ring","text":"Snakepit Sapphire Ring","flags":{"prophecy":false,"unique":true}},{"name":"Solstice Vigil","type":"Onyx Amulet","text":"Solstice Vigil Onyx Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Soul Tether","type":"Cloth Belt","text":"Soul Tether Cloth Belt","flags":{"prophecy":false,"unique":true}},{"name":"Soulthirst","type":"Cloth Belt","text":"Soulthirst Cloth Belt","flags":{"prophecy":false,"unique":true}},{"name":"Star of Wraeclast","type":"Ruby Amulet","text":"Star of Wraeclast Ruby Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Stone of Lazhwar","type":"Lapis Amulet","text":"Stone of Lazhwar Lapis Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Stormfire","type":"Opal Ring","text":"Stormfire Opal Ring","flags":{"prophecy":false,"unique":true}},{"name":"String of Servitude","type":"Heavy Belt","text":"String of Servitude Heavy Belt","flags":{"prophecy":false,"unique":true}},{"name":"Sunblast","type":"Cloth Belt","text":"Sunblast Cloth Belt","flags":{"prophecy":false,"unique":true}},{"name":"Talisman of the Victor","type":"Jet Amulet","text":"Talisman of the Victor Jet Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Tasalio\u0027s Sign","type":"Sapphire Ring","text":"Tasalio\u0027s Sign Sapphire Ring","flags":{"prophecy":false,"unique":true}},{"name":"Tavukai","type":"Coral Amulet","text":"Tavukai Coral Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Tear of Purity","type":"Lapis Amulet","text":"Tear of Purity Lapis Amulet","flags":{"prophecy":false,"unique":true}},{"name":"The Anvil","type":"Amber Amulet","text":"The Anvil Amber Amulet","flags":{"prophecy":false,"unique":true}},{"name":"The Ascetic","type":"Gold Amulet","text":"The Ascetic Gold Amulet","flags":{"prophecy":false,"unique":true}},{"name":"The Aylardex","type":"Agate Amulet","text":"The Aylardex Agate Amulet","flags":{"prophecy":false,"unique":true}},{"name":"The Effigon","type":"Gold Amulet","text":"The Effigon Gold Amulet","flags":{"prophecy":false,"unique":true}},{"name":"The Flow Untethered","type":"Cloth Belt","text":"The Flow Untethered Cloth Belt","flags":{"prophecy":false,"unique":true}},{"name":"The Halcyon","type":"Jade Amulet","text":"The Halcyon Jade Amulet","flags":{"prophecy":false,"unique":true}},{"name":"The Hungry Loop","type":"Unset Ring","text":"The Hungry Loop Unset Ring","flags":{"prophecy":false,"unique":true}},{"name":"The Ignomon","type":"Gold Amulet","text":"The Ignomon Gold Amulet","flags":{"prophecy":false,"unique":true}},{"name":"The Jinxed Juju","type":"Citrine Amulet","text":"The Jinxed Juju Citrine Amulet","flags":{"prophecy":false,"unique":true}},{"name":"The Magnate","type":"Studded Belt","text":"The Magnate Studded Belt","flags":{"prophecy":false,"unique":true}},{"name":"The Nomad","type":"Studded Belt","text":"The Nomad Studded Belt","flags":{"prophecy":false,"unique":true}},{"name":"The Pandemonius","type":"Jade Amulet","text":"The Pandemonius Jade Amulet","flags":{"prophecy":false,"unique":true}},{"name":"The Pariah","type":"Unset Ring","text":"The Pariah Unset Ring","flags":{"prophecy":false,"unique":true}},{"name":"The Primordial Chain","type":"Coral Amulet","text":"The Primordial Chain Coral Amulet","flags":{"prophecy":false,"unique":true}},{"name":"The Retch","type":"Rustic Sash","text":"The Retch Rustic Sash","flags":{"prophecy":false,"unique":true}},{"name":"The Tactician","type":"Studded Belt","text":"The Tactician Studded Belt","flags":{"prophecy":false,"unique":true}},{"name":"The Taming","type":"Prismatic Ring","text":"The Taming Prismatic Ring","flags":{"prophecy":false,"unique":true}},{"name":"The Warden\u0027s Brand","type":"Iron Ring","text":"The Warden\u0027s Brand Iron Ring","flags":{"prophecy":false,"unique":true}},{"name":"Thief\u0027s Torment","type":"Prismatic Ring","text":"Thief\u0027s Torment Prismatic Ring","flags":{"prophecy":false,"unique":true}},{"name":"Timeclasp","type":"Moonstone Ring","text":"Timeclasp Moonstone Ring","flags":{"prophecy":false,"unique":true}},{"name":"Timetwist","type":"Moonstone Ring","text":"Timetwist Moonstone Ring","flags":{"prophecy":false,"unique":true}},{"name":"Umbilicus Immortalis","type":"Leather Belt","text":"Umbilicus Immortalis Leather Belt","flags":{"prophecy":false,"unique":true}},{"name":"Ungil\u0027s Harmony","type":"Turquoise Amulet","text":"Ungil\u0027s Harmony Turquoise Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Uzaza\u0027s Meadow","type":"Sapphire Ring","text":"Uzaza\u0027s Meadow Sapphire Ring","flags":{"prophecy":false,"unique":true}},{"name":"Uzaza\u0027s Mountain","type":"Sapphire Ring","text":"Uzaza\u0027s Mountain Sapphire Ring","flags":{"prophecy":false,"unique":true}},{"name":"Uzaza\u0027s Valley","type":"Sapphire Ring","text":"Uzaza\u0027s Valley Sapphire Ring","flags":{"prophecy":false,"unique":true}},{"name":"Valako\u0027s Sign","type":"Topaz Ring","text":"Valako\u0027s Sign Topaz Ring","flags":{"prophecy":false,"unique":true}},{"name":"Valyrium","type":"Moonstone Ring","text":"Valyrium Moonstone Ring","flags":{"prophecy":false,"unique":true}},{"name":"Venopuncture","type":"Iron Ring","text":"Venopuncture Iron Ring","flags":{"prophecy":false,"unique":true}},{"name":"Ventor\u0027s Gamble","type":"Gold Ring","text":"Ventor\u0027s Gamble Gold Ring","flags":{"prophecy":false,"unique":true}},{"name":"Victario\u0027s Acuity","type":"Turquoise Amulet","text":"Victario\u0027s Acuity Turquoise Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Vivinsect","type":"Unset Ring","text":"Vivinsect Unset Ring","flags":{"prophecy":false,"unique":true}},{"name":"Voice of the Storm","type":"Lapis Amulet","text":"Voice of the Storm Lapis Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Voideye","type":"Unset Ring","text":"Voideye Unset Ring","flags":{"prophecy":false,"unique":true}},{"name":"Voidheart","type":"Iron Ring","text":"Voidheart Iron Ring","flags":{"prophecy":false,"unique":true}},{"name":"Voll\u0027s Devotion","type":"Agate Amulet","text":"Voll\u0027s Devotion Agate Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Warped Timepiece","type":"Turquoise Amulet","text":"Warped Timepiece Turquoise Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Warrior\u0027s Legacy","type":"Ruby Ring","text":"Warrior\u0027s Legacy Ruby Ring","flags":{"prophecy":false,"unique":true}},{"name":"Willowgift","type":"Jade Amulet","text":"Willowgift Jade Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Winterheart","type":"Gold Amulet","text":"Winterheart Gold Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Winterweave","type":"Coral Ring","text":"Winterweave Coral Ring","flags":{"prophecy":false,"unique":true}},{"name":"Wurm\u0027s Molt","type":"Leather Belt","text":"Wurm\u0027s Molt Leather Belt","flags":{"prophecy":false,"unique":true}},{"name":"Xoph\u0027s Blood","type":"Amber Amulet","text":"Xoph\u0027s Blood Amber Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Xoph\u0027s Heart","type":"Amber Amulet","text":"Xoph\u0027s Heart Amber Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Yoke of Suffering","type":"Onyx Amulet","text":"Yoke of Suffering Onyx Amulet","flags":{"prophecy":false,"unique":true}},{"name":"Zerphi\u0027s Heart","type":"Paua Amulet","text":"Zerphi\u0027s Heart Paua Amulet","flags":{"prophecy":false,"unique":true}},{"type":"Blue Pearl Amulet","text":"Blue Pearl Amulet","flags":{"prophecy":false,"unique":false}},{"type":"Marble Amulet","text":"Marble Amulet","flags":{"prophecy":false,"unique":false}},{"type":"Jet Amulet","text":"Jet Amulet","flags":{"prophecy":false,"unique":false}},{"type":"Paua Amulet","text":"Paua Amulet","flags":{"prophecy":false,"unique":false}},{"type":"Citrine Amulet","text":"Citrine Amulet","flags":{"prophecy":false,"unique":false}},{"type":"Ruby Amulet","text":"Ruby Amulet","flags":{"prophecy":false,"unique":false}},{"type":"Coral Amulet","text":"Coral Amulet","flags":{"prophecy":false,"unique":false}},{"type":"Amber Amulet","text":"Amber Amulet","flags":{"prophecy":false,"unique":false}},{"type":"Jade Amulet","text":"Jade Amulet","flags":{"prophecy":false,"unique":false}},{"type":"Lapis Amulet","text":"Lapis Amulet","flags":{"prophecy":false,"unique":false}},{"type":"Gold Amulet","text":"Gold Amulet","flags":{"prophecy":false,"unique":false}},{"type":"Onyx Amulet","text":"Onyx Amulet","flags":{"prophecy":false,"unique":false}},{"type":"Turquoise Amulet","text":"Turquoise Amulet","flags":{"prophecy":false,"unique":false}},{"type":"Agate Amulet","text":"Agate Amulet","flags":{"prophecy":false,"unique":false}},{"type":"Black Maw Talisman","text":"Black Maw Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Mandible Talisman","text":"Mandible Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Chrysalis Talisman","text":"Chrysalis Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Writhing Talisman","text":"Writhing Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Bonespire Talisman","text":"Bonespire Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Ashscale Talisman","text":"Ashscale Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Lone Antler Talisman","text":"Lone Antler Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Deep One Talisman","text":"Deep One Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Breakrib Talisman","text":"Breakrib Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Deadhand Talisman","text":"Deadhand Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Undying Flesh Talisman","text":"Undying Flesh Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Rot Head Talisman","text":"Rot Head Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Hexclaw Talisman","text":"Hexclaw Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Primal Skull Talisman","text":"Primal Skull Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Wereclaw Talisman","text":"Wereclaw Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Splitnewt Talisman","text":"Splitnewt Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Clutching Talisman","text":"Clutching Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Avian Twins Talisman","text":"Avian Twins Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Fangjaw Talisman","text":"Fangjaw Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Horned Talisman","text":"Horned Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Spinefuse Talisman","text":"Spinefuse Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Three Rat Talisman","text":"Three Rat Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Monkey Twins Talisman","text":"Monkey Twins Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Longtooth Talisman","text":"Longtooth Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Rotfeather Talisman","text":"Rotfeather Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Monkey Paw Talisman","text":"Monkey Paw Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Three Hands Talisman","text":"Three Hands Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Greatwolf Talisman","text":"Greatwolf Talisman","flags":{"prophecy":false,"unique":false}},{"type":"Rustic Sash","text":"Rustic Sash","flags":{"prophecy":false,"unique":false}},{"type":"Chain Belt","text":"Chain Belt","flags":{"prophecy":false,"unique":false}},{"type":"Leather Belt","text":"Leather Belt","flags":{"prophecy":false,"unique":false}},{"type":"Heavy Belt","text":"Heavy Belt","flags":{"prophecy":false,"unique":false}},{"type":"Cloth Belt","text":"Cloth Belt","flags":{"prophecy":false,"unique":false}},{"type":"Studded Belt","text":"Studded Belt","flags":{"prophecy":false,"unique":false}},{"type":"Stygian Vise","text":"Stygian Vise","flags":{"prophecy":false,"unique":false}},{"type":"Vanguard Belt","text":"Vanguard Belt","flags":{"prophecy":false,"unique":false}},{"type":"Crystal Belt","text":"Crystal Belt","flags":{"prophecy":false,"unique":false}},{"type":"Golden Obi","text":"Golden Obi","flags":{"prophecy":false,"unique":false}},{"type":"Breach Ring","text":"Breach Ring","flags":{"prophecy":false,"unique":false}},{"type":"Iron Ring","text":"Iron Ring","flags":{"prophecy":false,"unique":false}},{"type":"Amethyst Ring","text":"Amethyst Ring","flags":{"prophecy":false,"unique":false}},{"type":"Diamond Ring","text":"Diamond Ring","flags":{"prophecy":false,"unique":false}},{"type":"Two-Stone Ring","text":"Two-Stone Ring","flags":{"prophecy":false,"unique":false}},{"type":"Unset Ring","text":"Unset Ring","flags":{"prophecy":false,"unique":false}},{"type":"Coral Ring","text":"Coral Ring","flags":{"prophecy":false,"unique":false}},{"type":"Paua Ring","text":"Paua Ring","flags":{"prophecy":false,"unique":false}},{"type":"Gold Ring","text":"Gold Ring","flags":{"prophecy":false,"unique":false}},{"type":"Topaz Ring","text":"Topaz Ring","flags":{"prophecy":false,"unique":false}},{"type":"Sapphire Ring","text":"Sapphire Ring","flags":{"prophecy":false,"unique":false}},{"type":"Ruby Ring","text":"Ruby Ring","flags":{"prophecy":false,"unique":false}},{"type":"Prismatic Ring","text":"Prismatic Ring","flags":{"prophecy":false,"unique":false}},{"type":"Moonstone Ring","text":"Moonstone Ring","flags":{"prophecy":false,"unique":false}},{"type":"Steel Ring","text":"Steel Ring","flags":{"prophecy":false,"unique":false}},{"type":"Opal Ring","text":"Opal Ring","flags":{"prophecy":false,"unique":false}},{"type":"Vermillion Ring","text":"Vermillion Ring","flags":{"prophecy":false,"unique":false}},{"type":"Cerulean Ring","text":"Cerulean Ring","flags":{"prophecy":false,"unique":false}},{"type":"Golden Hoop","text":"Golden Hoop","flags":{"prophecy":false,"unique":false}}]},{"label":"Armour","entries":[{"name":"Abberath\u0027s Hooves","type":"Goathide Boots","text":"Abberath\u0027s Hooves Goathide Boots","flags":{"prophecy":false,"unique":true}},{"name":"Abyssus","type":"Ezomyte Burgonet","text":"Abyssus Ezomyte Burgonet","flags":{"prophecy":false,"unique":true}},{"name":"Aegis Aurora","type":"Champion Kite Shield","text":"Aegis Aurora Champion Kite Shield","flags":{"prophecy":false,"unique":true}},{"name":"Ahn\u0027s Contempt","type":"Praetor Crown","text":"Ahn\u0027s Contempt Praetor Crown","flags":{"prophecy":false,"unique":true}},{"name":"Ahn\u0027s Heritage","type":"Colossal Tower Shield","text":"Ahn\u0027s Heritage Colossal Tower Shield","flags":{"prophecy":false,"unique":true}},{"name":"Alberon\u0027s Warpath","type":"Soldier Boots","text":"Alberon\u0027s Warpath Soldier Boots","flags":{"prophecy":false,"unique":true}},{"name":"Algor Mortis","type":"Carnal Mitts","text":"Algor Mortis Carnal Mitts","flags":{"prophecy":false,"unique":true}},{"name":"Allelopathy","type":"Sorcerer Gloves","text":"Allelopathy Sorcerer Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Alpha\u0027s Howl","type":"Sinner Tricorne","text":"Alpha\u0027s Howl Sinner Tricorne","flags":{"prophecy":false,"unique":true}},{"name":"Ambu\u0027s Charge","type":"Crusader Chainmail","text":"Ambu\u0027s Charge Crusader Chainmail","flags":{"prophecy":false,"unique":true}},{"name":"Apep\u0027s Slumber","type":"Ancient Spirit Shield","text":"Apep\u0027s Slumber Ancient Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"Apep\u0027s Supremacy","type":"Vaal Spirit Shield","text":"Apep\u0027s Supremacy Vaal Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"Architect\u0027s Hand","type":"Strapped Mitts","text":"Architect\u0027s Hand Strapped Mitts","flags":{"prophecy":false,"unique":true}},{"name":"Asenath\u0027s Chant","type":"Iron Circlet","text":"Asenath\u0027s Chant Iron Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Asenath\u0027s Gentle Touch","type":"Silk Gloves","text":"Asenath\u0027s Gentle Touch Silk Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Asenath\u0027s Mark","type":"Iron Circlet","text":"Asenath\u0027s Mark Iron Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Ashrend","type":"Buckskin Tunic","text":"Ashrend Buckskin Tunic","flags":{"prophecy":false,"unique":true}},{"name":"Asphyxia\u0027s Wrath","type":"Two-Point Arrow Quiver","text":"Asphyxia\u0027s Wrath Two-Point Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Assailum","type":"Sinner Tricorne","text":"Assailum Sinner Tricorne","flags":{"prophecy":false,"unique":true}},{"name":"Atziri\u0027s Acuity","type":"Vaal Gauntlets","text":"Atziri\u0027s Acuity Vaal Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Atziri\u0027s Mirror","type":"Golden Buckler","text":"Atziri\u0027s Mirror Golden Buckler","flags":{"prophecy":false,"unique":true}},{"name":"Atziri\u0027s Reflection","type":"Golden Buckler","text":"Atziri\u0027s Reflection Golden Buckler","flags":{"prophecy":false,"unique":true}},{"name":"Atziri\u0027s Splendour","type":"Sacrificial Garb","text":"Atziri\u0027s Splendour Sacrificial Garb","flags":{"prophecy":false,"unique":true}},{"name":"Atziri\u0027s Step","type":"Slink Boots","text":"Atziri\u0027s Step Slink Boots","flags":{"prophecy":false,"unique":true}},{"name":"Aukuna\u0027s Will","type":"Clasped Mitts","text":"Aukuna\u0027s Will Clasped Mitts","flags":{"prophecy":false,"unique":true}},{"name":"Aurseize","type":"Steelscale Gauntlets","text":"Aurseize Steelscale Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Beacon of Madness","type":"Two-Toned Boots","text":"Beacon of Madness Two-Toned Boots","flags":{"prophecy":false,"unique":true}},{"name":"Belly of the Beast","type":"Full Wyrmscale","text":"Belly of the Beast Full Wyrmscale","flags":{"prophecy":false,"unique":true}},{"name":"Bitterbind Point","type":"Titanium Spirit Shield","text":"Bitterbind Point Titanium Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"Blackgleam","type":"Cured Quiver","text":"Blackgleam Cured Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Blackgleam","type":"Fire Arrow Quiver","text":"Blackgleam Fire Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Black Sun Crest","type":"Lacquered Helmet","text":"Black Sun Crest Lacquered Helmet","flags":{"prophecy":false,"unique":true}},{"name":"Blasphemer\u0027s Grasp","type":"Assassin\u0027s Mitts","text":"Blasphemer\u0027s Grasp Assassin\u0027s Mitts","flags":{"prophecy":false,"unique":true}},{"name":"Bloodbond","type":"Bone Armour","text":"Bloodbond Bone Armour","flags":{"prophecy":false,"unique":true}},{"name":"Bones of Ullr","type":"Silk Slippers","text":"Bones of Ullr Silk Slippers","flags":{"prophecy":false,"unique":true}},{"name":"Bramblejack","type":"Plate Vest","text":"Bramblejack Plate Vest","flags":{"prophecy":false,"unique":true}},{"name":"Breathstealer","type":"Hydrascale Gauntlets","text":"Breathstealer Hydrascale Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Brinerot Flag","type":"Tarnished Spirit Shield","text":"Brinerot Flag Tarnished Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"Brinerot Whalers","type":"Trapper Boots","text":"Brinerot Whalers Trapper Boots","flags":{"prophecy":false,"unique":true}},{"name":"Briskwrap","type":"Strapped Leather","text":"Briskwrap Strapped Leather","flags":{"prophecy":false,"unique":true}},{"name":"Broadstroke","type":"Heavy Quiver","text":"Broadstroke Heavy Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Broken Faith","type":"Archon Kite Shield","text":"Broken Faith Archon Kite Shield","flags":{"prophecy":false,"unique":true}},{"name":"Bronn\u0027s Lithe","type":"Cutthroat\u0027s Garb","text":"Bronn\u0027s Lithe Cutthroat\u0027s Garb","flags":{"prophecy":false,"unique":true}},{"name":"Bubonic Trail","type":"Murder Boots","text":"Bubonic Trail Murder Boots","flags":{"prophecy":false,"unique":true}},{"name":"Carcass Jack","type":"Varnished Coat","text":"Carcass Jack Varnished Coat","flags":{"prophecy":false,"unique":true}},{"name":"Chains of Command","type":"Saintly Chainmail","text":"Chains of Command Saintly Chainmail","flags":{"prophecy":false,"unique":true}},{"name":"Chalice of Horrors","type":"War Buckler","text":"Chalice of Horrors War Buckler","flags":{"prophecy":false,"unique":true}},{"name":"Chernobog\u0027s Pillar","type":"Ebony Tower Shield","text":"Chernobog\u0027s Pillar Ebony Tower Shield","flags":{"prophecy":false,"unique":true}},{"name":"Cherrubim\u0027s Maleficence","type":"Triumphant Lamellar","text":"Cherrubim\u0027s Maleficence Triumphant Lamellar","flags":{"prophecy":false,"unique":true}},{"name":"Chitus\u0027 Apex","type":"Necromancer Circlet","text":"Chitus\u0027 Apex Necromancer Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Cloak of Defiance","type":"Lacquered Garb","text":"Cloak of Defiance Lacquered Garb","flags":{"prophecy":false,"unique":true}},{"name":"Cloak of Flame","type":"Scholar\u0027s Robe","text":"Cloak of Flame Scholar\u0027s Robe","flags":{"prophecy":false,"unique":true}},{"name":"Cloak of Tawm\u0027r Isley","type":"Savant\u0027s Robe","text":"Cloak of Tawm\u0027r Isley Savant\u0027s Robe","flags":{"prophecy":false,"unique":true}},{"name":"Command of the Pit","type":"Riveted Gloves","text":"Command of the Pit Riveted Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Cospri\u0027s Will","type":"Assassin\u0027s Garb","text":"Cospri\u0027s Will Assassin\u0027s Garb","flags":{"prophecy":false,"unique":true}},{"name":"Cowl of the Ceraunophile","type":"Solaris Circlet","text":"Cowl of the Ceraunophile Solaris Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Cowl of the Cryophile","type":"Silken Hood","text":"Cowl of the Cryophile Silken Hood","flags":{"prophecy":false,"unique":true}},{"name":"Cowl of the Thermophile","type":"Ezomyte Burgonet","text":"Cowl of the Thermophile Ezomyte Burgonet","flags":{"prophecy":false,"unique":true}},{"name":"Cragfall","type":"Serrated Arrow Quiver","text":"Cragfall Serrated Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Craghead","type":"Serrated Arrow Quiver","text":"Craghead Serrated Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Craiceann\u0027s Carapace","type":"Golden Plate","text":"Craiceann\u0027s Carapace Golden Plate","flags":{"prophecy":false,"unique":true}},{"name":"Craiceann\u0027s Chitin","type":"Magistrate Crown","text":"Craiceann\u0027s Chitin Magistrate Crown","flags":{"prophecy":false,"unique":true}},{"name":"Craiceann\u0027s Pincers","type":"Titan Gauntlets","text":"Craiceann\u0027s Pincers Titan Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Craiceann\u0027s Tracks","type":"Goliath Greaves","text":"Craiceann\u0027s Tracks Goliath Greaves","flags":{"prophecy":false,"unique":true}},{"name":"Crest of Perandus","type":"Pine Buckler","text":"Crest of Perandus Pine Buckler","flags":{"prophecy":false,"unique":true}},{"name":"Crown of Eyes","type":"Hubris Circlet","text":"Crown of Eyes Hubris Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Crown of the Inward Eye","type":"Prophet Crown","text":"Crown of the Inward Eye Prophet Crown","flags":{"prophecy":false,"unique":true}},{"name":"Crown of the Pale King","type":"Regicide Mask","text":"Crown of the Pale King Regicide Mask","flags":{"prophecy":false,"unique":true}},{"name":"Crown of the Tyrant","type":"Magistrate Crown","text":"Crown of the Tyrant Magistrate Crown","flags":{"prophecy":false,"unique":true}},{"name":"Crown of Thorns","type":"Vine Circlet","text":"Crown of Thorns Vine Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Crystal Vault","type":"Latticed Ringmail","text":"Crystal Vault Latticed Ringmail","flags":{"prophecy":false,"unique":true}},{"name":"Curtain Call","type":"Plague Mask","text":"Curtain Call Plague Mask","flags":{"prophecy":false,"unique":true}},{"name":"Dance of the Offered","type":"Shackled Boots","text":"Dance of the Offered Shackled Boots","flags":{"prophecy":false,"unique":true}},{"name":"Daresso\u0027s Courage","type":"Baroque Round Shield","text":"Daresso\u0027s Courage Baroque Round Shield","flags":{"prophecy":false,"unique":true}},{"name":"Daresso\u0027s Defiance","type":"Full Dragonscale","text":"Daresso\u0027s Defiance Full Dragonscale","flags":{"prophecy":false,"unique":true}},{"name":"Darkray Vectors","type":"Dragonscale Boots","text":"Darkray Vectors Dragonscale Boots","flags":{"prophecy":false,"unique":true}},{"name":"Death\u0027s Door","type":"Crusader Boots","text":"Death\u0027s Door Crusader Boots","flags":{"prophecy":false,"unique":true}},{"name":"Death\u0027s Oath","type":"Astral Plate","text":"Death\u0027s Oath Astral Plate","flags":{"prophecy":false,"unique":true}},{"name":"Deerstalker","type":"Deerskin Boots","text":"Deerstalker Deerskin Boots","flags":{"prophecy":false,"unique":true}},{"name":"Deidbell","type":"Gilded Sallet","text":"Deidbell Gilded Sallet","flags":{"prophecy":false,"unique":true}},{"name":"Deidbellow","type":"Gilded Sallet","text":"Deidbellow Gilded Sallet","flags":{"prophecy":false,"unique":true}},{"name":"Demigod\u0027s Beacon","type":"Golden Flame","text":"Demigod\u0027s Beacon Golden Flame","flags":{"prophecy":false,"unique":true}},{"name":"Demigod\u0027s Dominance","type":"Golden Mantle","text":"Demigod\u0027s Dominance Golden Mantle","flags":{"prophecy":false,"unique":true}},{"name":"Demigod\u0027s Immortality","type":"Golden Visage","text":"Demigod\u0027s Immortality Golden Visage","flags":{"prophecy":false,"unique":true}},{"name":"Demigod\u0027s Stride","type":"Golden Caligae","text":"Demigod\u0027s Stride Golden Caligae","flags":{"prophecy":false,"unique":true}},{"name":"Demigod\u0027s Touch","type":"Golden Bracers","text":"Demigod\u0027s Touch Golden Bracers","flags":{"prophecy":false,"unique":true}},{"name":"Demigod\u0027s Triumph","type":"Golden Wreath","text":"Demigod\u0027s Triumph Golden Wreath","flags":{"prophecy":false,"unique":true}},{"name":"Demon Stitcher","type":"Satin Gloves","text":"Demon Stitcher Satin Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Dendrobate","type":"Sentinel Jacket","text":"Dendrobate Sentinel Jacket","flags":{"prophecy":false,"unique":true}},{"name":"Deshret\u0027s Vise","type":"Steel Gauntlets","text":"Deshret\u0027s Vise Steel Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Devoto\u0027s Devotion","type":"Nightmare Bascinet","text":"Devoto\u0027s Devotion Nightmare Bascinet","flags":{"prophecy":false,"unique":true}},{"name":"Dialla\u0027s Malefaction","type":"Sage\u0027s Robe","text":"Dialla\u0027s Malefaction Sage\u0027s Robe","flags":{"prophecy":false,"unique":true}},{"name":"Doedre\u0027s Malevolence","type":"Velvet Gloves","text":"Doedre\u0027s Malevolence Velvet Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Doedre\u0027s Scorn","type":"Lunaris Circlet","text":"Doedre\u0027s Scorn Lunaris Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Doedre\u0027s Skin","type":"Widowsilk Robe","text":"Doedre\u0027s Skin Widowsilk Robe","flags":{"prophecy":false,"unique":true}},{"name":"Doedre\u0027s Tenure","type":"Velvet Gloves","text":"Doedre\u0027s Tenure Velvet Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Doryani\u0027s Delusion","type":"Slink Boots","text":"Doryani\u0027s Delusion Slink Boots","flags":{"prophecy":false,"unique":true}},{"name":"Doryani\u0027s Delusion","type":"Sorcerer Boots","text":"Doryani\u0027s Delusion Sorcerer Boots","flags":{"prophecy":false,"unique":true}},{"name":"Doryani\u0027s Delusion","type":"Titan Greaves","text":"Doryani\u0027s Delusion Titan Greaves","flags":{"prophecy":false,"unique":true}},{"name":"Doryani\u0027s Fist","type":"Vaal Gauntlets","text":"Doryani\u0027s Fist Vaal Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Drillneck","type":"Penetrating Arrow Quiver","text":"Drillneck Penetrating Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Duskblight","type":"Leatherscale Boots","text":"Duskblight Leatherscale Boots","flags":{"prophecy":false,"unique":true}},{"name":"Duskblight","type":"Ironscale Boots","text":"Duskblight Ironscale Boots","flags":{"prophecy":false,"unique":true}},{"name":"Dusktoe","type":"Leatherscale Boots","text":"Dusktoe Leatherscale Boots","flags":{"prophecy":false,"unique":true}},{"name":"Dusktoe","type":"Ironscale Boots","text":"Dusktoe Ironscale Boots","flags":{"prophecy":false,"unique":true}},{"name":"Eber\u0027s Unification","type":"Hubris Circlet","text":"Eber\u0027s Unification Hubris Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Empire\u0027s Grasp","type":"Goliath Gauntlets","text":"Empire\u0027s Grasp Goliath Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Esh\u0027s Mirror","type":"Thorium Spirit Shield","text":"Esh\u0027s Mirror Thorium Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"Esh\u0027s Visage","type":"Vaal Spirit Shield","text":"Esh\u0027s Visage Vaal Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"Eye of Malice","type":"Callous Mask","text":"Eye of Malice Callous Mask","flags":{"prophecy":false,"unique":true}},{"name":"Ezomyte Hold","type":"Iron Hat","text":"Ezomyte Hold Iron Hat","flags":{"prophecy":false,"unique":true}},{"name":"Ezomyte Peak","type":"Iron Hat","text":"Ezomyte Peak Iron Hat","flags":{"prophecy":false,"unique":true}},{"name":"Facebreaker","type":"Strapped Mitts","text":"Facebreaker Strapped Mitts","flags":{"prophecy":false,"unique":true}},{"name":"Fairgraves\u0027 Tricorne","type":"Tricorne","text":"Fairgraves\u0027 Tricorne Tricorne","flags":{"prophecy":false,"unique":true}},{"name":"Farrul\u0027s Bite","type":"Harlequin Mask","text":"Farrul\u0027s Bite Harlequin Mask","flags":{"prophecy":false,"unique":true}},{"name":"Farrul\u0027s Chase","type":"Slink Boots","text":"Farrul\u0027s Chase Slink Boots","flags":{"prophecy":false,"unique":true}},{"name":"Farrul\u0027s Fur","type":"Triumphant Lamellar","text":"Farrul\u0027s Fur Triumphant Lamellar","flags":{"prophecy":false,"unique":true}},{"name":"Farrul\u0027s Pounce","type":"Hydrascale Gauntlets","text":"Farrul\u0027s Pounce Hydrascale Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Fenumus\u0027 Shroud","type":"Widowsilk Robe","text":"Fenumus\u0027 Shroud Widowsilk Robe","flags":{"prophecy":false,"unique":true}},{"name":"Fenumus\u0027 Spinnerets","type":"Assassin\u0027s Boots","text":"Fenumus\u0027 Spinnerets Assassin\u0027s Boots","flags":{"prophecy":false,"unique":true}},{"name":"Fenumus\u0027 Toxins","type":"Necromancer Circlet","text":"Fenumus\u0027 Toxins Necromancer Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Fenumus\u0027 Weave","type":"Carnal Mitts","text":"Fenumus\u0027 Weave Carnal Mitts","flags":{"prophecy":false,"unique":true}},{"name":"Flamesight","type":"Solaris Circlet","text":"Flamesight Solaris Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Flesh and Spirit","type":"Ironscale Gauntlets","text":"Flesh and Spirit Ironscale Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Fox\u0027s Fortune","type":"Wild Leather","text":"Fox\u0027s Fortune Wild Leather","flags":{"prophecy":false,"unique":true}},{"name":"Foxshade","type":"Wild Leather","text":"Foxshade Wild Leather","flags":{"prophecy":false,"unique":true}},{"name":"Fractal Thoughts","type":"Vaal Mask","text":"Fractal Thoughts Vaal Mask","flags":{"prophecy":false,"unique":true}},{"name":"Frostferno","type":"Leather Hood","text":"Frostferno Leather Hood","flags":{"prophecy":false,"unique":true}},{"name":"Galesight","type":"Solaris Circlet","text":"Galesight Solaris Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Gang\u0027s Momentum","type":"Legion Boots","text":"Gang\u0027s Momentum Legion Boots","flags":{"prophecy":false,"unique":true}},{"name":"Garb of the Ephemeral","type":"Savant\u0027s Robe","text":"Garb of the Ephemeral Savant\u0027s Robe","flags":{"prophecy":false,"unique":true}},{"name":"Garukhan\u0027s Flight","type":"Stealth Boots","text":"Garukhan\u0027s Flight Stealth Boots","flags":{"prophecy":false,"unique":true}},{"name":"Geofri\u0027s Crest","type":"Great Crown","text":"Geofri\u0027s Crest Great Crown","flags":{"prophecy":false,"unique":true}},{"name":"Geofri\u0027s Legacy","type":"Great Crown","text":"Geofri\u0027s Legacy Great Crown","flags":{"prophecy":false,"unique":true}},{"name":"Geofri\u0027s Sanctuary","type":"Elegant Ringmail","text":"Geofri\u0027s Sanctuary Elegant Ringmail","flags":{"prophecy":false,"unique":true}},{"name":"Giantsbane","type":"Bronze Gauntlets","text":"Giantsbane Bronze Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Glitterdisc","type":"Burnished Spiked Shield","text":"Glitterdisc Burnished Spiked Shield","flags":{"prophecy":false,"unique":true}},{"name":"Goldrim","type":"Leather Cap","text":"Goldrim Leather Cap","flags":{"prophecy":false,"unique":true}},{"name":"Goldwyrm","type":"Nubuck Boots","text":"Goldwyrm Nubuck Boots","flags":{"prophecy":false,"unique":true}},{"name":"Gorgon\u0027s Gaze","type":"Regicide Mask","text":"Gorgon\u0027s Gaze Regicide Mask","flags":{"prophecy":false,"unique":true}},{"name":"Great Old One\u0027s Ward","type":"Corrugated Buckler","text":"Great Old One\u0027s Ward Corrugated Buckler","flags":{"prophecy":false,"unique":true}},{"name":"Greed\u0027s Embrace","type":"Golden Plate","text":"Greed\u0027s Embrace Golden Plate","flags":{"prophecy":false,"unique":true}},{"name":"Greedtrap","type":"Velvet Slippers","text":"Greedtrap Velvet Slippers","flags":{"prophecy":false,"unique":true}},{"name":"Grip of the Council","type":"Arcanist Gloves","text":"Grip of the Council Arcanist Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Gruthkul\u0027s Pelt","type":"Wyrmscale Doublet","text":"Gruthkul\u0027s Pelt Wyrmscale Doublet","flags":{"prophecy":false,"unique":true}},{"name":"Haemophilia","type":"Serpentscale Gauntlets","text":"Haemophilia Serpentscale Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Hale Negator","type":"Mind Cage","text":"Hale Negator Mind Cage","flags":{"prophecy":false,"unique":true}},{"name":"Hands of the High Templar","type":"Crusader Gloves","text":"Hands of the High Templar Crusader Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Heatshiver","type":"Leather Hood","text":"Heatshiver Leather Hood","flags":{"prophecy":false,"unique":true}},{"name":"Hellbringer","type":"Conjurer Gloves","text":"Hellbringer Conjurer Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Heretic\u0027s Veil","type":"Deicide Mask","text":"Heretic\u0027s Veil Deicide Mask","flags":{"prophecy":false,"unique":true}},{"name":"Honourhome","type":"Soldier Helmet","text":"Honourhome Soldier Helmet","flags":{"prophecy":false,"unique":true}},{"name":"Hrimburn","type":"Goathide Gloves","text":"Hrimburn Goathide Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Hrimnor\u0027s Resolve","type":"Samite Helmet","text":"Hrimnor\u0027s Resolve Samite Helmet","flags":{"prophecy":false,"unique":true}},{"name":"Hrimsorrow","type":"Goathide Gloves","text":"Hrimsorrow Goathide Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Hyrri\u0027s Bite","type":"Sharktooth Arrow Quiver","text":"Hyrri\u0027s Bite Sharktooth Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Hyrri\u0027s Demise","type":"Sharktooth Arrow Quiver","text":"Hyrri\u0027s Demise Sharktooth Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Hyrri\u0027s Ire","type":"Zodiac Leather","text":"Hyrri\u0027s Ire Zodiac Leather","flags":{"prophecy":false,"unique":true}},{"name":"Icetomb","type":"Latticed Ringmail","text":"Icetomb Latticed Ringmail","flags":{"prophecy":false,"unique":true}},{"name":"Incandescent Heart","type":"Saintly Chainmail","text":"Incandescent Heart Saintly Chainmail","flags":{"prophecy":false,"unique":true}},{"name":"Indigon","type":"Hubris Circlet","text":"Indigon Hubris Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Infernal Mantle","type":"Occultist\u0027s Vestment","text":"Infernal Mantle Occultist\u0027s Vestment","flags":{"prophecy":false,"unique":true}},{"name":"Infernal Mantle","type":"Widowsilk Robe","text":"Infernal Mantle Widowsilk Robe","flags":{"prophecy":false,"unique":true}},{"name":"Inpulsa\u0027s Broken Heart","type":"Sadist Garb","text":"Inpulsa\u0027s Broken Heart Sadist Garb","flags":{"prophecy":false,"unique":true}},{"name":"Invictus Solaris","type":"Archon Kite Shield","text":"Invictus Solaris Archon Kite Shield","flags":{"prophecy":false,"unique":true}},{"name":"Inya\u0027s Epiphany","type":"Arcanist Slippers","text":"Inya\u0027s Epiphany Arcanist Slippers","flags":{"prophecy":false,"unique":true}},{"name":"Iron Heart","type":"Crusader Plate","text":"Iron Heart Crusader Plate","flags":{"prophecy":false,"unique":true}},{"name":"Jaws of Agony","type":"Supreme Spiked Shield","text":"Jaws of Agony Supreme Spiked Shield","flags":{"prophecy":false,"unique":true}},{"name":"Kalisa\u0027s Grace","type":"Samite Gloves","text":"Kalisa\u0027s Grace Samite Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Kaltenhalt","type":"Painted Buckler","text":"Kaltenhalt Painted Buckler","flags":{"prophecy":false,"unique":true}},{"name":"Kaltensoul","type":"Painted Buckler","text":"Kaltensoul Painted Buckler","flags":{"prophecy":false,"unique":true}},{"name":"Kaom\u0027s Heart","type":"Glorious Plate","text":"Kaom\u0027s Heart Glorious Plate","flags":{"prophecy":false,"unique":true}},{"name":"Kaom\u0027s Roots","type":"Titan Greaves","text":"Kaom\u0027s Roots Titan Greaves","flags":{"prophecy":false,"unique":true}},{"name":"Kingsguard","type":"Conquest Chainmail","text":"Kingsguard Conquest Chainmail","flags":{"prophecy":false,"unique":true}},{"name":"Kintsugi","type":"Exquisite Leather","text":"Kintsugi Exquisite Leather","flags":{"prophecy":false,"unique":true}},{"name":"Kitava\u0027s Thirst","type":"Zealot Helmet","text":"Kitava\u0027s Thirst Zealot Helmet","flags":{"prophecy":false,"unique":true}},{"name":"Kongming\u0027s Stratagem","type":"Ivory Spirit Shield","text":"Kongming\u0027s Stratagem Ivory Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"Leer Cast","type":"Festival Mask","text":"Leer Cast Festival Mask","flags":{"prophecy":false,"unique":true}},{"name":"Leper\u0027s Alms","type":"Mirrored Spiked Shield","text":"Leper\u0027s Alms Mirrored Spiked Shield","flags":{"prophecy":false,"unique":true}},{"name":"Lightbane Raiment","type":"Ornate Ringmail","text":"Lightbane Raiment Ornate Ringmail","flags":{"prophecy":false,"unique":true}},{"name":"Lightning Coil","type":"Desert Brigandine","text":"Lightning Coil Desert Brigandine","flags":{"prophecy":false,"unique":true}},{"name":"Light of Lunaris","type":"Jingling Spirit Shield","text":"Light of Lunaris Jingling Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"Lightpoacher","type":"Great Crown","text":"Lightpoacher Great Crown","flags":{"prophecy":false,"unique":true}},{"name":"Lioneye\u0027s Paws","type":"Bronzescale Boots","text":"Lioneye\u0027s Paws Bronzescale Boots","flags":{"prophecy":false,"unique":true}},{"name":"Lioneye\u0027s Remorse","type":"Pinnacle Tower Shield","text":"Lioneye\u0027s Remorse Pinnacle Tower Shield","flags":{"prophecy":false,"unique":true}},{"name":"Lioneye\u0027s Vision","type":"Crusader Plate","text":"Lioneye\u0027s Vision Crusader Plate","flags":{"prophecy":false,"unique":true}},{"name":"Lochtonial Caress","type":"Iron Gauntlets","text":"Lochtonial Caress Iron Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Loreweave","type":"Elegant Ringmail","text":"Loreweave Elegant Ringmail","flags":{"prophecy":false,"unique":true}},{"name":"Lycosidae","type":"Rawhide Tower Shield","text":"Lycosidae Rawhide Tower Shield","flags":{"prophecy":false,"unique":true}},{"name":"Machina Mitts","type":"Murder Mitts","text":"Machina Mitts Murder Mitts","flags":{"prophecy":false,"unique":true}},{"name":"Magna Eclipsis","type":"Pinnacle Tower Shield","text":"Magna Eclipsis Pinnacle Tower Shield","flags":{"prophecy":false,"unique":true}},{"name":"Malachai\u0027s Awakening","type":"Iron Mask","text":"Malachai\u0027s Awakening Iron Mask","flags":{"prophecy":false,"unique":true}},{"name":"Malachai\u0027s Loop","type":"Harmonic Spirit Shield","text":"Malachai\u0027s Loop Harmonic Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"Malachai\u0027s Mark","type":"Murder Mitts","text":"Malachai\u0027s Mark Murder Mitts","flags":{"prophecy":false,"unique":true}},{"name":"Malachai\u0027s Simula","type":"Iron Mask","text":"Malachai\u0027s Simula Iron Mask","flags":{"prophecy":false,"unique":true}},{"name":"Malachai\u0027s Vision","type":"Praetor Crown","text":"Malachai\u0027s Vision Praetor Crown","flags":{"prophecy":false,"unique":true}},{"name":"Maligaro\u0027s Lens","type":"Compound Spiked Shield","text":"Maligaro\u0027s Lens Compound Spiked Shield","flags":{"prophecy":false,"unique":true}},{"name":"Maligaro\u0027s Virtuosity","type":"Deerskin Gloves","text":"Maligaro\u0027s Virtuosity Deerskin Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Maloney\u0027s Mechanism","type":"Ornate Quiver","text":"Maloney\u0027s Mechanism Ornate Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Maloney\u0027s Nightfall","type":"Blunt Arrow Quiver","text":"Maloney\u0027s Nightfall Blunt Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Manastorm","type":"Fossilised Spirit Shield","text":"Manastorm Fossilised Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"March of the Legion","type":"Legion Boots","text":"March of the Legion Legion Boots","flags":{"prophecy":false,"unique":true}},{"name":"Mark of the Red Covenant","type":"Tribal Circlet","text":"Mark of the Red Covenant Tribal Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Martyr\u0027s Crown","type":"Vine Circlet","text":"Martyr\u0027s Crown Vine Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Mask of the Spirit Drinker","type":"Crusader Helmet","text":"Mask of the Spirit Drinker Crusader Helmet","flags":{"prophecy":false,"unique":true}},{"name":"Mask of the Stitched Demon","type":"Magistrate Crown","text":"Mask of the Stitched Demon Magistrate Crown","flags":{"prophecy":false,"unique":true}},{"name":"Mask of the Tribunal","type":"Magistrate Crown","text":"Mask of the Tribunal Magistrate Crown","flags":{"prophecy":false,"unique":true}},{"name":"Matua Tupuna","type":"Tarnished Spirit Shield","text":"Matua Tupuna Tarnished Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"Maw of Conquest","type":"Steel Circlet","text":"Maw of Conquest Steel Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Meginord\u0027s Vise","type":"Steel Gauntlets","text":"Meginord\u0027s Vise Steel Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Memory Vault","type":"Praetor Crown","text":"Memory Vault Praetor Crown","flags":{"prophecy":false,"unique":true}},{"name":"Mind of the Council","type":"Harlequin Mask","text":"Mind of the Council Harlequin Mask","flags":{"prophecy":false,"unique":true}},{"name":"Mindspiral","type":"Aventail Helmet","text":"Mindspiral Aventail Helmet","flags":{"prophecy":false,"unique":true}},{"name":"Mistwall","type":"Lacquered Buckler","text":"Mistwall Lacquered Buckler","flags":{"prophecy":false,"unique":true}},{"name":"Mutewind Pennant","type":"Enameled Buckler","text":"Mutewind Pennant Enameled Buckler","flags":{"prophecy":false,"unique":true}},{"name":"Mutewind Whispersteps","type":"Serpentscale Boots","text":"Mutewind Whispersteps Serpentscale Boots","flags":{"prophecy":false,"unique":true}},{"name":"Nomic\u0027s Storm","type":"Strapped Boots","text":"Nomic\u0027s Storm Strapped Boots","flags":{"prophecy":false,"unique":true}},{"name":"Null and Void","type":"Legion Gloves","text":"Null and Void Legion Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Obscurantis","type":"Lion Pelt","text":"Obscurantis Lion Pelt","flags":{"prophecy":false,"unique":true}},{"name":"Offering to the Serpent","type":"Legion Gloves","text":"Offering to the Serpent Legion Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Omeyocan","type":"Carnal Boots","text":"Omeyocan Carnal Boots","flags":{"prophecy":false,"unique":true}},{"name":"Ondar\u0027s Clasp","type":"Wrapped Mitts","text":"Ondar\u0027s Clasp Wrapped Mitts","flags":{"prophecy":false,"unique":true}},{"name":"Victario\u0027s Flight","type":"Goathide Boots","text":"Victario\u0027s Flight Goathide Boots","flags":{"prophecy":false,"unique":true}},{"name":"Oskarm","type":"Nubuck Gloves","text":"Oskarm Nubuck Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Painseeker","type":"Shagreen Gloves","text":"Painseeker Shagreen Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Perepiteia","type":"Ezomyte Spiked Shield","text":"Perepiteia Ezomyte Spiked Shield","flags":{"prophecy":false,"unique":true}},{"name":"Perfidy","type":"Glorious Plate","text":"Perfidy Glorious Plate","flags":{"prophecy":false,"unique":true}},{"name":"Prism Guardian","type":"Archon Kite Shield","text":"Prism Guardian Archon Kite Shield","flags":{"prophecy":false,"unique":true}},{"name":"Queen of the Forest","type":"Destiny Leather","text":"Queen of the Forest Destiny Leather","flags":{"prophecy":false,"unique":true}},{"name":"Rainbowstride","type":"Conjurer Boots","text":"Rainbowstride Conjurer Boots","flags":{"prophecy":false,"unique":true}},{"name":"Ralakesh\u0027s Impatience","type":"Riveted Boots","text":"Ralakesh\u0027s Impatience Riveted Boots","flags":{"prophecy":false,"unique":true}},{"name":"Rathpith Globe","type":"Titanium Spirit Shield","text":"Rathpith Globe Titanium Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"Rat\u0027s Nest","type":"Ursine Pelt","text":"Rat\u0027s Nest Ursine Pelt","flags":{"prophecy":false,"unique":true}},{"name":"Rearguard","type":"Broadhead Arrow Quiver","text":"Rearguard Broadhead Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Reckless Defence","type":"Lacquered Garb","text":"Reckless Defence Lacquered Garb","flags":{"prophecy":false,"unique":true}},{"name":"Redblade Banner","type":"Painted Tower Shield","text":"Redblade Banner Painted Tower Shield","flags":{"prophecy":false,"unique":true}},{"name":"Redblade Tramplers","type":"Ancient Greaves","text":"Redblade Tramplers Ancient Greaves","flags":{"prophecy":false,"unique":true}},{"name":"Repentance","type":"Crusader Gloves","text":"Repentance Crusader Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Rigwald\u0027s Quills","type":"Two-Point Arrow Quiver","text":"Rigwald\u0027s Quills Two-Point Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Rime Gaze","type":"Mind Cage","text":"Rime Gaze Mind Cage","flags":{"prophecy":false,"unique":true}},{"name":"Rise of the Phoenix","type":"Mosaic Kite Shield","text":"Rise of the Phoenix Mosaic Kite Shield","flags":{"prophecy":false,"unique":true}},{"name":"Rotting Legion","type":"Loricated Ringmail","text":"Rotting Legion Loricated Ringmail","flags":{"prophecy":false,"unique":true}},{"name":"Sadima\u0027s Touch","type":"Wool Gloves","text":"Sadima\u0027s Touch Wool Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Saemus\u0027 Gift","type":"Spike-Point Arrow Quiver","text":"Saemus\u0027 Gift Spike-Point Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Saffell\u0027s Frame","type":"Branded Kite Shield","text":"Saffell\u0027s Frame Branded Kite Shield","flags":{"prophecy":false,"unique":true}},{"name":"Saqawal\u0027s Flock","type":"Silken Hood","text":"Saqawal\u0027s Flock Silken Hood","flags":{"prophecy":false,"unique":true}},{"name":"Saqawal\u0027s Nest","type":"Blood Raiment","text":"Saqawal\u0027s Nest Blood Raiment","flags":{"prophecy":false,"unique":true}},{"name":"Saqawal\u0027s Talons","type":"Hydrascale Boots","text":"Saqawal\u0027s Talons Hydrascale Boots","flags":{"prophecy":false,"unique":true}},{"name":"Saqawal\u0027s Winds","type":"Soldier Gloves","text":"Saqawal\u0027s Winds Soldier Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Scold\u0027s Bridle","type":"Mind Cage","text":"Scold\u0027s Bridle Mind Cage","flags":{"prophecy":false,"unique":true}},{"name":"Sentari\u0027s Answer","type":"Brass Spirit Shield","text":"Sentari\u0027s Answer Brass Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"Seven-League Step","type":"Rawhide Boots","text":"Seven-League Step Rawhide Boots","flags":{"prophecy":false,"unique":true}},{"name":"Shackles of the Wretched","type":"Chain Gloves","text":"Shackles of the Wretched Chain Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Shadows and Dust","type":"Clasped Mitts","text":"Shadows and Dust Clasped Mitts","flags":{"prophecy":false,"unique":true}},{"name":"Shadowstitch","type":"Sacrificial Garb","text":"Shadowstitch Sacrificial Garb","flags":{"prophecy":false,"unique":true}},{"name":"Shaper\u0027s Touch","type":"Crusader Gloves","text":"Shaper\u0027s Touch Crusader Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Shavronne\u0027s Gambit","type":"Scholar Boots","text":"Shavronne\u0027s Gambit Scholar Boots","flags":{"prophecy":false,"unique":true}},{"name":"Shavronne\u0027s Pace","type":"Scholar Boots","text":"Shavronne\u0027s Pace Scholar Boots","flags":{"prophecy":false,"unique":true}},{"name":"Shavronne\u0027s Wrappings","type":"Occultist\u0027s Vestment","text":"Shavronne\u0027s Wrappings Occultist\u0027s Vestment","flags":{"prophecy":false,"unique":true}},{"name":"Shroud of the Lightless","type":"Carnal Armour","text":"Shroud of the Lightless Carnal Armour","flags":{"prophecy":false,"unique":true}},{"name":"Sin Trek","type":"Stealth Boots","text":"Sin Trek Stealth Boots","flags":{"prophecy":false,"unique":true}},{"name":"Skin of the Lords","type":"Simple Robe","text":"Skin of the Lords Simple Robe","flags":{"prophecy":false,"unique":true}},{"name":"Skin of the Loyal","type":"Simple Robe","text":"Skin of the Loyal Simple Robe","flags":{"prophecy":false,"unique":true}},{"name":"Skirmish","type":"Two-Point Arrow Quiver","text":"Skirmish Two-Point Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Skullhead","type":"Secutor Helm","text":"Skullhead Secutor Helm","flags":{"prophecy":false,"unique":true}},{"name":"Skyforth","type":"Sorcerer Boots","text":"Skyforth Sorcerer Boots","flags":{"prophecy":false,"unique":true}},{"name":"Slavedriver\u0027s Hand","type":"Ambush Mitts","text":"Slavedriver\u0027s Hand Ambush Mitts","flags":{"prophecy":false,"unique":true}},{"name":"Slitherpinch","type":"Bronzescale Gauntlets","text":"Slitherpinch Bronzescale Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Snakebite","type":"Assassin\u0027s Mitts","text":"Snakebite Assassin\u0027s Mitts","flags":{"prophecy":false,"unique":true}},{"name":"Solaris Lorica","type":"Copper Plate","text":"Solaris Lorica Copper Plate","flags":{"prophecy":false,"unique":true}},{"name":"Soul Mantle","type":"Spidersilk Robe","text":"Soul Mantle Spidersilk Robe","flags":{"prophecy":false,"unique":true}},{"name":"Soul Strike","type":"Spike-Point Arrow Quiver","text":"Soul Strike Spike-Point Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Southbound","type":"Soldier Gloves","text":"Southbound Soldier Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Speaker\u0027s Wreath","type":"Prophet Crown","text":"Speaker\u0027s Wreath Prophet Crown","flags":{"prophecy":false,"unique":true}},{"name":"Sporeguard","type":"Saint\u0027s Hauberk","text":"Sporeguard Saint\u0027s Hauberk","flags":{"prophecy":false,"unique":true}},{"name":"Springleaf","type":"Plank Kite Shield","text":"Springleaf Plank Kite Shield","flags":{"prophecy":false,"unique":true}},{"name":"Starkonja\u0027s Head","type":"Silken Hood","text":"Starkonja\u0027s Head Silken Hood","flags":{"prophecy":false,"unique":true}},{"name":"Steppan Eard","type":"Sorcerer Boots","text":"Steppan Eard Sorcerer Boots","flags":{"prophecy":false,"unique":true}},{"name":"Stormcharger","type":"Plated Greaves","text":"Stormcharger Plated Greaves","flags":{"prophecy":false,"unique":true}},{"name":"Storm\u0027s Gift","type":"Assassin\u0027s Mitts","text":"Storm\u0027s Gift Assassin\u0027s Mitts","flags":{"prophecy":false,"unique":true}},{"name":"Sundance","type":"Clasped Boots","text":"Sundance Clasped Boots","flags":{"prophecy":false,"unique":true}},{"name":"Sunspite","type":"Clasped Boots","text":"Sunspite Clasped Boots","flags":{"prophecy":false,"unique":true}},{"name":"Surgebinders","type":"Dragonscale Gauntlets","text":"Surgebinders Dragonscale Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Tabula Rasa","type":"Simple Robe","text":"Tabula Rasa Simple Robe","flags":{"prophecy":false,"unique":true}},{"name":"The Anticipation","type":"Ezomyte Tower Shield","text":"The Anticipation Ezomyte Tower Shield","flags":{"prophecy":false,"unique":true}},{"name":"The Baron","type":"Close Helmet","text":"The Baron Close Helmet","flags":{"prophecy":false,"unique":true}},{"name":"The Beast Fur Shawl","type":"Vaal Regalia","text":"The Beast Fur Shawl Vaal Regalia","flags":{"prophecy":false,"unique":true}},{"name":"The Blood Dance","type":"Sharkskin Boots","text":"The Blood Dance Sharkskin Boots","flags":{"prophecy":false,"unique":true}},{"name":"The Brass Dome","type":"Gladiator Plate","text":"The Brass Dome Gladiator Plate","flags":{"prophecy":false,"unique":true}},{"name":"The Brine Crown","type":"Prophet Crown","text":"The Brine Crown Prophet Crown","flags":{"prophecy":false,"unique":true}},{"name":"The Bringer of Rain","type":"Nightmare Bascinet","text":"The Bringer of Rain Nightmare Bascinet","flags":{"prophecy":false,"unique":true}},{"name":"The Broken Crown","type":"Prophet Crown","text":"The Broken Crown Prophet Crown","flags":{"prophecy":false,"unique":true}},{"name":"The Coming Calamity","type":"Destroyer Regalia","text":"The Coming Calamity Destroyer Regalia","flags":{"prophecy":false,"unique":true}},{"name":"The Covenant","type":"Spidersilk Robe","text":"The Covenant Spidersilk Robe","flags":{"prophecy":false,"unique":true}},{"name":"The Deep One\u0027s Hide","type":"Studded Round Shield","text":"The Deep One\u0027s Hide Studded Round Shield","flags":{"prophecy":false,"unique":true}},{"name":"The Devouring Diadem","type":"Necromancer Circlet","text":"The Devouring Diadem Necromancer Circlet","flags":{"prophecy":false,"unique":true}},{"name":"The Embalmer","type":"Carnal Mitts","text":"The Embalmer Carnal Mitts","flags":{"prophecy":false,"unique":true}},{"name":"The Eternal Apple","type":"Chiming Spirit Shield","text":"The Eternal Apple Chiming Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"The Eternity Shroud","type":"Blood Raiment","text":"The Eternity Shroud Blood Raiment","flags":{"prophecy":false,"unique":true}},{"name":"The Formless Flame","type":"Siege Helmet","text":"The Formless Flame Siege Helmet","flags":{"prophecy":false,"unique":true}},{"name":"The Formless Inferno","type":"Royal Burgonet","text":"The Formless Inferno Royal Burgonet","flags":{"prophecy":false,"unique":true}},{"name":"The Fracturing Spinner","type":"Blunt Arrow Quiver","text":"The Fracturing Spinner Blunt Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"The Gull","type":"Raven Mask","text":"The Gull Raven Mask","flags":{"prophecy":false,"unique":true}},{"name":"The Infinite Pursuit","type":"Goliath Greaves","text":"The Infinite Pursuit Goliath Greaves","flags":{"prophecy":false,"unique":true}},{"name":"The Iron Fortress","type":"Crusader Plate","text":"The Iron Fortress Crusader Plate","flags":{"prophecy":false,"unique":true}},{"name":"The Ivory Tower","type":"Saint\u0027s Hauberk","text":"The Ivory Tower Saint\u0027s Hauberk","flags":{"prophecy":false,"unique":true}},{"name":"The Oak","type":"Plank Kite Shield","text":"The Oak Plank Kite Shield","flags":{"prophecy":false,"unique":true}},{"name":"The Peregrine","type":"Visored Sallet","text":"The Peregrine Visored Sallet","flags":{"prophecy":false,"unique":true}},{"name":"The Perfect Form","type":"Zodiac Leather","text":"The Perfect Form Zodiac Leather","flags":{"prophecy":false,"unique":true}},{"name":"The Queen\u0027s Hunger","type":"Vaal Regalia","text":"The Queen\u0027s Hunger Vaal Regalia","flags":{"prophecy":false,"unique":true}},{"name":"The Rat Cage","type":"Sharkskin Tunic","text":"The Rat Cage Sharkskin Tunic","flags":{"prophecy":false,"unique":true}},{"name":"The Red Trail","type":"Titan Greaves","text":"The Red Trail Titan Greaves","flags":{"prophecy":false,"unique":true}},{"name":"The Restless Ward","type":"Carnal Armour","text":"The Restless Ward Carnal Armour","flags":{"prophecy":false,"unique":true}},{"name":"The Signal Fire","type":"Cured Quiver","text":"The Signal Fire Cured Quiver","flags":{"prophecy":false,"unique":true}},{"name":"The Signal Fire","type":"Fire Arrow Quiver","text":"The Signal Fire Fire Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"The Snowblind Grace","type":"Coronal Leather","text":"The Snowblind Grace Coronal Leather","flags":{"prophecy":false,"unique":true}},{"name":"The Stampede","type":"Assassin\u0027s Boots","text":"The Stampede Assassin\u0027s Boots","flags":{"prophecy":false,"unique":true}},{"name":"The Surrender","type":"Ezomyte Tower Shield","text":"The Surrender Ezomyte Tower Shield","flags":{"prophecy":false,"unique":true}},{"name":"The Tempest\u0027s Binding","type":"Callous Mask","text":"The Tempest\u0027s Binding Callous Mask","flags":{"prophecy":false,"unique":true}},{"name":"The Three Dragons","type":"Golden Mask","text":"The Three Dragons Golden Mask","flags":{"prophecy":false,"unique":true}},{"name":"The Unshattered Will","type":"Archon Kite Shield","text":"The Unshattered Will Archon Kite Shield","flags":{"prophecy":false,"unique":true}},{"name":"The Vertex","type":"Vaal Mask","text":"The Vertex Vaal Mask","flags":{"prophecy":false,"unique":true}},{"name":"Thirst for Horrors","type":"War Buckler","text":"Thirst for Horrors War Buckler","flags":{"prophecy":false,"unique":true}},{"name":"Thousand Ribbons","type":"Simple Robe","text":"Thousand Ribbons Simple Robe","flags":{"prophecy":false,"unique":true}},{"name":"Thousand Teeth Temu","type":"Vaal Buckler","text":"Thousand Teeth Temu Vaal Buckler","flags":{"prophecy":false,"unique":true}},{"name":"Three-step Assault","type":"Shagreen Boots","text":"Three-step Assault Shagreen Boots","flags":{"prophecy":false,"unique":true}},{"name":"Thunderfist","type":"Murder Mitts","text":"Thunderfist Murder Mitts","flags":{"prophecy":false,"unique":true}},{"name":"Thundersight","type":"Solaris Circlet","text":"Thundersight Solaris Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Tinkerskin","type":"Sadist Garb","text":"Tinkerskin Sadist Garb","flags":{"prophecy":false,"unique":true}},{"name":"Titucius\u0027 Span","type":"Reinforced Tower Shield","text":"Titucius\u0027 Span Reinforced Tower Shield","flags":{"prophecy":false,"unique":true}},{"name":"Titucus Span","type":"Reinforced Tower Shield","text":"Titucus Span Reinforced Tower Shield","flags":{"prophecy":false,"unique":true}},{"name":"Tombfist","type":"Steelscale Gauntlets","text":"Tombfist Steelscale Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Torchoak Step","type":"Antique Greaves","text":"Torchoak Step Antique Greaves","flags":{"prophecy":false,"unique":true}},{"name":"Triad Grip","type":"Mesh Gloves","text":"Triad Grip Mesh Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Trolltimber Spire","type":"Cedar Tower Shield","text":"Trolltimber Spire Cedar Tower Shield","flags":{"prophecy":false,"unique":true}},{"name":"Tukohama\u0027s Fortress","type":"Ebony Tower Shield","text":"Tukohama\u0027s Fortress Ebony Tower Shield","flags":{"prophecy":false,"unique":true}},{"name":"Unyielding Flame","type":"Archon Kite Shield","text":"Unyielding Flame Archon Kite Shield","flags":{"prophecy":false,"unique":true}},{"name":"Vaal Caress","type":"Bronzescale Gauntlets","text":"Vaal Caress Bronzescale Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Veil of the Night","type":"Great Helmet","text":"Veil of the Night Great Helmet","flags":{"prophecy":false,"unique":true}},{"name":"Veruso\u0027s Battering Rams","type":"Titan Gauntlets","text":"Veruso\u0027s Battering Rams Titan Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Victario\u0027s Charity","type":"Laminated Kite Shield","text":"Victario\u0027s Charity Laminated Kite Shield","flags":{"prophecy":false,"unique":true}},{"name":"Victario\u0027s Influence","type":"Lacquered Garb","text":"Victario\u0027s Influence Lacquered Garb","flags":{"prophecy":false,"unique":true}},{"name":"Viper\u0027s Scales","type":"Full Scale Armour","text":"Viper\u0027s Scales Full Scale Armour","flags":{"prophecy":false,"unique":true}},{"name":"Vis Mortis","type":"Necromancer Silks","text":"Vis Mortis Necromancer Silks","flags":{"prophecy":false,"unique":true}},{"name":"Vixen\u0027s Entrapment","type":"Embroidered Gloves","text":"Vixen\u0027s Entrapment Embroidered Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Vix Lunaris","type":"Cardinal Round Shield","text":"Vix Lunaris Cardinal Round Shield","flags":{"prophecy":false,"unique":true}},{"name":"Voidbringer","type":"Conjurer Gloves","text":"Voidbringer Conjurer Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Voidfletcher","type":"Penetrating Arrow Quiver","text":"Voidfletcher Penetrating Arrow Quiver","flags":{"prophecy":false,"unique":true}},{"name":"Voidwalker","type":"Murder Boots","text":"Voidwalker Murder Boots","flags":{"prophecy":false,"unique":true}},{"name":"Volkuur\u0027s Guidance","type":"Zealot Gloves","text":"Volkuur\u0027s Guidance Zealot Gloves","flags":{"prophecy":false,"unique":true}},{"name":"Voll\u0027s Protector","type":"Holy Chainmail","text":"Voll\u0027s Protector Holy Chainmail","flags":{"prophecy":false,"unique":true}},{"name":"Voll\u0027s Vision","type":"Praetor Crown","text":"Voll\u0027s Vision Praetor Crown","flags":{"prophecy":false,"unique":true}},{"name":"Wake of Destruction","type":"Mesh Boots","text":"Wake of Destruction Mesh Boots","flags":{"prophecy":false,"unique":true}},{"name":"Wall of Brambles","type":"Plate Vest","text":"Wall of Brambles Plate Vest","flags":{"prophecy":false,"unique":true}},{"name":"Wanderlust","type":"Wool Shoes","text":"Wanderlust Wool Shoes","flags":{"prophecy":false,"unique":true}},{"name":"Whakatutuki o Matua","type":"Tarnished Spirit Shield","text":"Whakatutuki o Matua Tarnished Spirit Shield","flags":{"prophecy":false,"unique":true}},{"name":"Wheel of the Stormsail","type":"Rotted Round Shield","text":"Wheel of the Stormsail Rotted Round Shield","flags":{"prophecy":false,"unique":true}},{"name":"Wildwrap","type":"Strapped Leather","text":"Wildwrap Strapped Leather","flags":{"prophecy":false,"unique":true}},{"name":"Windscream","type":"Reinforced Greaves","text":"Windscream Reinforced Greaves","flags":{"prophecy":false,"unique":true}},{"name":"Windshriek","type":"Reinforced Greaves","text":"Windshriek Reinforced Greaves","flags":{"prophecy":false,"unique":true}},{"name":"Winds of Change","type":"Ancient Gauntlets","text":"Winds of Change Ancient Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Wondertrap","type":"Velvet Slippers","text":"Wondertrap Velvet Slippers","flags":{"prophecy":false,"unique":true}},{"name":"Worldcarver","type":"Dragonscale Gauntlets","text":"Worldcarver Dragonscale Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Wraithlord","type":"Bone Circlet","text":"Wraithlord Bone Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Wreath of Phrecia","type":"Iron Circlet","text":"Wreath of Phrecia Iron Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Wyrmsign","type":"Wyrmscale Gauntlets","text":"Wyrmsign Wyrmscale Gauntlets","flags":{"prophecy":false,"unique":true}},{"name":"Ylfeban\u0027s Trickery","type":"Hubris Circlet","text":"Ylfeban\u0027s Trickery Hubris Circlet","flags":{"prophecy":false,"unique":true}},{"name":"Yriel\u0027s Fostering","type":"Exquisite Leather","text":"Yriel\u0027s Fostering Exquisite Leather","flags":{"prophecy":false,"unique":true}},{"name":"Zahndethus\u0027 Cassock","type":"Sage\u0027s Robe","text":"Zahndethus\u0027 Cassock Sage\u0027s Robe","flags":{"prophecy":false,"unique":true}},{"name":"Zeel\u0027s Amplifier","type":"Polished Spiked Shield","text":"Zeel\u0027s Amplifier Polished Spiked Shield","flags":{"prophecy":false,"unique":true}},{"type":"Golden Mantle","text":"Golden Mantle","flags":{"prophecy":false,"unique":false}},{"type":"Shabby Jerkin","text":"Shabby Jerkin","flags":{"prophecy":false,"unique":false}},{"type":"Glorious Leather","text":"Glorious Leather","flags":{"prophecy":false,"unique":false}},{"type":"Coronal Leather","text":"Coronal Leather","flags":{"prophecy":false,"unique":false}},{"type":"Cutthroat\u0027s Garb","text":"Cutthroat\u0027s Garb","flags":{"prophecy":false,"unique":false}},{"type":"Sharkskin Tunic","text":"Sharkskin Tunic","flags":{"prophecy":false,"unique":false}},{"type":"Destiny Leather","text":"Destiny Leather","flags":{"prophecy":false,"unique":false}},{"type":"Exquisite Leather","text":"Exquisite Leather","flags":{"prophecy":false,"unique":false}},{"type":"Zodiac Leather","text":"Zodiac Leather","flags":{"prophecy":false,"unique":false}},{"type":"Assassin\u0027s Garb","text":"Assassin\u0027s Garb","flags":{"prophecy":false,"unique":false}},{"type":"Strapped Leather","text":"Strapped Leather","flags":{"prophecy":false,"unique":false}},{"type":"Buckskin Tunic","text":"Buckskin Tunic","flags":{"prophecy":false,"unique":false}},{"type":"Wild Leather","text":"Wild Leather","flags":{"prophecy":false,"unique":false}},{"type":"Full Leather","text":"Full Leather","flags":{"prophecy":false,"unique":false}},{"type":"Sun Leather","text":"Sun Leather","flags":{"prophecy":false,"unique":false}},{"type":"Thief\u0027s Garb","text":"Thief\u0027s Garb","flags":{"prophecy":false,"unique":false}},{"type":"Eelskin Tunic","text":"Eelskin Tunic","flags":{"prophecy":false,"unique":false}},{"type":"Frontier Leather","text":"Frontier Leather","flags":{"prophecy":false,"unique":false}},{"type":"Padded Vest","text":"Padded Vest","flags":{"prophecy":false,"unique":false}},{"type":"Crimson Raiment","text":"Crimson Raiment","flags":{"prophecy":false,"unique":false}},{"type":"Lacquered Garb","text":"Lacquered Garb","flags":{"prophecy":false,"unique":false}},{"type":"Crypt Armour","text":"Crypt Armour","flags":{"prophecy":false,"unique":false}},{"type":"Sentinel Jacket","text":"Sentinel Jacket","flags":{"prophecy":false,"unique":false}},{"type":"Varnished Coat","text":"Varnished Coat","flags":{"prophecy":false,"unique":false}},{"type":"Blood Raiment","text":"Blood Raiment","flags":{"prophecy":false,"unique":false}},{"type":"Sadist Garb","text":"Sadist Garb","flags":{"prophecy":false,"unique":false}},{"type":"Carnal Armour","text":"Carnal Armour","flags":{"prophecy":false,"unique":false}},{"type":"Oiled Vest","text":"Oiled Vest","flags":{"prophecy":false,"unique":false}},{"type":"Padded Jacket","text":"Padded Jacket","flags":{"prophecy":false,"unique":false}},{"type":"Oiled Coat","text":"Oiled Coat","flags":{"prophecy":false,"unique":false}},{"type":"Scarlet Raiment","text":"Scarlet Raiment","flags":{"prophecy":false,"unique":false}},{"type":"Waxed Garb","text":"Waxed Garb","flags":{"prophecy":false,"unique":false}},{"type":"Bone Armour","text":"Bone Armour","flags":{"prophecy":false,"unique":false}},{"type":"Quilted Jacket","text":"Quilted Jacket","flags":{"prophecy":false,"unique":false}},{"type":"Sleek Coat","text":"Sleek Coat","flags":{"prophecy":false,"unique":false}},{"type":"Simple Robe","text":"Simple Robe","flags":{"prophecy":false,"unique":false}},{"type":"Conjurer\u0027s Vestment","text":"Conjurer\u0027s Vestment","flags":{"prophecy":false,"unique":false}},{"type":"Spidersilk Robe","text":"Spidersilk Robe","flags":{"prophecy":false,"unique":false}},{"type":"Destroyer Regalia","text":"Destroyer Regalia","flags":{"prophecy":false,"unique":false}},{"type":"Savant\u0027s Robe","text":"Savant\u0027s Robe","flags":{"prophecy":false,"unique":false}},{"type":"Necromancer Silks","text":"Necromancer Silks","flags":{"prophecy":false,"unique":false}},{"type":"Occultist\u0027s Vestment","text":"Occultist\u0027s Vestment","flags":{"prophecy":false,"unique":false}},{"type":"Widowsilk Robe","text":"Widowsilk Robe","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Regalia","text":"Vaal Regalia","flags":{"prophecy":false,"unique":false}},{"type":"Silken Vest","text":"Silken Vest","flags":{"prophecy":false,"unique":false}},{"type":"Scholar\u0027s Robe","text":"Scholar\u0027s Robe","flags":{"prophecy":false,"unique":false}},{"type":"Silken Garb","text":"Silken Garb","flags":{"prophecy":false,"unique":false}},{"type":"Mage\u0027s Vestment","text":"Mage\u0027s Vestment","flags":{"prophecy":false,"unique":false}},{"type":"Silk Robe","text":"Silk Robe","flags":{"prophecy":false,"unique":false}},{"type":"Cabalist Regalia","text":"Cabalist Regalia","flags":{"prophecy":false,"unique":false}},{"type":"Sage\u0027s Robe","text":"Sage\u0027s Robe","flags":{"prophecy":false,"unique":false}},{"type":"Silken Wrap","text":"Silken Wrap","flags":{"prophecy":false,"unique":false}},{"type":"Plate Vest","text":"Plate Vest","flags":{"prophecy":false,"unique":false}},{"type":"Sun Plate","text":"Sun Plate","flags":{"prophecy":false,"unique":false}},{"type":"Colosseum Plate","text":"Colosseum Plate","flags":{"prophecy":false,"unique":false}},{"type":"Majestic Plate","text":"Majestic Plate","flags":{"prophecy":false,"unique":false}},{"type":"Golden Plate","text":"Golden Plate","flags":{"prophecy":false,"unique":false}},{"type":"Crusader Plate","text":"Crusader Plate","flags":{"prophecy":false,"unique":false}},{"type":"Astral Plate","text":"Astral Plate","flags":{"prophecy":false,"unique":false}},{"type":"Gladiator Plate","text":"Gladiator Plate","flags":{"prophecy":false,"unique":false}},{"type":"Glorious Plate","text":"Glorious Plate","flags":{"prophecy":false,"unique":false}},{"type":"Chestplate","text":"Chestplate","flags":{"prophecy":false,"unique":false}},{"type":"Copper Plate","text":"Copper Plate","flags":{"prophecy":false,"unique":false}},{"type":"War Plate","text":"War Plate","flags":{"prophecy":false,"unique":false}},{"type":"Full Plate","text":"Full Plate","flags":{"prophecy":false,"unique":false}},{"type":"Arena Plate","text":"Arena Plate","flags":{"prophecy":false,"unique":false}},{"type":"Lordly Plate","text":"Lordly Plate","flags":{"prophecy":false,"unique":false}},{"type":"Bronze Plate","text":"Bronze Plate","flags":{"prophecy":false,"unique":false}},{"type":"Battle Plate","text":"Battle Plate","flags":{"prophecy":false,"unique":false}},{"type":"Scale Vest","text":"Scale Vest","flags":{"prophecy":false,"unique":false}},{"type":"Full Wyrmscale","text":"Full Wyrmscale","flags":{"prophecy":false,"unique":false}},{"type":"Commander\u0027s Brigandine","text":"Commander\u0027s Brigandine","flags":{"prophecy":false,"unique":false}},{"type":"Battle Lamellar","text":"Battle Lamellar","flags":{"prophecy":false,"unique":false}},{"type":"Dragonscale Doublet","text":"Dragonscale Doublet","flags":{"prophecy":false,"unique":false}},{"type":"Desert Brigandine","text":"Desert Brigandine","flags":{"prophecy":false,"unique":false}},{"type":"Full Dragonscale","text":"Full Dragonscale","flags":{"prophecy":false,"unique":false}},{"type":"General\u0027s Brigandine","text":"General\u0027s Brigandine","flags":{"prophecy":false,"unique":false}},{"type":"Triumphant Lamellar","text":"Triumphant Lamellar","flags":{"prophecy":false,"unique":false}},{"type":"Light Brigandine","text":"Light Brigandine","flags":{"prophecy":false,"unique":false}},{"type":"Scale Doublet","text":"Scale Doublet","flags":{"prophecy":false,"unique":false}},{"type":"Infantry Brigandine","text":"Infantry Brigandine","flags":{"prophecy":false,"unique":false}},{"type":"Full Scale Armour","text":"Full Scale Armour","flags":{"prophecy":false,"unique":false}},{"type":"Soldier\u0027s Brigandine","text":"Soldier\u0027s Brigandine","flags":{"prophecy":false,"unique":false}},{"type":"Field Lamellar","text":"Field Lamellar","flags":{"prophecy":false,"unique":false}},{"type":"Wyrmscale Doublet","text":"Wyrmscale Doublet","flags":{"prophecy":false,"unique":false}},{"type":"Hussar Brigandine","text":"Hussar Brigandine","flags":{"prophecy":false,"unique":false}},{"type":"Sacrificial Garb","text":"Sacrificial Garb","flags":{"prophecy":false,"unique":false}},{"type":"Chainmail Vest","text":"Chainmail Vest","flags":{"prophecy":false,"unique":false}},{"type":"Ornate Ringmail","text":"Ornate Ringmail","flags":{"prophecy":false,"unique":false}},{"type":"Chain Hauberk","text":"Chain Hauberk","flags":{"prophecy":false,"unique":false}},{"type":"Devout Chainmail","text":"Devout Chainmail","flags":{"prophecy":false,"unique":false}},{"type":"Loricated Ringmail","text":"Loricated Ringmail","flags":{"prophecy":false,"unique":false}},{"type":"Conquest Chainmail","text":"Conquest Chainmail","flags":{"prophecy":false,"unique":false}},{"type":"Elegant Ringmail","text":"Elegant Ringmail","flags":{"prophecy":false,"unique":false}},{"type":"Saint\u0027s Hauberk","text":"Saint\u0027s Hauberk","flags":{"prophecy":false,"unique":false}},{"type":"Saintly Chainmail","text":"Saintly Chainmail","flags":{"prophecy":false,"unique":false}},{"type":"Chainmail Tunic","text":"Chainmail Tunic","flags":{"prophecy":false,"unique":false}},{"type":"Ringmail Coat","text":"Ringmail Coat","flags":{"prophecy":false,"unique":false}},{"type":"Chainmail Doublet","text":"Chainmail Doublet","flags":{"prophecy":false,"unique":false}},{"type":"Full Ringmail","text":"Full Ringmail","flags":{"prophecy":false,"unique":false}},{"type":"Full Chainmail","text":"Full Chainmail","flags":{"prophecy":false,"unique":false}},{"type":"Holy Chainmail","text":"Holy Chainmail","flags":{"prophecy":false,"unique":false}},{"type":"Latticed Ringmail","text":"Latticed Ringmail","flags":{"prophecy":false,"unique":false}},{"type":"Crusader Chainmail","text":"Crusader Chainmail","flags":{"prophecy":false,"unique":false}},{"type":"Two-Toned Boots","text":"Two-Toned Boots","flags":{"prophecy":false,"unique":false}},{"type":"Golden Caligae","text":"Golden Caligae","flags":{"prophecy":false,"unique":false}},{"type":"Rawhide Boots","text":"Rawhide Boots","flags":{"prophecy":false,"unique":false}},{"type":"Goathide Boots","text":"Goathide Boots","flags":{"prophecy":false,"unique":false}},{"type":"Deerskin Boots","text":"Deerskin Boots","flags":{"prophecy":false,"unique":false}},{"type":"Nubuck Boots","text":"Nubuck Boots","flags":{"prophecy":false,"unique":false}},{"type":"Eelskin Boots","text":"Eelskin Boots","flags":{"prophecy":false,"unique":false}},{"type":"Sharkskin Boots","text":"Sharkskin Boots","flags":{"prophecy":false,"unique":false}},{"type":"Shagreen Boots","text":"Shagreen Boots","flags":{"prophecy":false,"unique":false}},{"type":"Stealth Boots","text":"Stealth Boots","flags":{"prophecy":false,"unique":false}},{"type":"Slink Boots","text":"Slink Boots","flags":{"prophecy":false,"unique":false}},{"type":"Wrapped Boots","text":"Wrapped Boots","flags":{"prophecy":false,"unique":false}},{"type":"Strapped Boots","text":"Strapped Boots","flags":{"prophecy":false,"unique":false}},{"type":"Clasped Boots","text":"Clasped Boots","flags":{"prophecy":false,"unique":false}},{"type":"Shackled Boots","text":"Shackled Boots","flags":{"prophecy":false,"unique":false}},{"type":"Trapper Boots","text":"Trapper Boots","flags":{"prophecy":false,"unique":false}},{"type":"Ambush Boots","text":"Ambush Boots","flags":{"prophecy":false,"unique":false}},{"type":"Carnal Boots","text":"Carnal Boots","flags":{"prophecy":false,"unique":false}},{"type":"Assassin\u0027s Boots","text":"Assassin\u0027s Boots","flags":{"prophecy":false,"unique":false}},{"type":"Murder Boots","text":"Murder Boots","flags":{"prophecy":false,"unique":false}},{"type":"Wool Shoes","text":"Wool Shoes","flags":{"prophecy":false,"unique":false}},{"type":"Velvet Slippers","text":"Velvet Slippers","flags":{"prophecy":false,"unique":false}},{"type":"Silk Slippers","text":"Silk Slippers","flags":{"prophecy":false,"unique":false}},{"type":"Scholar Boots","text":"Scholar Boots","flags":{"prophecy":false,"unique":false}},{"type":"Satin Slippers","text":"Satin Slippers","flags":{"prophecy":false,"unique":false}},{"type":"Samite Slippers","text":"Samite Slippers","flags":{"prophecy":false,"unique":false}},{"type":"Conjurer Boots","text":"Conjurer Boots","flags":{"prophecy":false,"unique":false}},{"type":"Arcanist Slippers","text":"Arcanist Slippers","flags":{"prophecy":false,"unique":false}},{"type":"Sorcerer Boots","text":"Sorcerer Boots","flags":{"prophecy":false,"unique":false}},{"type":"Iron Greaves","text":"Iron Greaves","flags":{"prophecy":false,"unique":false}},{"type":"Steel Greaves","text":"Steel Greaves","flags":{"prophecy":false,"unique":false}},{"type":"Plated Greaves","text":"Plated Greaves","flags":{"prophecy":false,"unique":false}},{"type":"Reinforced Greaves","text":"Reinforced Greaves","flags":{"prophecy":false,"unique":false}},{"type":"Antique Greaves","text":"Antique Greaves","flags":{"prophecy":false,"unique":false}},{"type":"Ancient Greaves","text":"Ancient Greaves","flags":{"prophecy":false,"unique":false}},{"type":"Goliath Greaves","text":"Goliath Greaves","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Greaves","text":"Vaal Greaves","flags":{"prophecy":false,"unique":false}},{"type":"Titan Greaves","text":"Titan Greaves","flags":{"prophecy":false,"unique":false}},{"type":"Leatherscale Boots","text":"Leatherscale Boots","flags":{"prophecy":false,"unique":false}},{"type":"Ironscale Boots","text":"Ironscale Boots","flags":{"prophecy":false,"unique":false}},{"type":"Bronzescale Boots","text":"Bronzescale Boots","flags":{"prophecy":false,"unique":false}},{"type":"Steelscale Boots","text":"Steelscale Boots","flags":{"prophecy":false,"unique":false}},{"type":"Serpentscale Boots","text":"Serpentscale Boots","flags":{"prophecy":false,"unique":false}},{"type":"Wyrmscale Boots","text":"Wyrmscale Boots","flags":{"prophecy":false,"unique":false}},{"type":"Hydrascale Boots","text":"Hydrascale Boots","flags":{"prophecy":false,"unique":false}},{"type":"Dragonscale Boots","text":"Dragonscale Boots","flags":{"prophecy":false,"unique":false}},{"type":"Chain Boots","text":"Chain Boots","flags":{"prophecy":false,"unique":false}},{"type":"Ringmail Boots","text":"Ringmail Boots","flags":{"prophecy":false,"unique":false}},{"type":"Mesh Boots","text":"Mesh Boots","flags":{"prophecy":false,"unique":false}},{"type":"Riveted Boots","text":"Riveted Boots","flags":{"prophecy":false,"unique":false}},{"type":"Zealot Boots","text":"Zealot Boots","flags":{"prophecy":false,"unique":false}},{"type":"Soldier Boots","text":"Soldier Boots","flags":{"prophecy":false,"unique":false}},{"type":"Legion Boots","text":"Legion Boots","flags":{"prophecy":false,"unique":false}},{"type":"Crusader Boots","text":"Crusader Boots","flags":{"prophecy":false,"unique":false}},{"type":"Gripped Gloves","text":"Gripped Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Fingerless Silk Gloves","text":"Fingerless Silk Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Spiked Gloves","text":"Spiked Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Golden Bracers","text":"Golden Bracers","flags":{"prophecy":false,"unique":false}},{"type":"Rawhide Gloves","text":"Rawhide Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Goathide Gloves","text":"Goathide Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Deerskin Gloves","text":"Deerskin Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Nubuck Gloves","text":"Nubuck Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Eelskin Gloves","text":"Eelskin Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Sharkskin Gloves","text":"Sharkskin Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Shagreen Gloves","text":"Shagreen Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Stealth Gloves","text":"Stealth Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Slink Gloves","text":"Slink Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Wrapped Mitts","text":"Wrapped Mitts","flags":{"prophecy":false,"unique":false}},{"type":"Strapped Mitts","text":"Strapped Mitts","flags":{"prophecy":false,"unique":false}},{"type":"Clasped Mitts","text":"Clasped Mitts","flags":{"prophecy":false,"unique":false}},{"type":"Trapper Mitts","text":"Trapper Mitts","flags":{"prophecy":false,"unique":false}},{"type":"Ambush Mitts","text":"Ambush Mitts","flags":{"prophecy":false,"unique":false}},{"type":"Carnal Mitts","text":"Carnal Mitts","flags":{"prophecy":false,"unique":false}},{"type":"Assassin\u0027s Mitts","text":"Assassin\u0027s Mitts","flags":{"prophecy":false,"unique":false}},{"type":"Murder Mitts","text":"Murder Mitts","flags":{"prophecy":false,"unique":false}},{"type":"Wool Gloves","text":"Wool Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Velvet Gloves","text":"Velvet Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Silk Gloves","text":"Silk Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Embroidered Gloves","text":"Embroidered Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Satin Gloves","text":"Satin Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Samite Gloves","text":"Samite Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Conjurer Gloves","text":"Conjurer Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Arcanist Gloves","text":"Arcanist Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Sorcerer Gloves","text":"Sorcerer Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Iron Gauntlets","text":"Iron Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Plated Gauntlets","text":"Plated Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Bronze Gauntlets","text":"Bronze Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Steel Gauntlets","text":"Steel Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Antique Gauntlets","text":"Antique Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Ancient Gauntlets","text":"Ancient Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Goliath Gauntlets","text":"Goliath Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Gauntlets","text":"Vaal Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Titan Gauntlets","text":"Titan Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Fishscale Gauntlets","text":"Fishscale Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Ironscale Gauntlets","text":"Ironscale Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Bronzescale Gauntlets","text":"Bronzescale Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Steelscale Gauntlets","text":"Steelscale Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Serpentscale Gauntlets","text":"Serpentscale Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Wyrmscale Gauntlets","text":"Wyrmscale Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Hydrascale Gauntlets","text":"Hydrascale Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Dragonscale Gauntlets","text":"Dragonscale Gauntlets","flags":{"prophecy":false,"unique":false}},{"type":"Chain Gloves","text":"Chain Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Ringmail Gloves","text":"Ringmail Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Mesh Gloves","text":"Mesh Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Riveted Gloves","text":"Riveted Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Zealot Gloves","text":"Zealot Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Soldier Gloves","text":"Soldier Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Legion Gloves","text":"Legion Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Crusader Gloves","text":"Crusader Gloves","flags":{"prophecy":false,"unique":false}},{"type":"Bone Helmet","text":"Bone Helmet","flags":{"prophecy":false,"unique":false}},{"type":"Golden Visage","text":"Golden Visage","flags":{"prophecy":false,"unique":false}},{"type":"Leather Cap","text":"Leather Cap","flags":{"prophecy":false,"unique":false}},{"type":"Lion Pelt","text":"Lion Pelt","flags":{"prophecy":false,"unique":false}},{"type":"Tricorne","text":"Tricorne","flags":{"prophecy":false,"unique":false}},{"type":"Leather Hood","text":"Leather Hood","flags":{"prophecy":false,"unique":false}},{"type":"Wolf Pelt","text":"Wolf Pelt","flags":{"prophecy":false,"unique":false}},{"type":"Hunter Hood","text":"Hunter Hood","flags":{"prophecy":false,"unique":false}},{"type":"Noble Tricorne","text":"Noble Tricorne","flags":{"prophecy":false,"unique":false}},{"type":"Ursine Pelt","text":"Ursine Pelt","flags":{"prophecy":false,"unique":false}},{"type":"Silken Hood","text":"Silken Hood","flags":{"prophecy":false,"unique":false}},{"type":"Sinner Tricorne","text":"Sinner Tricorne","flags":{"prophecy":false,"unique":false}},{"type":"Scare Mask","text":"Scare Mask","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Mask","text":"Vaal Mask","flags":{"prophecy":false,"unique":false}},{"type":"Deicide Mask","text":"Deicide Mask","flags":{"prophecy":false,"unique":false}},{"type":"Plague Mask","text":"Plague Mask","flags":{"prophecy":false,"unique":false}},{"type":"Iron Mask","text":"Iron Mask","flags":{"prophecy":false,"unique":false}},{"type":"Festival Mask","text":"Festival Mask","flags":{"prophecy":false,"unique":false}},{"type":"Golden Mask","text":"Golden Mask","flags":{"prophecy":false,"unique":false}},{"type":"Raven Mask","text":"Raven Mask","flags":{"prophecy":false,"unique":false}},{"type":"Callous Mask","text":"Callous Mask","flags":{"prophecy":false,"unique":false}},{"type":"Regicide Mask","text":"Regicide Mask","flags":{"prophecy":false,"unique":false}},{"type":"Harlequin Mask","text":"Harlequin Mask","flags":{"prophecy":false,"unique":false}},{"type":"Vine Circlet","text":"Vine Circlet","flags":{"prophecy":false,"unique":false}},{"type":"Mind Cage","text":"Mind Cage","flags":{"prophecy":false,"unique":false}},{"type":"Hubris Circlet","text":"Hubris Circlet","flags":{"prophecy":false,"unique":false}},{"type":"Iron Circlet","text":"Iron Circlet","flags":{"prophecy":false,"unique":false}},{"type":"Torture Cage","text":"Torture Cage","flags":{"prophecy":false,"unique":false}},{"type":"Tribal Circlet","text":"Tribal Circlet","flags":{"prophecy":false,"unique":false}},{"type":"Bone Circlet","text":"Bone Circlet","flags":{"prophecy":false,"unique":false}},{"type":"Lunaris Circlet","text":"Lunaris Circlet","flags":{"prophecy":false,"unique":false}},{"type":"Steel Circlet","text":"Steel Circlet","flags":{"prophecy":false,"unique":false}},{"type":"Necromancer Circlet","text":"Necromancer Circlet","flags":{"prophecy":false,"unique":false}},{"type":"Solaris Circlet","text":"Solaris Circlet","flags":{"prophecy":false,"unique":false}},{"type":"Iron Hat","text":"Iron Hat","flags":{"prophecy":false,"unique":false}},{"type":"Royal Burgonet","text":"Royal Burgonet","flags":{"prophecy":false,"unique":false}},{"type":"Eternal Burgonet","text":"Eternal Burgonet","flags":{"prophecy":false,"unique":false}},{"type":"Cone Helmet","text":"Cone Helmet","flags":{"prophecy":false,"unique":false}},{"type":"Barbute Helmet","text":"Barbute Helmet","flags":{"prophecy":false,"unique":false}},{"type":"Close Helmet","text":"Close Helmet","flags":{"prophecy":false,"unique":false}},{"type":"Gladiator Helmet","text":"Gladiator Helmet","flags":{"prophecy":false,"unique":false}},{"type":"Reaver Helmet","text":"Reaver Helmet","flags":{"prophecy":false,"unique":false}},{"type":"Siege Helmet","text":"Siege Helmet","flags":{"prophecy":false,"unique":false}},{"type":"Samite Helmet","text":"Samite Helmet","flags":{"prophecy":false,"unique":false}},{"type":"Ezomyte Burgonet","text":"Ezomyte Burgonet","flags":{"prophecy":false,"unique":false}},{"type":"Battered Helm","text":"Battered Helm","flags":{"prophecy":false,"unique":false}},{"type":"Nightmare Bascinet","text":"Nightmare Bascinet","flags":{"prophecy":false,"unique":false}},{"type":"Sallet","text":"Sallet","flags":{"prophecy":false,"unique":false}},{"type":"Visored Sallet","text":"Visored Sallet","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Sallet","text":"Gilded Sallet","flags":{"prophecy":false,"unique":false}},{"type":"Secutor Helm","text":"Secutor Helm","flags":{"prophecy":false,"unique":false}},{"type":"Fencer Helm","text":"Fencer Helm","flags":{"prophecy":false,"unique":false}},{"type":"Lacquered Helmet","text":"Lacquered Helmet","flags":{"prophecy":false,"unique":false}},{"type":"Fluted Bascinet","text":"Fluted Bascinet","flags":{"prophecy":false,"unique":false}},{"type":"Pig-Faced Bascinet","text":"Pig-Faced Bascinet","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Coif","text":"Rusted Coif","flags":{"prophecy":false,"unique":false}},{"type":"Praetor Crown","text":"Praetor Crown","flags":{"prophecy":false,"unique":false}},{"type":"Soldier Helmet","text":"Soldier Helmet","flags":{"prophecy":false,"unique":false}},{"type":"Great Helmet","text":"Great Helmet","flags":{"prophecy":false,"unique":false}},{"type":"Crusader Helmet","text":"Crusader Helmet","flags":{"prophecy":false,"unique":false}},{"type":"Aventail Helmet","text":"Aventail Helmet","flags":{"prophecy":false,"unique":false}},{"type":"Zealot Helmet","text":"Zealot Helmet","flags":{"prophecy":false,"unique":false}},{"type":"Great Crown","text":"Great Crown","flags":{"prophecy":false,"unique":false}},{"type":"Magistrate Crown","text":"Magistrate Crown","flags":{"prophecy":false,"unique":false}},{"type":"Prophet Crown","text":"Prophet Crown","flags":{"prophecy":false,"unique":false}},{"type":"Golden Wreath","text":"Golden Wreath","flags":{"prophecy":false,"unique":false}},{"type":"Golden Flame","text":"Golden Flame","flags":{"prophecy":false,"unique":false}},{"type":"Goathide Buckler","text":"Goathide Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Battle Buckler","text":"Battle Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Golden Buckler","text":"Golden Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Ironwood Buckler","text":"Ironwood Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Lacquered Buckler","text":"Lacquered Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Buckler","text":"Vaal Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Crusader Buckler","text":"Crusader Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Imperial Buckler","text":"Imperial Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Pine Buckler","text":"Pine Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Painted Buckler","text":"Painted Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Hammered Buckler","text":"Hammered Buckler","flags":{"prophecy":false,"unique":false}},{"type":"War Buckler","text":"War Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Buckler","text":"Gilded Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Oak Buckler","text":"Oak Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Enameled Buckler","text":"Enameled Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Corrugated Buckler","text":"Corrugated Buckler","flags":{"prophecy":false,"unique":false}},{"type":"Spiked Bundle","text":"Spiked Bundle","flags":{"prophecy":false,"unique":false}},{"type":"Alder Spiked Shield","text":"Alder Spiked Shield","flags":{"prophecy":false,"unique":false}},{"type":"Ezomyte Spiked Shield","text":"Ezomyte Spiked Shield","flags":{"prophecy":false,"unique":false}},{"type":"Mirrored Spiked Shield","text":"Mirrored Spiked Shield","flags":{"prophecy":false,"unique":false}},{"type":"Supreme Spiked Shield","text":"Supreme Spiked Shield","flags":{"prophecy":false,"unique":false}},{"type":"Driftwood Spiked Shield","text":"Driftwood Spiked Shield","flags":{"prophecy":false,"unique":false}},{"type":"Alloyed Spiked Shield","text":"Alloyed Spiked Shield","flags":{"prophecy":false,"unique":false}},{"type":"Burnished Spiked Shield","text":"Burnished Spiked Shield","flags":{"prophecy":false,"unique":false}},{"type":"Ornate Spiked Shield","text":"Ornate Spiked Shield","flags":{"prophecy":false,"unique":false}},{"type":"Redwood Spiked Shield","text":"Redwood Spiked Shield","flags":{"prophecy":false,"unique":false}},{"type":"Compound Spiked Shield","text":"Compound Spiked Shield","flags":{"prophecy":false,"unique":false}},{"type":"Polished Spiked Shield","text":"Polished Spiked Shield","flags":{"prophecy":false,"unique":false}},{"type":"Sovereign Spiked Shield","text":"Sovereign Spiked Shield","flags":{"prophecy":false,"unique":false}},{"type":"Twig Spirit Shield","text":"Twig Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Chiming Spirit Shield","text":"Chiming Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Thorium Spirit Shield","text":"Thorium Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Lacewood Spirit Shield","text":"Lacewood Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Fossilised Spirit Shield","text":"Fossilised Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Spirit Shield","text":"Vaal Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Harmonic Spirit Shield","text":"Harmonic Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Titanium Spirit Shield","text":"Titanium Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Yew Spirit Shield","text":"Yew Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Bone Spirit Shield","text":"Bone Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Tarnished Spirit Shield","text":"Tarnished Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Jingling Spirit Shield","text":"Jingling Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Brass Spirit Shield","text":"Brass Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Walnut Spirit Shield","text":"Walnut Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Ivory Spirit Shield","text":"Ivory Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Ancient Spirit Shield","text":"Ancient Spirit Shield","flags":{"prophecy":false,"unique":false}},{"type":"Splintered Tower Shield","text":"Splintered Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Bronze Tower Shield","text":"Bronze Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Girded Tower Shield","text":"Girded Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Crested Tower Shield","text":"Crested Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Shagreen Tower Shield","text":"Shagreen Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Ebony Tower Shield","text":"Ebony Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Ezomyte Tower Shield","text":"Ezomyte Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Colossal Tower Shield","text":"Colossal Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Pinnacle Tower Shield","text":"Pinnacle Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Corroded Tower Shield","text":"Corroded Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Rawhide Tower Shield","text":"Rawhide Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Cedar Tower Shield","text":"Cedar Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Copper Tower Shield","text":"Copper Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Reinforced Tower Shield","text":"Reinforced Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Painted Tower Shield","text":"Painted Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Buckskin Tower Shield","text":"Buckskin Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Mahogany Tower Shield","text":"Mahogany Tower Shield","flags":{"prophecy":false,"unique":false}},{"type":"Rotted Round Shield","text":"Rotted Round Shield","flags":{"prophecy":false,"unique":false}},{"type":"Teak Round Shield","text":"Teak Round Shield","flags":{"prophecy":false,"unique":false}},{"type":"Spiny Round Shield","text":"Spiny Round Shield","flags":{"prophecy":false,"unique":false}},{"type":"Cardinal Round Shield","text":"Cardinal Round Shield","flags":{"prophecy":false,"unique":false}},{"type":"Elegant Round Shield","text":"Elegant Round Shield","flags":{"prophecy":false,"unique":false}},{"type":"Fir Round Shield","text":"Fir Round Shield","flags":{"prophecy":false,"unique":false}},{"type":"Studded Round Shield","text":"Studded Round Shield","flags":{"prophecy":false,"unique":false}},{"type":"Scarlet Round Shield","text":"Scarlet Round Shield","flags":{"prophecy":false,"unique":false}},{"type":"Splendid Round Shield","text":"Splendid Round Shield","flags":{"prophecy":false,"unique":false}},{"type":"Maple Round Shield","text":"Maple Round Shield","flags":{"prophecy":false,"unique":false}},{"type":"Spiked Round Shield","text":"Spiked Round Shield","flags":{"prophecy":false,"unique":false}},{"type":"Crimson Round Shield","text":"Crimson Round Shield","flags":{"prophecy":false,"unique":false}},{"type":"Baroque Round Shield","text":"Baroque Round Shield","flags":{"prophecy":false,"unique":false}},{"type":"Plank Kite Shield","text":"Plank Kite Shield","flags":{"prophecy":false,"unique":false}},{"type":"Branded Kite Shield","text":"Branded Kite Shield","flags":{"prophecy":false,"unique":false}},{"type":"Champion Kite Shield","text":"Champion Kite Shield","flags":{"prophecy":false,"unique":false}},{"type":"Mosaic Kite Shield","text":"Mosaic Kite Shield","flags":{"prophecy":false,"unique":false}},{"type":"Archon Kite Shield","text":"Archon Kite Shield","flags":{"prophecy":false,"unique":false}},{"type":"Linden Kite Shield","text":"Linden Kite Shield","flags":{"prophecy":false,"unique":false}},{"type":"Reinforced Kite Shield","text":"Reinforced Kite Shield","flags":{"prophecy":false,"unique":false}},{"type":"Layered Kite Shield","text":"Layered Kite Shield","flags":{"prophecy":false,"unique":false}},{"type":"Ceremonial Kite Shield","text":"Ceremonial Kite Shield","flags":{"prophecy":false,"unique":false}},{"type":"Etched Kite Shield","text":"Etched Kite Shield","flags":{"prophecy":false,"unique":false}},{"type":"Steel Kite Shield","text":"Steel Kite Shield","flags":{"prophecy":false,"unique":false}},{"type":"Laminated Kite Shield","text":"Laminated Kite Shield","flags":{"prophecy":false,"unique":false}},{"type":"Angelic Kite Shield","text":"Angelic Kite Shield","flags":{"prophecy":false,"unique":false}},{"type":"Cured Quiver","text":"Cured Quiver","flags":{"prophecy":false,"unique":false}},{"type":"Fire Arrow Quiver","text":"Fire Arrow Quiver","flags":{"prophecy":false,"unique":false}},{"type":"Broadhead Arrow Quiver","text":"Broadhead Arrow Quiver","flags":{"prophecy":false,"unique":false}},{"type":"Penetrating Arrow Quiver","text":"Penetrating Arrow Quiver","flags":{"prophecy":false,"unique":false}},{"type":"Spike-Point Arrow Quiver","text":"Spike-Point Arrow Quiver","flags":{"prophecy":false,"unique":false}},{"type":"Ornate Quiver","text":"Ornate Quiver","flags":{"prophecy":false,"unique":false}},{"type":"Rugged Quiver","text":"Rugged Quiver","flags":{"prophecy":false,"unique":false}},{"type":"Conductive Quiver","text":"Conductive Quiver","flags":{"prophecy":false,"unique":false}},{"type":"Heavy Quiver","text":"Heavy Quiver","flags":{"prophecy":false,"unique":false}},{"type":"Light Quiver","text":"Light Quiver","flags":{"prophecy":false,"unique":false}},{"type":"Serrated Arrow Quiver","text":"Serrated Arrow Quiver","flags":{"prophecy":false,"unique":false}},{"type":"Two-Point Arrow Quiver","text":"Two-Point Arrow Quiver","flags":{"prophecy":false,"unique":false}},{"type":"Sharktooth Arrow Quiver","text":"Sharktooth Arrow Quiver","flags":{"prophecy":false,"unique":false}},{"type":"Blunt Arrow Quiver","text":"Blunt Arrow Quiver","flags":{"prophecy":false,"unique":false}}]},{"label":"Cards","entries":[{"type":"Abandoned Wealth","text":"Abandoned Wealth","flags":{"prophecy":false,"unique":false}},{"type":"A Dab of Ink","text":"A Dab of Ink","flags":{"prophecy":false,"unique":false}},{"type":"Akil\u0027s Prophecy","text":"Akil\u0027s Prophecy","flags":{"prophecy":false,"unique":false}},{"type":"Alluring Bounty","text":"Alluring Bounty","flags":{"prophecy":false,"unique":false}},{"type":"Alone in the Darkness","text":"Alone in the Darkness","flags":{"prophecy":false,"unique":false}},{"type":"A Mother\u0027s Parting Gift","text":"A Mother\u0027s Parting Gift","flags":{"prophecy":false,"unique":false}},{"type":"Anarchy\u0027s Price","text":"Anarchy\u0027s Price","flags":{"prophecy":false,"unique":false}},{"type":"Arrogance of the Vaal","text":"Arrogance of the Vaal","flags":{"prophecy":false,"unique":false}},{"type":"Assassin\u0027s Favour","text":"Assassin\u0027s Favour","flags":{"prophecy":false,"unique":false}},{"type":"Atziri\u0027s Arsenal","text":"Atziri\u0027s Arsenal","flags":{"prophecy":false,"unique":false}},{"type":"Audacity","text":"Audacity","flags":{"prophecy":false,"unique":false}},{"type":"Azyran\u0027s Reward","text":"Azyran\u0027s Reward","flags":{"prophecy":false,"unique":false}},{"type":"Baited Expectations","text":"Baited Expectations","flags":{"prophecy":false,"unique":false}},{"type":"Beauty Through Death","text":"Beauty Through Death","flags":{"prophecy":false,"unique":false}},{"type":"Birth of the Three","text":"Birth of the Three","flags":{"prophecy":false,"unique":false}},{"type":"Blessing of God","text":"Blessing of God","flags":{"prophecy":false,"unique":false}},{"type":"Blind Venture","text":"Blind Venture","flags":{"prophecy":false,"unique":false}},{"type":"Boon of Justice","text":"Boon of Justice","flags":{"prophecy":false,"unique":false}},{"type":"Boon of the First Ones","text":"Boon of the First Ones","flags":{"prophecy":false,"unique":false}},{"type":"Boundless Realms","text":"Boundless Realms","flags":{"prophecy":false,"unique":false}},{"type":"Bowyer\u0027s Dream","text":"Bowyer\u0027s Dream","flags":{"prophecy":false,"unique":false}},{"type":"Buried Treasure","text":"Buried Treasure","flags":{"prophecy":false,"unique":false}},{"type":"Burning Blood","text":"Burning Blood","flags":{"prophecy":false,"unique":false}},{"type":"Call to the First Ones","text":"Call to the First Ones","flags":{"prophecy":false,"unique":false}},{"type":"Cameria\u0027s Cut","text":"Cameria\u0027s Cut","flags":{"prophecy":false,"unique":false}},{"type":"Cartographer\u0027s Delight","text":"Cartographer\u0027s Delight","flags":{"prophecy":false,"unique":false}},{"type":"Chaotic Disposition","text":"Chaotic Disposition","flags":{"prophecy":false,"unique":false}},{"type":"Council of Cats","text":"Council of Cats","flags":{"prophecy":false,"unique":false}},{"type":"Coveted Possession","text":"Coveted Possession","flags":{"prophecy":false,"unique":false}},{"type":"Dark Dreams","text":"Dark Dreams","flags":{"prophecy":false,"unique":false}},{"type":"Dark Temptation","text":"Dark Temptation","flags":{"prophecy":false,"unique":false}},{"type":"Death","text":"Death","flags":{"prophecy":false,"unique":false}},{"type":"Deathly Designs","text":"Deathly Designs","flags":{"prophecy":false,"unique":false}},{"type":"Demigod\u0027s Wager","text":"Demigod\u0027s Wager","flags":{"prophecy":false,"unique":false}},{"type":"Destined to Crumble","text":"Destined to Crumble","flags":{"prophecy":false,"unique":false}},{"type":"Dialla\u0027s Subjugation","text":"Dialla\u0027s Subjugation","flags":{"prophecy":false,"unique":false}},{"type":"Divine Justice","text":"Divine Justice","flags":{"prophecy":false,"unique":false}},{"type":"Doedre\u0027s Madness","text":"Doedre\u0027s Madness","flags":{"prophecy":false,"unique":false}},{"type":"Dying Anguish","text":"Dying Anguish","flags":{"prophecy":false,"unique":false}},{"type":"Earth Drinker","text":"Earth Drinker","flags":{"prophecy":false,"unique":false}},{"type":"Echoes of Love","text":"Echoes of Love","flags":{"prophecy":false,"unique":false}},{"type":"Emperor of Purity","text":"Emperor of Purity","flags":{"prophecy":false,"unique":false}},{"type":"Emperor\u0027s Luck","text":"Emperor\u0027s Luck","flags":{"prophecy":false,"unique":false}},{"type":"Etched in Blood","text":"Etched in Blood","flags":{"prophecy":false,"unique":false}},{"type":"Forbidden Power","text":"Forbidden Power","flags":{"prophecy":false,"unique":false}},{"type":"Friendship","text":"Friendship","flags":{"prophecy":false,"unique":false}},{"type":"Gemcutter\u0027s Promise","text":"Gemcutter\u0027s Promise","flags":{"prophecy":false,"unique":false}},{"type":"Gift of the Gemling Queen","text":"Gift of the Gemling Queen","flags":{"prophecy":false,"unique":false}},{"type":"Glimmer of Hope","text":"Glimmer of Hope","flags":{"prophecy":false,"unique":false}},{"type":"Grave Knowledge","text":"Grave Knowledge","flags":{"prophecy":false,"unique":false}},{"type":"Harmony of Souls","text":"Harmony of Souls","flags":{"prophecy":false,"unique":false}},{"type":"Her Mask","text":"Her Mask","flags":{"prophecy":false,"unique":false}},{"type":"Heterochromia","text":"Heterochromia","flags":{"prophecy":false,"unique":false}},{"type":"Hope","text":"Hope","flags":{"prophecy":false,"unique":false}},{"type":"House of Mirrors","text":"House of Mirrors","flags":{"prophecy":false,"unique":false}},{"type":"Hubris","text":"Hubris","flags":{"prophecy":false,"unique":false}},{"type":"Humility","text":"Humility","flags":{"prophecy":false,"unique":false}},{"type":"Hunter\u0027s Resolve","text":"Hunter\u0027s Resolve","flags":{"prophecy":false,"unique":false}},{"type":"Hunter\u0027s Reward","text":"Hunter\u0027s Reward","flags":{"prophecy":false,"unique":false}},{"type":"Immortal Resolve","text":"Immortal Resolve","flags":{"prophecy":false,"unique":false}},{"type":"Imperial Legacy","text":"Imperial Legacy","flags":{"prophecy":false,"unique":false}},{"type":"Jack in the Box","text":"Jack in the Box","flags":{"prophecy":false,"unique":false}},{"type":"Lantador\u0027s Lost Love","text":"Lantador\u0027s Lost Love","flags":{"prophecy":false,"unique":false}},{"type":"Last Hope","text":"Last Hope","flags":{"prophecy":false,"unique":false}},{"type":"Left to Fate","text":"Left to Fate","flags":{"prophecy":false,"unique":false}},{"type":"Light and Truth","text":"Light and Truth","flags":{"prophecy":false,"unique":false}},{"type":"Lingering Remnants","text":"Lingering Remnants","flags":{"prophecy":false,"unique":false}},{"type":"Lost Worlds","text":"Lost Worlds","flags":{"prophecy":false,"unique":false}},{"type":"Loyalty","text":"Loyalty","flags":{"prophecy":false,"unique":false}},{"type":"Lucky Connections","text":"Lucky Connections","flags":{"prophecy":false,"unique":false}},{"type":"Lucky Deck","text":"Lucky Deck","flags":{"prophecy":false,"unique":false}},{"type":"Lysah\u0027s Respite","text":"Lysah\u0027s Respite","flags":{"prophecy":false,"unique":false}},{"type":"Mawr Blaidd","text":"Mawr Blaidd","flags":{"prophecy":false,"unique":false}},{"type":"Merciless Armament","text":"Merciless Armament","flags":{"prophecy":false,"unique":false}},{"type":"Might is Right","text":"Might is Right","flags":{"prophecy":false,"unique":false}},{"type":"Mitts","text":"Mitts","flags":{"prophecy":false,"unique":false}},{"type":"Monochrome","text":"Monochrome","flags":{"prophecy":false,"unique":false}},{"type":"More is Never Enough","text":"More is Never Enough","flags":{"prophecy":false,"unique":false}},{"type":"Nook\u0027s Crown","text":"Nook\u0027s Crown","flags":{"prophecy":false,"unique":false}},{"type":"No Traces","text":"No Traces","flags":{"prophecy":false,"unique":false}},{"type":"Perfection","text":"Perfection","flags":{"prophecy":false,"unique":false}},{"type":"Pride Before the Fall","text":"Pride Before the Fall","flags":{"prophecy":false,"unique":false}},{"type":"Pride of the First Ones","text":"Pride of the First Ones","flags":{"prophecy":false,"unique":false}},{"type":"Prosperity","text":"Prosperity","flags":{"prophecy":false,"unique":false}},{"type":"Rain of Chaos","text":"Rain of Chaos","flags":{"prophecy":false,"unique":false}},{"type":"Rain Tempter","text":"Rain Tempter","flags":{"prophecy":false,"unique":false}},{"type":"Rats","text":"Rats","flags":{"prophecy":false,"unique":false}},{"type":"Rebirth","text":"Rebirth","flags":{"prophecy":false,"unique":false}},{"type":"Remembrance","text":"Remembrance","flags":{"prophecy":false,"unique":false}},{"type":"Sambodhi\u0027s Vow","text":"Sambodhi\u0027s Vow","flags":{"prophecy":false,"unique":false}},{"type":"Scholar of the Seas","text":"Scholar of the Seas","flags":{"prophecy":false,"unique":false}},{"type":"Seven Years Bad Luck","text":"Seven Years Bad Luck","flags":{"prophecy":false,"unique":false}},{"type":"Shard of Fate","text":"Shard of Fate","flags":{"prophecy":false,"unique":false}},{"type":"Squandered Prosperity","text":"Squandered Prosperity","flags":{"prophecy":false,"unique":false}},{"type":"Struck by Lightning","text":"Struck by Lightning","flags":{"prophecy":false,"unique":false}},{"type":"Succor of the Sinless","text":"Succor of the Sinless","flags":{"prophecy":false,"unique":false}},{"type":"The Admirer","text":"The Admirer","flags":{"prophecy":false,"unique":false}},{"type":"The Aesthete","text":"The Aesthete","flags":{"prophecy":false,"unique":false}},{"type":"The Archmage\u0027s Right Hand","text":"The Archmage\u0027s Right Hand","flags":{"prophecy":false,"unique":false}},{"type":"The Arena Champion","text":"The Arena Champion","flags":{"prophecy":false,"unique":false}},{"type":"The Army of Blood","text":"The Army of Blood","flags":{"prophecy":false,"unique":false}},{"type":"The Artist","text":"The Artist","flags":{"prophecy":false,"unique":false}},{"type":"The Avenger","text":"The Avenger","flags":{"prophecy":false,"unique":false}},{"type":"The Bargain","text":"The Bargain","flags":{"prophecy":false,"unique":false}},{"type":"The Battle Born","text":"The Battle Born","flags":{"prophecy":false,"unique":false}},{"type":"The Beast","text":"The Beast","flags":{"prophecy":false,"unique":false}},{"type":"The Betrayal","text":"The Betrayal","flags":{"prophecy":false,"unique":false}},{"type":"The Blazing Fire","text":"The Blazing Fire","flags":{"prophecy":false,"unique":false}},{"type":"The Body","text":"The Body","flags":{"prophecy":false,"unique":false}},{"type":"The Bones","text":"The Bones","flags":{"prophecy":false,"unique":false}},{"type":"The Breach","text":"The Breach","flags":{"prophecy":false,"unique":false}},{"type":"The Brittle Emperor","text":"The Brittle Emperor","flags":{"prophecy":false,"unique":false}},{"type":"The Cacophony","text":"The Cacophony","flags":{"prophecy":false,"unique":false}},{"type":"The Calling","text":"The Calling","flags":{"prophecy":false,"unique":false}},{"type":"The Carrion Crow","text":"The Carrion Crow","flags":{"prophecy":false,"unique":false}},{"type":"The Cartographer","text":"The Cartographer","flags":{"prophecy":false,"unique":false}},{"type":"The Cataclysm","text":"The Cataclysm","flags":{"prophecy":false,"unique":false}},{"type":"The Catalyst","text":"The Catalyst","flags":{"prophecy":false,"unique":false}},{"type":"The Celestial Justicar","text":"The Celestial Justicar","flags":{"prophecy":false,"unique":false}},{"type":"The Celestial Stone","text":"The Celestial Stone","flags":{"prophecy":false,"unique":false}},{"type":"The Chains that Bind","text":"The Chains that Bind","flags":{"prophecy":false,"unique":false}},{"type":"The Cheater","text":"The Cheater","flags":{"prophecy":false,"unique":false}},{"type":"The Chosen","text":"The Chosen","flags":{"prophecy":false,"unique":false}},{"type":"The Coming Storm","text":"The Coming Storm","flags":{"prophecy":false,"unique":false}},{"type":"The Conduit","text":"The Conduit","flags":{"prophecy":false,"unique":false}},{"type":"The Craving","text":"The Craving","flags":{"prophecy":false,"unique":false}},{"type":"The Cursed King","text":"The Cursed King","flags":{"prophecy":false,"unique":false}},{"type":"The Damned","text":"The Damned","flags":{"prophecy":false,"unique":false}},{"type":"The Dapper Prodigy","text":"The Dapper Prodigy","flags":{"prophecy":false,"unique":false}},{"type":"The Darkest Dream","text":"The Darkest Dream","flags":{"prophecy":false,"unique":false}},{"type":"The Dark Mage","text":"The Dark Mage","flags":{"prophecy":false,"unique":false}},{"type":"The Deal","text":"The Deal","flags":{"prophecy":false,"unique":false}},{"type":"The Deceiver","text":"The Deceiver","flags":{"prophecy":false,"unique":false}},{"type":"The Deep Ones","text":"The Deep Ones","flags":{"prophecy":false,"unique":false}},{"type":"The Demon","text":"The Demon","flags":{"prophecy":false,"unique":false}},{"type":"The Demoness","text":"The Demoness","flags":{"prophecy":false,"unique":false}},{"type":"The Doctor","text":"The Doctor","flags":{"prophecy":false,"unique":false}},{"type":"The Doppelganger","text":"The Doppelganger","flags":{"prophecy":false,"unique":false}},{"type":"The Dragon","text":"The Dragon","flags":{"prophecy":false,"unique":false}},{"type":"The Dragon\u0027s Heart","text":"The Dragon\u0027s Heart","flags":{"prophecy":false,"unique":false}},{"type":"The Dreamer","text":"The Dreamer","flags":{"prophecy":false,"unique":false}},{"type":"The Dreamland","text":"The Dreamland","flags":{"prophecy":false,"unique":false}},{"type":"The Drunken Aristocrat","text":"The Drunken Aristocrat","flags":{"prophecy":false,"unique":false}},{"type":"The Easy Stroll","text":"The Easy Stroll","flags":{"prophecy":false,"unique":false}},{"type":"The Eldritch Decay","text":"The Eldritch Decay","flags":{"prophecy":false,"unique":false}},{"type":"The Encroaching Darkness","text":"The Encroaching Darkness","flags":{"prophecy":false,"unique":false}},{"type":"The Endless Darkness","text":"The Endless Darkness","flags":{"prophecy":false,"unique":false}},{"type":"The Endurance","text":"The Endurance","flags":{"prophecy":false,"unique":false}},{"type":"The Enlightened","text":"The Enlightened","flags":{"prophecy":false,"unique":false}},{"type":"The Escape","text":"The Escape","flags":{"prophecy":false,"unique":false}},{"type":"The Ethereal","text":"The Ethereal","flags":{"prophecy":false,"unique":false}},{"type":"The Explorer","text":"The Explorer","flags":{"prophecy":false,"unique":false}},{"type":"The Eye of Terror","text":"The Eye of Terror","flags":{"prophecy":false,"unique":false}},{"type":"The Eye of the Dragon","text":"The Eye of the Dragon","flags":{"prophecy":false,"unique":false}},{"type":"The Fathomless Depths","text":"The Fathomless Depths","flags":{"prophecy":false,"unique":false}},{"type":"The Feast","text":"The Feast","flags":{"prophecy":false,"unique":false}},{"type":"The Fiend","text":"The Fiend","flags":{"prophecy":false,"unique":false}},{"type":"The Fishmonger","text":"The Fishmonger","flags":{"prophecy":false,"unique":false}},{"type":"The Fletcher","text":"The Fletcher","flags":{"prophecy":false,"unique":false}},{"type":"The Flora\u0027s Gift","text":"The Flora\u0027s Gift","flags":{"prophecy":false,"unique":false}},{"type":"The Fool","text":"The Fool","flags":{"prophecy":false,"unique":false}},{"type":"The Formless Sea","text":"The Formless Sea","flags":{"prophecy":false,"unique":false}},{"type":"The Forsaken","text":"The Forsaken","flags":{"prophecy":false,"unique":false}},{"type":"The Fox","text":"The Fox","flags":{"prophecy":false,"unique":false}},{"type":"The Gambler","text":"The Gambler","flags":{"prophecy":false,"unique":false}},{"type":"The Garish Power","text":"The Garish Power","flags":{"prophecy":false,"unique":false}},{"type":"The Gemcutter","text":"The Gemcutter","flags":{"prophecy":false,"unique":false}},{"type":"The Gentleman","text":"The Gentleman","flags":{"prophecy":false,"unique":false}},{"type":"The Gladiator","text":"The Gladiator","flags":{"prophecy":false,"unique":false}},{"type":"The Golden Era","text":"The Golden Era","flags":{"prophecy":false,"unique":false}},{"type":"The Hale Heart","text":"The Hale Heart","flags":{"prophecy":false,"unique":false}},{"type":"The Harvester","text":"The Harvester","flags":{"prophecy":false,"unique":false}},{"type":"The Hermit","text":"The Hermit","flags":{"prophecy":false,"unique":false}},{"type":"The Heroic Shot","text":"The Heroic Shot","flags":{"prophecy":false,"unique":false}},{"type":"The Hoarder","text":"The Hoarder","flags":{"prophecy":false,"unique":false}},{"type":"The Hunger","text":"The Hunger","flags":{"prophecy":false,"unique":false}},{"type":"The Immortal","text":"The Immortal","flags":{"prophecy":false,"unique":false}},{"type":"The Incantation","text":"The Incantation","flags":{"prophecy":false,"unique":false}},{"type":"The Innocent","text":"The Innocent","flags":{"prophecy":false,"unique":false}},{"type":"The Inoculated","text":"The Inoculated","flags":{"prophecy":false,"unique":false}},{"type":"The Insatiable","text":"The Insatiable","flags":{"prophecy":false,"unique":false}},{"type":"The Inventor","text":"The Inventor","flags":{"prophecy":false,"unique":false}},{"type":"The Iron Bard","text":"The Iron Bard","flags":{"prophecy":false,"unique":false}},{"type":"The Jester","text":"The Jester","flags":{"prophecy":false,"unique":false}},{"type":"The Jeweller\u0027s Boon","text":"The Jeweller\u0027s Boon","flags":{"prophecy":false,"unique":false}},{"type":"The Journey","text":"The Journey","flags":{"prophecy":false,"unique":false}},{"type":"The King\u0027s Blade","text":"The King\u0027s Blade","flags":{"prophecy":false,"unique":false}},{"type":"The King\u0027s Heart","text":"The King\u0027s Heart","flags":{"prophecy":false,"unique":false}},{"type":"The Landing","text":"The Landing","flags":{"prophecy":false,"unique":false}},{"type":"The Last One Standing","text":"The Last One Standing","flags":{"prophecy":false,"unique":false}},{"type":"The Lich","text":"The Lich","flags":{"prophecy":false,"unique":false}},{"type":"The Life Thief","text":"The Life Thief","flags":{"prophecy":false,"unique":false}},{"type":"The Lion","text":"The Lion","flags":{"prophecy":false,"unique":false}},{"type":"The Lord in Black","text":"The Lord in Black","flags":{"prophecy":false,"unique":false}},{"type":"The Lord of Celebration","text":"The Lord of Celebration","flags":{"prophecy":false,"unique":false}},{"type":"The Lover","text":"The Lover","flags":{"prophecy":false,"unique":false}},{"type":"The Lunaris Priestess","text":"The Lunaris Priestess","flags":{"prophecy":false,"unique":false}},{"type":"The Mad King","text":"The Mad King","flags":{"prophecy":false,"unique":false}},{"type":"The Master","text":"The Master","flags":{"prophecy":false,"unique":false}},{"type":"The Master Artisan","text":"The Master Artisan","flags":{"prophecy":false,"unique":false}},{"type":"The Mayor","text":"The Mayor","flags":{"prophecy":false,"unique":false}},{"type":"The Mercenary","text":"The Mercenary","flags":{"prophecy":false,"unique":false}},{"type":"The Messenger","text":"The Messenger","flags":{"prophecy":false,"unique":false}},{"type":"The Metalsmith\u0027s Gift","text":"The Metalsmith\u0027s Gift","flags":{"prophecy":false,"unique":false}},{"type":"The Mountain","text":"The Mountain","flags":{"prophecy":false,"unique":false}},{"type":"The Nurse","text":"The Nurse","flags":{"prophecy":false,"unique":false}},{"type":"The Oath","text":"The Oath","flags":{"prophecy":false,"unique":false}},{"type":"The Obscured","text":"The Obscured","flags":{"prophecy":false,"unique":false}},{"type":"The Offering","text":"The Offering","flags":{"prophecy":false,"unique":false}},{"type":"The Old Man","text":"The Old Man","flags":{"prophecy":false,"unique":false}},{"type":"The One With All","text":"The One With All","flags":{"prophecy":false,"unique":false}},{"type":"The Opulent","text":"The Opulent","flags":{"prophecy":false,"unique":false}},{"type":"The Pack Leader","text":"The Pack Leader","flags":{"prophecy":false,"unique":false}},{"type":"The Pact","text":"The Pact","flags":{"prophecy":false,"unique":false}},{"type":"The Penitent","text":"The Penitent","flags":{"prophecy":false,"unique":false}},{"type":"The Poet","text":"The Poet","flags":{"prophecy":false,"unique":false}},{"type":"The Polymath","text":"The Polymath","flags":{"prophecy":false,"unique":false}},{"type":"The Porcupine","text":"The Porcupine","flags":{"prophecy":false,"unique":false}},{"type":"The Price of Loyalty","text":"The Price of Loyalty","flags":{"prophecy":false,"unique":false}},{"type":"The Price of Protection","text":"The Price of Protection","flags":{"prophecy":false,"unique":false}},{"type":"The Primordial","text":"The Primordial","flags":{"prophecy":false,"unique":false}},{"type":"The Professor","text":"The Professor","flags":{"prophecy":false,"unique":false}},{"type":"The Progeny of Lunaris","text":"The Progeny of Lunaris","flags":{"prophecy":false,"unique":false}},{"type":"The Puzzle","text":"The Puzzle","flags":{"prophecy":false,"unique":false}},{"type":"The Queen","text":"The Queen","flags":{"prophecy":false,"unique":false}},{"type":"The Rabid Rhoa","text":"The Rabid Rhoa","flags":{"prophecy":false,"unique":false}},{"type":"The Realm","text":"The Realm","flags":{"prophecy":false,"unique":false}},{"type":"The Risk","text":"The Risk","flags":{"prophecy":false,"unique":false}},{"type":"The Rite of Elements","text":"The Rite of Elements","flags":{"prophecy":false,"unique":false}},{"type":"The Road to Power","text":"The Road to Power","flags":{"prophecy":false,"unique":false}},{"type":"The Ruthless Ceinture","text":"The Ruthless Ceinture","flags":{"prophecy":false,"unique":false}},{"type":"The Sacrifice","text":"The Sacrifice","flags":{"prophecy":false,"unique":false}},{"type":"The Saint\u0027s Treasure","text":"The Saint\u0027s Treasure","flags":{"prophecy":false,"unique":false}},{"type":"The Samurai\u0027s Eye","text":"The Samurai\u0027s Eye","flags":{"prophecy":false,"unique":false}},{"type":"The Scarred Meadow","text":"The Scarred Meadow","flags":{"prophecy":false,"unique":false}},{"type":"The Scavenger","text":"The Scavenger","flags":{"prophecy":false,"unique":false}},{"type":"The Scholar","text":"The Scholar","flags":{"prophecy":false,"unique":false}},{"type":"The Seeker","text":"The Seeker","flags":{"prophecy":false,"unique":false}},{"type":"The Sephirot","text":"The Sephirot","flags":{"prophecy":false,"unique":false}},{"type":"The Side Quest","text":"The Side Quest","flags":{"prophecy":false,"unique":false}},{"type":"The Sigil","text":"The Sigil","flags":{"prophecy":false,"unique":false}},{"type":"The Siren","text":"The Siren","flags":{"prophecy":false,"unique":false}},{"type":"The Skeleton","text":"The Skeleton","flags":{"prophecy":false,"unique":false}},{"type":"The Soul","text":"The Soul","flags":{"prophecy":false,"unique":false}},{"type":"The Spark and the Flame","text":"The Spark and the Flame","flags":{"prophecy":false,"unique":false}},{"type":"The Spoiled Prince","text":"The Spoiled Prince","flags":{"prophecy":false,"unique":false}},{"type":"The Standoff","text":"The Standoff","flags":{"prophecy":false,"unique":false}},{"type":"The Stormcaller","text":"The Stormcaller","flags":{"prophecy":false,"unique":false}},{"type":"The Strategist","text":"The Strategist","flags":{"prophecy":false,"unique":false}},{"type":"The Summoner","text":"The Summoner","flags":{"prophecy":false,"unique":false}},{"type":"The Sun","text":"The Sun","flags":{"prophecy":false,"unique":false}},{"type":"The Surgeon","text":"The Surgeon","flags":{"prophecy":false,"unique":false}},{"type":"The Surveyor","text":"The Surveyor","flags":{"prophecy":false,"unique":false}},{"type":"The Survivalist","text":"The Survivalist","flags":{"prophecy":false,"unique":false}},{"type":"The Sword King\u0027s Salute","text":"The Sword King\u0027s Salute","flags":{"prophecy":false,"unique":false}},{"type":"The Thaumaturgist","text":"The Thaumaturgist","flags":{"prophecy":false,"unique":false}},{"type":"The Throne","text":"The Throne","flags":{"prophecy":false,"unique":false}},{"type":"The Tinkerer\u0027s Table","text":"The Tinkerer\u0027s Table","flags":{"prophecy":false,"unique":false}},{"type":"The Tower","text":"The Tower","flags":{"prophecy":false,"unique":false}},{"type":"The Traitor","text":"The Traitor","flags":{"prophecy":false,"unique":false}},{"type":"The Trial","text":"The Trial","flags":{"prophecy":false,"unique":false}},{"type":"The Twilight Moon","text":"The Twilight Moon","flags":{"prophecy":false,"unique":false}},{"type":"The Twins","text":"The Twins","flags":{"prophecy":false,"unique":false}},{"type":"The Tyrant","text":"The Tyrant","flags":{"prophecy":false,"unique":false}},{"type":"The Undaunted","text":"The Undaunted","flags":{"prophecy":false,"unique":false}},{"type":"The Undisputed","text":"The Undisputed","flags":{"prophecy":false,"unique":false}},{"type":"The Union","text":"The Union","flags":{"prophecy":false,"unique":false}},{"type":"The Valkyrie","text":"The Valkyrie","flags":{"prophecy":false,"unique":false}},{"type":"The Valley of Steel Boxes","text":"The Valley of Steel Boxes","flags":{"prophecy":false,"unique":false}},{"type":"The Vast","text":"The Vast","flags":{"prophecy":false,"unique":false}},{"type":"The Visionary","text":"The Visionary","flags":{"prophecy":false,"unique":false}},{"type":"The Void","text":"The Void","flags":{"prophecy":false,"unique":false}},{"type":"The Warden","text":"The Warden","flags":{"prophecy":false,"unique":false}},{"type":"The Warlord","text":"The Warlord","flags":{"prophecy":false,"unique":false}},{"type":"The Watcher","text":"The Watcher","flags":{"prophecy":false,"unique":false}},{"type":"The Web","text":"The Web","flags":{"prophecy":false,"unique":false}},{"type":"The Wilted Rose","text":"The Wilted Rose","flags":{"prophecy":false,"unique":false}},{"type":"The Wind","text":"The Wind","flags":{"prophecy":false,"unique":false}},{"type":"The Witch","text":"The Witch","flags":{"prophecy":false,"unique":false}},{"type":"The Wolf","text":"The Wolf","flags":{"prophecy":false,"unique":false}},{"type":"The Wolf\u0027s Legacy","text":"The Wolf\u0027s Legacy","flags":{"prophecy":false,"unique":false}},{"type":"The Wolf\u0027s Shadow","text":"The Wolf\u0027s Shadow","flags":{"prophecy":false,"unique":false}},{"type":"The Wolven King\u0027s Bite","text":"The Wolven King\u0027s Bite","flags":{"prophecy":false,"unique":false}},{"type":"The Wolverine","text":"The Wolverine","flags":{"prophecy":false,"unique":false}},{"type":"The World Eater","text":"The World Eater","flags":{"prophecy":false,"unique":false}},{"type":"The Wrath","text":"The Wrath","flags":{"prophecy":false,"unique":false}},{"type":"The Wretched","text":"The Wretched","flags":{"prophecy":false,"unique":false}},{"type":"Thirst for Knowledge","text":"Thirst for Knowledge","flags":{"prophecy":false,"unique":false}},{"type":"Three Faces in the Dark","text":"Three Faces in the Dark","flags":{"prophecy":false,"unique":false}},{"type":"Three Voices","text":"Three Voices","flags":{"prophecy":false,"unique":false}},{"type":"Thunderous Skies","text":"Thunderous Skies","flags":{"prophecy":false,"unique":false}},{"type":"Time-Lost Relic","text":"Time-Lost Relic","flags":{"prophecy":false,"unique":false}},{"type":"Tranquillity","text":"Tranquillity","flags":{"prophecy":false,"unique":false}},{"type":"Treasure Hunter","text":"Treasure Hunter","flags":{"prophecy":false,"unique":false}},{"type":"Turn the Other Cheek","text":"Turn the Other Cheek","flags":{"prophecy":false,"unique":false}},{"type":"Underground Forest","text":"Underground Forest","flags":{"prophecy":false,"unique":false}},{"type":"Vanity","text":"Vanity","flags":{"prophecy":false,"unique":false}},{"type":"Vile Power","text":"Vile Power","flags":{"prophecy":false,"unique":false}},{"type":"Vinia\u0027s Token","text":"Vinia\u0027s Token","flags":{"prophecy":false,"unique":false}},{"type":"Void of the Elements","text":"Void of the Elements","flags":{"prophecy":false,"unique":false}},{"type":"Volatile Power","text":"Volatile Power","flags":{"prophecy":false,"unique":false}},{"type":"Wealth and Power","text":"Wealth and Power","flags":{"prophecy":false,"unique":false}}]},{"label":"Currency","entries":[{"name":"First Piece of the Arcane","type":"Legion Sword Piece","text":"First Piece of the Arcane Legion Sword Piece","flags":{"prophecy":false,"unique":true}},{"name":"First Piece of Brutality","type":"Imperial Staff Piece","text":"First Piece of Brutality Imperial Staff Piece","flags":{"prophecy":false,"unique":true}},{"name":"First Piece of Directions","type":"Blunt Arrow Quiver Piece","text":"First Piece of Directions Blunt Arrow Quiver Piece","flags":{"prophecy":false,"unique":true}},{"name":"First Piece of Focus","type":"Archon Kite Shield Piece","text":"First Piece of Focus Archon Kite Shield Piece","flags":{"prophecy":false,"unique":true}},{"name":"First Piece of Storms","type":"Callous Mask Piece","text":"First Piece of Storms Callous Mask Piece","flags":{"prophecy":false,"unique":true}},{"name":"First Piece of Time","type":"Cloth Belt Piece","text":"First Piece of Time Cloth Belt Piece","flags":{"prophecy":false,"unique":true}},{"name":"Fourth Piece of Focus","type":"Archon Kite Shield Piece","text":"Fourth Piece of Focus Archon Kite Shield Piece","flags":{"prophecy":false,"unique":true}},{"name":"Second Piece of the Arcane","type":"Legion Sword Piece","text":"Second Piece of the Arcane Legion Sword Piece","flags":{"prophecy":false,"unique":true}},{"name":"Second Piece of Brutality","type":"Imperial Staff Piece","text":"Second Piece of Brutality Imperial Staff Piece","flags":{"prophecy":false,"unique":true}},{"name":"Second Piece of Directions","type":"Blunt Arrow Quiver Piece","text":"Second Piece of Directions Blunt Arrow Quiver Piece","flags":{"prophecy":false,"unique":true}},{"name":"Second Piece of Focus","type":"Archon Kite Shield Piece","text":"Second Piece of Focus Archon Kite Shield Piece","flags":{"prophecy":false,"unique":true}},{"name":"Second Piece of Storms","type":"Callous Mask Piece","text":"Second Piece of Storms Callous Mask Piece","flags":{"prophecy":false,"unique":true}},{"name":"Second Piece of Time","type":"Cloth Belt Piece","text":"Second Piece of Time Cloth Belt Piece","flags":{"prophecy":false,"unique":true}},{"name":"Third Piece of the Arcane","type":"Legion Sword Piece","text":"Third Piece of the Arcane Legion Sword Piece","flags":{"prophecy":false,"unique":true}},{"name":"Third Piece of Brutality","type":"Imperial Staff Piece","text":"Third Piece of Brutality Imperial Staff Piece","flags":{"prophecy":false,"unique":true}},{"name":"Third Piece of Directions","type":"Blunt Arrow Quiver Piece","text":"Third Piece of Directions Blunt Arrow Quiver Piece","flags":{"prophecy":false,"unique":true}},{"name":"Third Piece of Focus","type":"Archon Kite Shield Piece","text":"Third Piece of Focus Archon Kite Shield Piece","flags":{"prophecy":false,"unique":true}},{"name":"Third Piece of Storms","type":"Callous Mask Piece","text":"Third Piece of Storms Callous Mask Piece","flags":{"prophecy":false,"unique":true}},{"type":"Crusader\u0027s Exalted Orb","text":"Crusader\u0027s Exalted Orb","flags":{"prophecy":false,"unique":false}},{"type":"Hunter\u0027s Exalted Orb","text":"Hunter\u0027s Exalted Orb","flags":{"prophecy":false,"unique":false}},{"type":"Redeemer\u0027s Exalted Orb","text":"Redeemer\u0027s Exalted Orb","flags":{"prophecy":false,"unique":false}},{"type":"Warlord\u0027s Exalted Orb","text":"Warlord\u0027s Exalted Orb","flags":{"prophecy":false,"unique":false}},{"type":"Awakener\u0027s Orb","text":"Awakener\u0027s Orb","flags":{"prophecy":false,"unique":false}},{"type":"Simple Rope Net","text":"Simple Rope Net","flags":{"prophecy":false,"unique":false}},{"type":"Thaumaturgical Net","text":"Thaumaturgical Net","flags":{"prophecy":false,"unique":false}},{"type":"Necromancy Net","text":"Necromancy Net","flags":{"prophecy":false,"unique":false}},{"type":"Reinforced Rope Net","text":"Reinforced Rope Net","flags":{"prophecy":false,"unique":false}},{"type":"Strong Rope Net","text":"Strong Rope Net","flags":{"prophecy":false,"unique":false}},{"type":"Simple Iron Net","text":"Simple Iron Net","flags":{"prophecy":false,"unique":false}},{"type":"Reinforced Iron Net","text":"Reinforced Iron Net","flags":{"prophecy":false,"unique":false}},{"type":"Strong Iron Net","text":"Strong Iron Net","flags":{"prophecy":false,"unique":false}},{"type":"Simple Steel Net","text":"Simple Steel Net","flags":{"prophecy":false,"unique":false}},{"type":"Reinforced Steel Net","text":"Reinforced Steel Net","flags":{"prophecy":false,"unique":false}},{"type":"Strong Steel Net","text":"Strong Steel Net","flags":{"prophecy":false,"unique":false}},{"type":"Simple Sextant","text":"Simple Sextant","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Sextant","text":"Awakened Sextant","flags":{"prophecy":false,"unique":false}},{"type":"Prime Sextant","text":"Prime Sextant","flags":{"prophecy":false,"unique":false}},{"type":"Orb of Augmentation","text":"Orb of Augmentation","flags":{"prophecy":false,"unique":false}},{"type":"Exalted Orb","text":"Exalted Orb","flags":{"prophecy":false,"unique":false}},{"type":"Exalted Shard","text":"Exalted Shard","flags":{"prophecy":false,"unique":false}},{"type":"Abyssal Delirium Orb","text":"Abyssal Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Armoursmith\u0027s Delirium Orb","text":"Armoursmith\u0027s Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Blighted Delirium Orb","text":"Blighted Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Obscured Delirium Orb","text":"Obscured Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Fine Delirium Orb","text":"Fine Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Diviner\u0027s Delirium Orb","text":"Diviner\u0027s Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Whispering Delirium Orb","text":"Whispering Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Fossilised Delirium Orb","text":"Fossilised Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Fragmented Delirium Orb","text":"Fragmented Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Thaumaturge\u0027s Delirium Orb","text":"Thaumaturge\u0027s Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Foreboding Delirium Orb","text":"Foreboding Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Timeless Delirium Orb","text":"Timeless Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Imperial Delirium Orb","text":"Imperial Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Cartographer\u0027s Delirium Orb","text":"Cartographer\u0027s Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Amorphous Delirium Orb","text":"Amorphous Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Decadent Delirium Orb","text":"Decadent Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Portentous Delirium Orb","text":"Portentous Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Skittering Delirium Orb","text":"Skittering Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Primal Delirium Orb","text":"Primal Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Jeweller\u0027s Delirium Orb","text":"Jeweller\u0027s Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Singular Delirium Orb","text":"Singular Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Blacksmith\u0027s Delirium Orb","text":"Blacksmith\u0027s Delirium Orb","flags":{"prophecy":false,"unique":false}},{"type":"Simulacrum Splinter","text":"Simulacrum Splinter","flags":{"prophecy":false,"unique":false}},{"type":"Armourer\u0027s Scrap","text":"Armourer\u0027s Scrap","flags":{"prophecy":false,"unique":false}},{"type":"Splinter of Chayula","text":"Splinter of Chayula","flags":{"prophecy":false,"unique":false}},{"type":"Splinter of Tul","text":"Splinter of Tul","flags":{"prophecy":false,"unique":false}},{"type":"Splinter of Xoph","text":"Splinter of Xoph","flags":{"prophecy":false,"unique":false}},{"type":"Splinter of Esh","text":"Splinter of Esh","flags":{"prophecy":false,"unique":false}},{"type":"Splinter of Uul-Netol","text":"Splinter of Uul-Netol","flags":{"prophecy":false,"unique":false}},{"type":"Blessing of Chayula","text":"Blessing of Chayula","flags":{"prophecy":false,"unique":false}},{"type":"Blessing of Tul","text":"Blessing of Tul","flags":{"prophecy":false,"unique":false}},{"type":"Blessing of Xoph","text":"Blessing of Xoph","flags":{"prophecy":false,"unique":false}},{"type":"Blessing of Esh","text":"Blessing of Esh","flags":{"prophecy":false,"unique":false}},{"type":"Blessing of Uul-Netol","text":"Blessing of Uul-Netol","flags":{"prophecy":false,"unique":false}},{"type":"Orb of Scouring","text":"Orb of Scouring","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Orb","text":"Vaal Orb","flags":{"prophecy":false,"unique":false}},{"type":"Remnant of Corruption","text":"Remnant of Corruption","flags":{"prophecy":false,"unique":false}},{"type":"Hollow Fossil","text":"Hollow Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Serrated Fossil","text":"Serrated Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Corroded Fossil","text":"Corroded Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Aetheric Fossil","text":"Aetheric Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Aberrant Fossil","text":"Aberrant Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Frigid Fossil","text":"Frigid Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Glyphic Fossil","text":"Glyphic Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Dense Fossil","text":"Dense Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Prismatic Fossil","text":"Prismatic Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Enchanted Fossil","text":"Enchanted Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Scorched Fossil","text":"Scorched Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Faceted Fossil","text":"Faceted Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Pristine Fossil","text":"Pristine Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Metallic Fossil","text":"Metallic Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Sanctified Fossil","text":"Sanctified Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Lucent Fossil","text":"Lucent Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Bound Fossil","text":"Bound Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Fractured Fossil","text":"Fractured Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Jagged Fossil","text":"Jagged Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Perfect Fossil","text":"Perfect Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Tangled Fossil","text":"Tangled Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Fossil","text":"Gilded Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Encrusted Fossil","text":"Encrusted Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Shuddering Fossil","text":"Shuddering Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Bloodstained Fossil","text":"Bloodstained Fossil","flags":{"prophecy":false,"unique":false}},{"type":"Mirror of Kalandra","text":"Mirror of Kalandra","flags":{"prophecy":false,"unique":false}},{"type":"Mirror Shard","text":"Mirror Shard","flags":{"prophecy":false,"unique":false}},{"type":"Muttering Essence of Anger","text":"Muttering Essence of Anger","flags":{"prophecy":false,"unique":false}},{"type":"Weeping Essence of Anger","text":"Weeping Essence of Anger","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Anger","text":"Wailing Essence of Anger","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Anger","text":"Screaming Essence of Anger","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Anger","text":"Shrieking Essence of Anger","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Anger","text":"Deafening Essence of Anger","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Anguish","text":"Wailing Essence of Anguish","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Anguish","text":"Screaming Essence of Anguish","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Anguish","text":"Shrieking Essence of Anguish","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Anguish","text":"Deafening Essence of Anguish","flags":{"prophecy":false,"unique":false}},{"type":"Whispering Essence of Contempt","text":"Whispering Essence of Contempt","flags":{"prophecy":false,"unique":false}},{"type":"Muttering Essence of Contempt","text":"Muttering Essence of Contempt","flags":{"prophecy":false,"unique":false}},{"type":"Weeping Essence of Contempt","text":"Weeping Essence of Contempt","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Contempt","text":"Wailing Essence of Contempt","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Contempt","text":"Screaming Essence of Contempt","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Contempt","text":"Shrieking Essence of Contempt","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Contempt","text":"Deafening Essence of Contempt","flags":{"prophecy":false,"unique":false}},{"type":"Essence of Delirium","text":"Essence of Delirium","flags":{"prophecy":false,"unique":false}},{"type":"Weeping Essence of Doubt","text":"Weeping Essence of Doubt","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Doubt","text":"Wailing Essence of Doubt","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Doubt","text":"Screaming Essence of Doubt","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Doubt","text":"Shrieking Essence of Doubt","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Doubt","text":"Deafening Essence of Doubt","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Dread","text":"Screaming Essence of Dread","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Dread","text":"Shrieking Essence of Dread","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Dread","text":"Deafening Essence of Dread","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Envy","text":"Screaming Essence of Envy","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Envy","text":"Shrieking Essence of Envy","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Envy","text":"Deafening Essence of Envy","flags":{"prophecy":false,"unique":false}},{"type":"Muttering Essence of Fear","text":"Muttering Essence of Fear","flags":{"prophecy":false,"unique":false}},{"type":"Weeping Essence of Fear","text":"Weeping Essence of Fear","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Fear","text":"Wailing Essence of Fear","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Fear","text":"Screaming Essence of Fear","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Fear","text":"Shrieking Essence of Fear","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Fear","text":"Deafening Essence of Fear","flags":{"prophecy":false,"unique":false}},{"type":"Whispering Essence of Greed","text":"Whispering Essence of Greed","flags":{"prophecy":false,"unique":false}},{"type":"Muttering Essence of Greed","text":"Muttering Essence of Greed","flags":{"prophecy":false,"unique":false}},{"type":"Weeping Essence of Greed","text":"Weeping Essence of Greed","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Greed","text":"Wailing Essence of Greed","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Greed","text":"Screaming Essence of Greed","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Greed","text":"Shrieking Essence of Greed","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Greed","text":"Deafening Essence of Greed","flags":{"prophecy":false,"unique":false}},{"type":"Whispering Essence of Hatred","text":"Whispering Essence of Hatred","flags":{"prophecy":false,"unique":false}},{"type":"Muttering Essence of Hatred","text":"Muttering Essence of Hatred","flags":{"prophecy":false,"unique":false}},{"type":"Weeping Essence of Hatred","text":"Weeping Essence of Hatred","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Hatred","text":"Wailing Essence of Hatred","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Hatred","text":"Screaming Essence of Hatred","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Hatred","text":"Shrieking Essence of Hatred","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Hatred","text":"Deafening Essence of Hatred","flags":{"prophecy":false,"unique":false}},{"type":"Essence of Horror","text":"Essence of Horror","flags":{"prophecy":false,"unique":false}},{"type":"Essence of Hysteria","text":"Essence of Hysteria","flags":{"prophecy":false,"unique":false}},{"type":"Essence of Insanity","text":"Essence of Insanity","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Loathing","text":"Wailing Essence of Loathing","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Loathing","text":"Screaming Essence of Loathing","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Loathing","text":"Shrieking Essence of Loathing","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Loathing","text":"Deafening Essence of Loathing","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Misery","text":"Screaming Essence of Misery","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Misery","text":"Shrieking Essence of Misery","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Misery","text":"Deafening Essence of Misery","flags":{"prophecy":false,"unique":false}},{"type":"Weeping Essence of Rage","text":"Weeping Essence of Rage","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Rage","text":"Wailing Essence of Rage","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Rage","text":"Screaming Essence of Rage","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Rage","text":"Shrieking Essence of Rage","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Rage","text":"Deafening Essence of Rage","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Scorn","text":"Screaming Essence of Scorn","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Scorn","text":"Shrieking Essence of Scorn","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Scorn","text":"Deafening Essence of Scorn","flags":{"prophecy":false,"unique":false}},{"type":"Muttering Essence of Sorrow","text":"Muttering Essence of Sorrow","flags":{"prophecy":false,"unique":false}},{"type":"Weeping Essence of Sorrow","text":"Weeping Essence of Sorrow","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Sorrow","text":"Wailing Essence of Sorrow","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Sorrow","text":"Screaming Essence of Sorrow","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Sorrow","text":"Shrieking Essence of Sorrow","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Sorrow","text":"Deafening Essence of Sorrow","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Spite","text":"Wailing Essence of Spite","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Spite","text":"Screaming Essence of Spite","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Spite","text":"Shrieking Essence of Spite","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Spite","text":"Deafening Essence of Spite","flags":{"prophecy":false,"unique":false}},{"type":"Weeping Essence of Suffering","text":"Weeping Essence of Suffering","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Suffering","text":"Wailing Essence of Suffering","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Suffering","text":"Screaming Essence of Suffering","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Suffering","text":"Shrieking Essence of Suffering","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Suffering","text":"Deafening Essence of Suffering","flags":{"prophecy":false,"unique":false}},{"type":"Muttering Essence of Torment","text":"Muttering Essence of Torment","flags":{"prophecy":false,"unique":false}},{"type":"Weeping Essence of Torment","text":"Weeping Essence of Torment","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Torment","text":"Wailing Essence of Torment","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Torment","text":"Screaming Essence of Torment","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Torment","text":"Shrieking Essence of Torment","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Torment","text":"Deafening Essence of Torment","flags":{"prophecy":false,"unique":false}},{"type":"Whispering Essence of Woe","text":"Whispering Essence of Woe","flags":{"prophecy":false,"unique":false}},{"type":"Muttering Essence of Woe","text":"Muttering Essence of Woe","flags":{"prophecy":false,"unique":false}},{"type":"Weeping Essence of Woe","text":"Weeping Essence of Woe","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Woe","text":"Wailing Essence of Woe","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Woe","text":"Screaming Essence of Woe","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Woe","text":"Shrieking Essence of Woe","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Woe","text":"Deafening Essence of Woe","flags":{"prophecy":false,"unique":false}},{"type":"Weeping Essence of Wrath","text":"Weeping Essence of Wrath","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Wrath","text":"Wailing Essence of Wrath","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Wrath","text":"Screaming Essence of Wrath","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Wrath","text":"Shrieking Essence of Wrath","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Wrath","text":"Deafening Essence of Wrath","flags":{"prophecy":false,"unique":false}},{"type":"Wailing Essence of Zeal","text":"Wailing Essence of Zeal","flags":{"prophecy":false,"unique":false}},{"type":"Screaming Essence of Zeal","text":"Screaming Essence of Zeal","flags":{"prophecy":false,"unique":false}},{"type":"Shrieking Essence of Zeal","text":"Shrieking Essence of Zeal","flags":{"prophecy":false,"unique":false}},{"type":"Deafening Essence of Zeal","text":"Deafening Essence of Zeal","flags":{"prophecy":false,"unique":false}},{"type":"Glassblower\u0027s Bauble","text":"Glassblower\u0027s Bauble","flags":{"prophecy":false,"unique":false}},{"type":"Gemcutter\u0027s Prism","text":"Gemcutter\u0027s Prism","flags":{"prophecy":false,"unique":false}},{"type":"Scroll of Wisdom","text":"Scroll of Wisdom","flags":{"prophecy":false,"unique":false}},{"type":"Scroll Fragment","text":"Scroll Fragment","flags":{"prophecy":false,"unique":false}},{"type":"Imprint","text":"Imprint","flags":{"prophecy":false,"unique":false}},{"type":"Eternal Orb","text":"Eternal Orb","flags":{"prophecy":false,"unique":false}},{"type":"Abyssal Incubator","text":"Abyssal Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Geomancer\u0027s Incubator","text":"Geomancer\u0027s Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Celestial Armoursmith\u0027s Incubator","text":"Celestial Armoursmith\u0027s Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Feral Incubator","text":"Feral Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Obscured Incubator","text":"Obscured Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Fine Incubator","text":"Fine Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Ornate Incubator","text":"Ornate Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Diviner\u0027s Incubator","text":"Diviner\u0027s Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Whispering Incubator","text":"Whispering Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Infused Incubator","text":"Infused Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Fossilised Incubator","text":"Fossilised Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Fragmented Incubator","text":"Fragmented Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Thaumaturge\u0027s Incubator","text":"Thaumaturge\u0027s Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Gemcutter\u0027s Incubator","text":"Gemcutter\u0027s Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Mysterious Incubator","text":"Mysterious Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Foreboding Incubator","text":"Foreboding Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Enchanted Incubator","text":"Enchanted Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Eldritch Incubator","text":"Eldritch Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Cartographer\u0027s Incubator","text":"Cartographer\u0027s Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Decadent Incubator","text":"Decadent Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Skittering Incubator","text":"Skittering Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Primal Incubator","text":"Primal Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Celestial Jeweller\u0027s Incubator","text":"Celestial Jeweller\u0027s Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Time-Lost Incubator","text":"Time-Lost Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Otherworldly Incubator","text":"Otherworldly Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Singular Incubator","text":"Singular Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Celestial Blacksmith\u0027s Incubator","text":"Celestial Blacksmith\u0027s Incubator","flags":{"prophecy":false,"unique":false}},{"type":"Vial of Sacrifice","text":"Vial of Sacrifice","flags":{"prophecy":false,"unique":false}},{"type":"Vial of the Ghost","text":"Vial of the Ghost","flags":{"prophecy":false,"unique":false}},{"type":"Vial of Transcendence","text":"Vial of Transcendence","flags":{"prophecy":false,"unique":false}},{"type":"Vial of Fate","text":"Vial of Fate","flags":{"prophecy":false,"unique":false}},{"type":"Vial of Summoning","text":"Vial of Summoning","flags":{"prophecy":false,"unique":false}},{"type":"Vial of the Ritual","text":"Vial of the Ritual","flags":{"prophecy":false,"unique":false}},{"type":"Vial of Consequence","text":"Vial of Consequence","flags":{"prophecy":false,"unique":false}},{"type":"Vial of Awakening","text":"Vial of Awakening","flags":{"prophecy":false,"unique":false}},{"type":"Vial of Dominance","text":"Vial of Dominance","flags":{"prophecy":false,"unique":false}},{"type":"Bestiary Orb","text":"Bestiary Orb","flags":{"prophecy":false,"unique":false}},{"type":"Abrasive Catalyst","text":"Abrasive Catalyst","flags":{"prophecy":false,"unique":false}},{"type":"Intrinsic Catalyst","text":"Intrinsic Catalyst","flags":{"prophecy":false,"unique":false}},{"type":"Imbued Catalyst","text":"Imbued Catalyst","flags":{"prophecy":false,"unique":false}},{"type":"Tempering Catalyst","text":"Tempering Catalyst","flags":{"prophecy":false,"unique":false}},{"type":"Turbulent Catalyst","text":"Turbulent Catalyst","flags":{"prophecy":false,"unique":false}},{"type":"Prismatic Catalyst","text":"Prismatic Catalyst","flags":{"prophecy":false,"unique":false}},{"type":"Fertile Catalyst","text":"Fertile Catalyst","flags":{"prophecy":false,"unique":false}},{"type":"Timeless Eternal Empire Splinter","text":"Timeless Eternal Empire Splinter","flags":{"prophecy":false,"unique":false}},{"type":"Timeless Karui Splinter","text":"Timeless Karui Splinter","flags":{"prophecy":false,"unique":false}},{"type":"Timeless Maraketh Splinter","text":"Timeless Maraketh Splinter","flags":{"prophecy":false,"unique":false}},{"type":"Timeless Templar Splinter","text":"Timeless Templar Splinter","flags":{"prophecy":false,"unique":false}},{"type":"Timeless Vaal Splinter","text":"Timeless Vaal Splinter","flags":{"prophecy":false,"unique":false}},{"type":"Cartographer\u0027s Chisel","text":"Cartographer\u0027s Chisel","flags":{"prophecy":false,"unique":false}},{"type":"Divine Orb","text":"Divine Orb","flags":{"prophecy":false,"unique":false}},{"type":"Orb of Regret","text":"Orb of Regret","flags":{"prophecy":false,"unique":false}},{"type":"Perandus Coin","text":"Perandus Coin","flags":{"prophecy":false,"unique":false}},{"type":"Portal Scroll","text":"Portal Scroll","flags":{"prophecy":false,"unique":false}},{"type":"Orb of Annulment","text":"Orb of Annulment","flags":{"prophecy":false,"unique":false}},{"type":"Annulment Shard","text":"Annulment Shard","flags":{"prophecy":false,"unique":false}},{"type":"Blessed Orb","text":"Blessed Orb","flags":{"prophecy":false,"unique":false}},{"type":"Orb of Alteration","text":"Orb of Alteration","flags":{"prophecy":false,"unique":false}},{"type":"Alteration Shard","text":"Alteration Shard","flags":{"prophecy":false,"unique":false}},{"type":"Orb of Horizons","text":"Orb of Horizons","flags":{"prophecy":false,"unique":false}},{"type":"Horizon Shard","text":"Horizon Shard","flags":{"prophecy":false,"unique":false}},{"type":"Chaos Orb","text":"Chaos Orb","flags":{"prophecy":false,"unique":false}},{"type":"Chaos Shard","text":"Chaos Shard","flags":{"prophecy":false,"unique":false}},{"type":"Chromatic Orb","text":"Chromatic Orb","flags":{"prophecy":false,"unique":false}},{"type":"Orb of Fusing","text":"Orb of Fusing","flags":{"prophecy":false,"unique":false}},{"type":"Jeweller\u0027s Orb","text":"Jeweller\u0027s Orb","flags":{"prophecy":false,"unique":false}},{"type":"Ancient Orb","text":"Ancient Orb","flags":{"prophecy":false,"unique":false}},{"type":"Ancient Shard","text":"Ancient Shard","flags":{"prophecy":false,"unique":false}},{"type":"Unshaping Orb","text":"Unshaping Orb","flags":{"prophecy":false,"unique":false}},{"type":"Albino Rhoa Feather","text":"Albino Rhoa Feather","flags":{"prophecy":false,"unique":false}},{"type":"Master Cartographer\u0027s Seal","text":"Master Cartographer\u0027s Seal","flags":{"prophecy":false,"unique":false}},{"type":"Apprentice Cartographer\u0027s Seal","text":"Apprentice Cartographer\u0027s Seal","flags":{"prophecy":false,"unique":false}},{"type":"Journeyman Cartographer\u0027s Seal","text":"Journeyman Cartographer\u0027s Seal","flags":{"prophecy":false,"unique":false}},{"type":"Silver Coin","text":"Silver Coin","flags":{"prophecy":false,"unique":false}},{"type":"Engineer\u0027s Orb","text":"Engineer\u0027s Orb","flags":{"prophecy":false,"unique":false}},{"type":"Engineer\u0027s Shard","text":"Engineer\u0027s Shard","flags":{"prophecy":false,"unique":false}},{"type":"Regal Orb","text":"Regal Orb","flags":{"prophecy":false,"unique":false}},{"type":"Regal Shard","text":"Regal Shard","flags":{"prophecy":false,"unique":false}},{"type":"Harbinger\u0027s Orb","text":"Harbinger\u0027s Orb","flags":{"prophecy":false,"unique":false}},{"type":"Harbinger\u0027s Shard","text":"Harbinger\u0027s Shard","flags":{"prophecy":false,"unique":false}},{"type":"Orb of Chance","text":"Orb of Chance","flags":{"prophecy":false,"unique":false}},{"type":"Orb of Transmutation","text":"Orb of Transmutation","flags":{"prophecy":false,"unique":false}},{"type":"Transmutation Shard","text":"Transmutation Shard","flags":{"prophecy":false,"unique":false}},{"type":"Orb of Alchemy","text":"Orb of Alchemy","flags":{"prophecy":false,"unique":false}},{"type":"Orb of Binding","text":"Orb of Binding","flags":{"prophecy":false,"unique":false}},{"type":"Binding Shard","text":"Binding Shard","flags":{"prophecy":false,"unique":false}},{"type":"Alchemy Shard","text":"Alchemy Shard","flags":{"prophecy":false,"unique":false}},{"type":"Blacksmith\u0027s Whetstone","text":"Blacksmith\u0027s Whetstone","flags":{"prophecy":false,"unique":false}},{"type":"Clear Oil","text":"Clear Oil","flags":{"prophecy":false,"unique":false}},{"type":"Opalescent Oil","text":"Opalescent Oil","flags":{"prophecy":false,"unique":false}},{"type":"Silver Oil","text":"Silver Oil","flags":{"prophecy":false,"unique":false}},{"type":"Golden Oil","text":"Golden Oil","flags":{"prophecy":false,"unique":false}},{"type":"Sepia Oil","text":"Sepia Oil","flags":{"prophecy":false,"unique":false}},{"type":"Amber Oil","text":"Amber Oil","flags":{"prophecy":false,"unique":false}},{"type":"Verdant Oil","text":"Verdant Oil","flags":{"prophecy":false,"unique":false}},{"type":"Teal Oil","text":"Teal Oil","flags":{"prophecy":false,"unique":false}},{"type":"Azure Oil","text":"Azure Oil","flags":{"prophecy":false,"unique":false}},{"type":"Violet Oil","text":"Violet Oil","flags":{"prophecy":false,"unique":false}},{"type":"Crimson Oil","text":"Crimson Oil","flags":{"prophecy":false,"unique":false}},{"type":"Black Oil","text":"Black Oil","flags":{"prophecy":false,"unique":false}},{"type":"Primitive Chaotic Resonator","text":"Primitive Chaotic Resonator","flags":{"prophecy":false,"unique":false}},{"type":"Potent Chaotic Resonator","text":"Potent Chaotic Resonator","flags":{"prophecy":false,"unique":false}},{"type":"Powerful Chaotic Resonator","text":"Powerful Chaotic Resonator","flags":{"prophecy":false,"unique":false}},{"type":"Prime Chaotic Resonator","text":"Prime Chaotic Resonator","flags":{"prophecy":false,"unique":false}},{"type":"Primitive Alchemical Resonator","text":"Primitive Alchemical Resonator","flags":{"prophecy":false,"unique":false}},{"type":"Potent Alchemical Resonator","text":"Potent Alchemical Resonator","flags":{"prophecy":false,"unique":false}},{"type":"Powerful Alchemical Resonator","text":"Powerful Alchemical Resonator","flags":{"prophecy":false,"unique":false}},{"type":"Prime Alchemical Resonator","text":"Prime Alchemical Resonator","flags":{"prophecy":false,"unique":false}},{"type":"Stacked Deck","text":"Stacked Deck","flags":{"prophecy":false,"unique":false}},{"type":"Captured Soul of Thraxia","text":"Captured Soul of Thraxia","flags":{"prophecy":false,"unique":false}},{"type":"Captured Soul of Glace","text":"Captured Soul of Glace","flags":{"prophecy":false,"unique":false}},{"type":"Captured Soul of Ambrius, Legion Slayer","text":"Captured Soul of Ambrius, Legion Slayer","flags":{"prophecy":false,"unique":false}},{"type":"Captured Soul of Stalker of the Endless Dunes","text":"Captured Soul of Stalker of the Endless Dunes","flags":{"prophecy":false,"unique":false}},{"type":"Captured Soul of Excellis Aurafix","text":"Captured Soul of Excellis Aurafix","flags":{"prophecy":false,"unique":false}},{"type":"Cloth Belt Piece","text":"Cloth Belt Piece","flags":{"prophecy":false,"unique":false}},{"type":"Callous Mask Piece","text":"Callous Mask Piece","flags":{"prophecy":false,"unique":false}},{"type":"Blunt Arrow Quiver Piece","text":"Blunt Arrow Quiver Piece","flags":{"prophecy":false,"unique":false}},{"type":"Archon Kite Shield Piece","text":"Archon Kite Shield Piece","flags":{"prophecy":false,"unique":false}},{"type":"Imperial Staff Piece","text":"Imperial Staff Piece","flags":{"prophecy":false,"unique":false}},{"type":"Legion Sword Piece","text":"Legion Sword Piece","flags":{"prophecy":false,"unique":false}}]},{"label":"Flasks","entries":[{"name":"Atziri\u0027s Promise","type":"Amethyst Flask","text":"Atziri\u0027s Promise Amethyst Flask","flags":{"prophecy":false,"unique":true}},{"name":"Blood of the Karui","type":"Sanctified Life Flask","text":"Blood of the Karui Sanctified Life Flask","flags":{"prophecy":false,"unique":true}},{"name":"Bottled Faith","type":"Sulphur Flask","text":"Bottled Faith Sulphur Flask","flags":{"prophecy":false,"unique":true}},{"name":"Cinderswallow Urn","type":"Silver Flask","text":"Cinderswallow Urn Silver Flask","flags":{"prophecy":false,"unique":true}},{"name":"Coralito\u0027s Signature","type":"Diamond Flask","text":"Coralito\u0027s Signature Diamond Flask","flags":{"prophecy":false,"unique":true}},{"name":"Coruscating Elixir","type":"Ruby Flask","text":"Coruscating Elixir Ruby Flask","flags":{"prophecy":false,"unique":true}},{"name":"Divination Distillate","type":"Large Hybrid Flask","text":"Divination Distillate Large Hybrid Flask","flags":{"prophecy":false,"unique":true}},{"name":"Doedre\u0027s Elixir","type":"Greater Mana Flask","text":"Doedre\u0027s Elixir Greater Mana Flask","flags":{"prophecy":false,"unique":true}},{"name":"Dying Sun","type":"Ruby Flask","text":"Dying Sun Ruby Flask","flags":{"prophecy":false,"unique":true}},{"name":"Forbidden Taste","type":"Quartz Flask","text":"Forbidden Taste Quartz Flask","flags":{"prophecy":false,"unique":true}},{"name":"Kiara\u0027s Determination","type":"Silver Flask","text":"Kiara\u0027s Determination Silver Flask","flags":{"prophecy":false,"unique":true}},{"name":"Lavianga\u0027s Spirit","type":"Sanctified Mana Flask","text":"Lavianga\u0027s Spirit Sanctified Mana Flask","flags":{"prophecy":false,"unique":true}},{"name":"Lion\u0027s Roar","type":"Granite Flask","text":"Lion\u0027s Roar Granite Flask","flags":{"prophecy":false,"unique":true}},{"name":"Rotgut","type":"Quicksilver Flask","text":"Rotgut Quicksilver Flask","flags":{"prophecy":false,"unique":true}},{"name":"Rumi\u0027s Concoction","type":"Granite Flask","text":"Rumi\u0027s Concoction Granite Flask","flags":{"prophecy":false,"unique":true}},{"name":"Sin\u0027s Rebirth","type":"Stibnite Flask","text":"Sin\u0027s Rebirth Stibnite Flask","flags":{"prophecy":false,"unique":true}},{"name":"Soul Catcher","type":"Quartz Flask","text":"Soul Catcher Quartz Flask","flags":{"prophecy":false,"unique":true}},{"name":"Soul Ripper","type":"Quartz Flask","text":"Soul Ripper Quartz Flask","flags":{"prophecy":false,"unique":true}},{"name":"Taste of Hate","type":"Sapphire Flask","text":"Taste of Hate Sapphire Flask","flags":{"prophecy":false,"unique":true}},{"name":"The Overflowing Chalice","type":"Sulphur Flask","text":"The Overflowing Chalice Sulphur Flask","flags":{"prophecy":false,"unique":true}},{"name":"The Sorrow of the Divine","type":"Sulphur Flask","text":"The Sorrow of the Divine Sulphur Flask","flags":{"prophecy":false,"unique":true}},{"name":"The Wise Oak","type":"Bismuth Flask","text":"The Wise Oak Bismuth Flask","flags":{"prophecy":false,"unique":true}},{"name":"The Writhing Jar","type":"Hallowed Hybrid Flask","text":"The Writhing Jar Hallowed Hybrid Flask","flags":{"prophecy":false,"unique":true}},{"name":"Vessel of Vinktar","type":"Topaz Flask","text":"Vessel of Vinktar Topaz Flask","flags":{"prophecy":false,"unique":true}},{"name":"Witchfire Brew","type":"Stibnite Flask","text":"Witchfire Brew Stibnite Flask","flags":{"prophecy":false,"unique":true}},{"name":"Zerphi\u0027s Last Breath","type":"Grand Mana Flask","text":"Zerphi\u0027s Last Breath Grand Mana Flask","flags":{"prophecy":false,"unique":true}},{"type":"Small Hybrid Flask","text":"Small Hybrid Flask","flags":{"prophecy":false,"unique":false}},{"type":"Medium Hybrid Flask","text":"Medium Hybrid Flask","flags":{"prophecy":false,"unique":false}},{"type":"Large Hybrid Flask","text":"Large Hybrid Flask","flags":{"prophecy":false,"unique":false}},{"type":"Colossal Hybrid Flask","text":"Colossal Hybrid Flask","flags":{"prophecy":false,"unique":false}},{"type":"Sacred Hybrid Flask","text":"Sacred Hybrid Flask","flags":{"prophecy":false,"unique":false}},{"type":"Hallowed Hybrid Flask","text":"Hallowed Hybrid Flask","flags":{"prophecy":false,"unique":false}},{"type":"Small Life Flask","text":"Small Life Flask","flags":{"prophecy":false,"unique":false}},{"type":"Sanctified Life Flask","text":"Sanctified Life Flask","flags":{"prophecy":false,"unique":false}},{"type":"Divine Life Flask","text":"Divine Life Flask","flags":{"prophecy":false,"unique":false}},{"type":"Eternal Life Flask","text":"Eternal Life Flask","flags":{"prophecy":false,"unique":false}},{"type":"Medium Life Flask","text":"Medium Life Flask","flags":{"prophecy":false,"unique":false}},{"type":"Large Life Flask","text":"Large Life Flask","flags":{"prophecy":false,"unique":false}},{"type":"Greater Life Flask","text":"Greater Life Flask","flags":{"prophecy":false,"unique":false}},{"type":"Grand Life Flask","text":"Grand Life Flask","flags":{"prophecy":false,"unique":false}},{"type":"Giant Life Flask","text":"Giant Life Flask","flags":{"prophecy":false,"unique":false}},{"type":"Colossal Life Flask","text":"Colossal Life Flask","flags":{"prophecy":false,"unique":false}},{"type":"Sacred Life Flask","text":"Sacred Life Flask","flags":{"prophecy":false,"unique":false}},{"type":"Hallowed Life Flask","text":"Hallowed Life Flask","flags":{"prophecy":false,"unique":false}},{"type":"Small Mana Flask","text":"Small Mana Flask","flags":{"prophecy":false,"unique":false}},{"type":"Sanctified Mana Flask","text":"Sanctified Mana Flask","flags":{"prophecy":false,"unique":false}},{"type":"Divine Mana Flask","text":"Divine Mana Flask","flags":{"prophecy":false,"unique":false}},{"type":"Eternal Mana Flask","text":"Eternal Mana Flask","flags":{"prophecy":false,"unique":false}},{"type":"Medium Mana Flask","text":"Medium Mana Flask","flags":{"prophecy":false,"unique":false}},{"type":"Large Mana Flask","text":"Large Mana Flask","flags":{"prophecy":false,"unique":false}},{"type":"Greater Mana Flask","text":"Greater Mana Flask","flags":{"prophecy":false,"unique":false}},{"type":"Grand Mana Flask","text":"Grand Mana Flask","flags":{"prophecy":false,"unique":false}},{"type":"Giant Mana Flask","text":"Giant Mana Flask","flags":{"prophecy":false,"unique":false}},{"type":"Colossal Mana Flask","text":"Colossal Mana Flask","flags":{"prophecy":false,"unique":false}},{"type":"Sacred Mana Flask","text":"Sacred Mana Flask","flags":{"prophecy":false,"unique":false}},{"type":"Hallowed Mana Flask","text":"Hallowed Mana Flask","flags":{"prophecy":false,"unique":false}},{"type":"Diamond Flask","text":"Diamond Flask","flags":{"prophecy":false,"unique":false}},{"type":"Basalt Flask","text":"Basalt Flask","flags":{"prophecy":false,"unique":false}},{"type":"Aquamarine Flask","text":"Aquamarine Flask","flags":{"prophecy":false,"unique":false}},{"type":"Stibnite Flask","text":"Stibnite Flask","flags":{"prophecy":false,"unique":false}},{"type":"Sulphur Flask","text":"Sulphur Flask","flags":{"prophecy":false,"unique":false}},{"type":"Silver Flask","text":"Silver Flask","flags":{"prophecy":false,"unique":false}},{"type":"Bismuth Flask","text":"Bismuth Flask","flags":{"prophecy":false,"unique":false}},{"type":"Ruby Flask","text":"Ruby Flask","flags":{"prophecy":false,"unique":false}},{"type":"Sapphire Flask","text":"Sapphire Flask","flags":{"prophecy":false,"unique":false}},{"type":"Topaz Flask","text":"Topaz Flask","flags":{"prophecy":false,"unique":false}},{"type":"Granite Flask","text":"Granite Flask","flags":{"prophecy":false,"unique":false}},{"type":"Quicksilver Flask","text":"Quicksilver Flask","flags":{"prophecy":false,"unique":false}},{"type":"Amethyst Flask","text":"Amethyst Flask","flags":{"prophecy":false,"unique":false}},{"type":"Quartz Flask","text":"Quartz Flask","flags":{"prophecy":false,"unique":false}},{"type":"Jade Flask","text":"Jade Flask","flags":{"prophecy":false,"unique":false}}]},{"label":"Gems","entries":[{"type":"Abyssal Cry","text":"Abyssal Cry","flags":{"prophecy":false,"unique":false}},{"type":"Ancestral Warchief","text":"Ancestral Warchief","flags":{"prophecy":false,"unique":false}},{"type":"Anger","text":"Anger","flags":{"prophecy":false,"unique":false}},{"type":"Animate Guardian","text":"Animate Guardian","flags":{"prophecy":false,"unique":false}},{"type":"Animate Weapon","text":"Animate Weapon","flags":{"prophecy":false,"unique":false}},{"type":"Arc","text":"Arc","flags":{"prophecy":false,"unique":false}},{"type":"Arcane Cloak","text":"Arcane Cloak","flags":{"prophecy":false,"unique":false}},{"type":"Arctic Armour","text":"Arctic Armour","flags":{"prophecy":false,"unique":false}},{"type":"Arctic Breath","text":"Arctic Breath","flags":{"prophecy":false,"unique":false}},{"type":"Armageddon Brand","text":"Armageddon Brand","flags":{"prophecy":false,"unique":false}},{"type":"Artillery Ballista","text":"Artillery Ballista","flags":{"prophecy":false,"unique":false}},{"type":"Ball Lightning","text":"Ball Lightning","flags":{"prophecy":false,"unique":false}},{"type":"Barrage","text":"Barrage","flags":{"prophecy":false,"unique":false}},{"type":"Bear Trap","text":"Bear Trap","flags":{"prophecy":false,"unique":false}},{"type":"Berserk","text":"Berserk","flags":{"prophecy":false,"unique":false}},{"type":"Blade Blast","text":"Blade Blast","flags":{"prophecy":false,"unique":false}},{"type":"Bladefall","text":"Bladefall","flags":{"prophecy":false,"unique":false}},{"type":"Bladestorm","text":"Bladestorm","flags":{"prophecy":false,"unique":false}},{"type":"Blade Vortex","text":"Blade Vortex","flags":{"prophecy":false,"unique":false}},{"type":"Blast Rain","text":"Blast Rain","flags":{"prophecy":false,"unique":false}},{"type":"Blight","text":"Blight","flags":{"prophecy":false,"unique":false}},{"type":"Blink Arrow","text":"Blink Arrow","flags":{"prophecy":false,"unique":false}},{"type":"Blood and Sand","text":"Blood and Sand","flags":{"prophecy":false,"unique":false}},{"type":"Blood Rage","text":"Blood Rage","flags":{"prophecy":false,"unique":false}},{"type":"Unearth","text":"Unearth","flags":{"prophecy":false,"unique":false}},{"type":"Bone Offering","text":"Bone Offering","flags":{"prophecy":false,"unique":false}},{"type":"Burning Arrow","text":"Burning Arrow","flags":{"prophecy":false,"unique":false}},{"type":"Chain Hook","text":"Chain Hook","flags":{"prophecy":false,"unique":false}},{"type":"Blade Flurry","text":"Blade Flurry","flags":{"prophecy":false,"unique":false}},{"type":"Charged Dash","text":"Charged Dash","flags":{"prophecy":false,"unique":false}},{"type":"Clarity","text":"Clarity","flags":{"prophecy":false,"unique":false}},{"type":"Cleave","text":"Cleave","flags":{"prophecy":false,"unique":false}},{"type":"Cobra Lash","text":"Cobra Lash","flags":{"prophecy":false,"unique":false}},{"type":"Purity of Ice","text":"Purity of Ice","flags":{"prophecy":false,"unique":false}},{"type":"Cold Snap","text":"Cold Snap","flags":{"prophecy":false,"unique":false}},{"type":"Conductivity","text":"Conductivity","flags":{"prophecy":false,"unique":false}},{"type":"Consecrated Path","text":"Consecrated Path","flags":{"prophecy":false,"unique":false}},{"type":"Contagion","text":"Contagion","flags":{"prophecy":false,"unique":false}},{"type":"Conversion Trap","text":"Conversion Trap","flags":{"prophecy":false,"unique":false}},{"type":"Convocation","text":"Convocation","flags":{"prophecy":false,"unique":false}},{"type":"Cremation","text":"Cremation","flags":{"prophecy":false,"unique":false}},{"type":"Bodyswap","text":"Bodyswap","flags":{"prophecy":false,"unique":false}},{"type":"Assassin\u0027s Mark","text":"Assassin\u0027s Mark","flags":{"prophecy":false,"unique":false}},{"type":"Cyclone","text":"Cyclone","flags":{"prophecy":false,"unique":false}},{"type":"Malevolence","text":"Malevolence","flags":{"prophecy":false,"unique":false}},{"type":"Dark Pact","text":"Dark Pact","flags":{"prophecy":false,"unique":false}},{"type":"Bane","text":"Bane","flags":{"prophecy":false,"unique":false}},{"type":"Dash","text":"Dash","flags":{"prophecy":false,"unique":false}},{"type":"Decoy Totem","text":"Decoy Totem","flags":{"prophecy":false,"unique":false}},{"type":"Desecrate","text":"Desecrate","flags":{"prophecy":false,"unique":false}},{"type":"Determination","text":"Determination","flags":{"prophecy":false,"unique":false}},{"type":"Detonate Dead","text":"Detonate Dead","flags":{"prophecy":false,"unique":false}},{"type":"Detonate Mines","text":"Detonate Mines","flags":{"prophecy":false,"unique":false}},{"type":"Devouring Totem","text":"Devouring Totem","flags":{"prophecy":false,"unique":false}},{"type":"Discharge","text":"Discharge","flags":{"prophecy":false,"unique":false}},{"type":"Discipline","text":"Discipline","flags":{"prophecy":false,"unique":false}},{"type":"Divine Ire","text":"Divine Ire","flags":{"prophecy":false,"unique":false}},{"type":"Dominating Blow","text":"Dominating Blow","flags":{"prophecy":false,"unique":false}},{"type":"Double Strike","text":"Double Strike","flags":{"prophecy":false,"unique":false}},{"type":"Dread Banner","text":"Dread Banner","flags":{"prophecy":false,"unique":false}},{"type":"Dual Strike","text":"Dual Strike","flags":{"prophecy":false,"unique":false}},{"type":"Earthquake","text":"Earthquake","flags":{"prophecy":false,"unique":false}},{"type":"Elemental Hit","text":"Elemental Hit","flags":{"prophecy":false,"unique":false}},{"type":"Elemental Weakness","text":"Elemental Weakness","flags":{"prophecy":false,"unique":false}},{"type":"Enduring Cry","text":"Enduring Cry","flags":{"prophecy":false,"unique":false}},{"type":"Enfeeble","text":"Enfeeble","flags":{"prophecy":false,"unique":false}},{"type":"Ensnaring Arrow","text":"Ensnaring Arrow","flags":{"prophecy":false,"unique":false}},{"type":"Essence Drain","text":"Essence Drain","flags":{"prophecy":false,"unique":false}},{"type":"Ethereal Knives","text":"Ethereal Knives","flags":{"prophecy":false,"unique":false}},{"type":"Explosive Arrow","text":"Explosive Arrow","flags":{"prophecy":false,"unique":false}},{"type":"Fireball","text":"Fireball","flags":{"prophecy":false,"unique":false}},{"type":"Scorching Ray","text":"Scorching Ray","flags":{"prophecy":false,"unique":false}},{"type":"Pyroclast Mine","text":"Pyroclast Mine","flags":{"prophecy":false,"unique":false}},{"type":"Purity of Fire","text":"Purity of Fire","flags":{"prophecy":false,"unique":false}},{"type":"Firestorm","text":"Firestorm","flags":{"prophecy":false,"unique":false}},{"type":"Fire Trap","text":"Fire Trap","flags":{"prophecy":false,"unique":false}},{"type":"Flameblast","text":"Flameblast","flags":{"prophecy":false,"unique":false}},{"type":"Flame Dash","text":"Flame Dash","flags":{"prophecy":false,"unique":false}},{"type":"Flamethrower Trap","text":"Flamethrower Trap","flags":{"prophecy":false,"unique":false}},{"type":"Holy Flame Totem","text":"Holy Flame Totem","flags":{"prophecy":false,"unique":false}},{"type":"Flame Surge","text":"Flame Surge","flags":{"prophecy":false,"unique":false}},{"type":"Flammability","text":"Flammability","flags":{"prophecy":false,"unique":false}},{"type":"Flesh and Stone","text":"Flesh and Stone","flags":{"prophecy":false,"unique":false}},{"type":"Flesh Offering","text":"Flesh Offering","flags":{"prophecy":false,"unique":false}},{"type":"Flicker Strike","text":"Flicker Strike","flags":{"prophecy":false,"unique":false}},{"type":"Icicle Mine","text":"Icicle Mine","flags":{"prophecy":false,"unique":false}},{"type":"Freezing Pulse","text":"Freezing Pulse","flags":{"prophecy":false,"unique":false}},{"type":"Frenzy","text":"Frenzy","flags":{"prophecy":false,"unique":false}},{"type":"Frostbite","text":"Frostbite","flags":{"prophecy":false,"unique":false}},{"type":"Frost Blades","text":"Frost Blades","flags":{"prophecy":false,"unique":false}},{"type":"Frostblink","text":"Frostblink","flags":{"prophecy":false,"unique":false}},{"type":"Frostbolt","text":"Frostbolt","flags":{"prophecy":false,"unique":false}},{"type":"Vortex","text":"Vortex","flags":{"prophecy":false,"unique":false}},{"type":"Frost Bomb","text":"Frost Bomb","flags":{"prophecy":false,"unique":false}},{"type":"Frost Wall","text":"Frost Wall","flags":{"prophecy":false,"unique":false}},{"type":"Glacial Cascade","text":"Glacial Cascade","flags":{"prophecy":false,"unique":false}},{"type":"Glacial Hammer","text":"Glacial Hammer","flags":{"prophecy":false,"unique":false}},{"type":"Grace","text":"Grace","flags":{"prophecy":false,"unique":false}},{"type":"Ground Slam","text":"Ground Slam","flags":{"prophecy":false,"unique":false}},{"type":"Haste","text":"Haste","flags":{"prophecy":false,"unique":false}},{"type":"Hatred","text":"Hatred","flags":{"prophecy":false,"unique":false}},{"type":"Heavy Strike","text":"Heavy Strike","flags":{"prophecy":false,"unique":false}},{"type":"Herald of Agony","text":"Herald of Agony","flags":{"prophecy":false,"unique":false}},{"type":"Herald of Ash","text":"Herald of Ash","flags":{"prophecy":false,"unique":false}},{"type":"Herald of Ice","text":"Herald of Ice","flags":{"prophecy":false,"unique":false}},{"type":"Herald of Purity","text":"Herald of Purity","flags":{"prophecy":false,"unique":false}},{"type":"Herald of Thunder","text":"Herald of Thunder","flags":{"prophecy":false,"unique":false}},{"type":"Ice Crash","text":"Ice Crash","flags":{"prophecy":false,"unique":false}},{"type":"Ice Nova","text":"Ice Nova","flags":{"prophecy":false,"unique":false}},{"type":"Ice Shot","text":"Ice Shot","flags":{"prophecy":false,"unique":false}},{"type":"Siphoning Trap","text":"Siphoning Trap","flags":{"prophecy":false,"unique":false}},{"type":"Ice Spear","text":"Ice Spear","flags":{"prophecy":false,"unique":false}},{"type":"Ice Trap","text":"Ice Trap","flags":{"prophecy":false,"unique":false}},{"type":"Immortal Call","text":"Immortal Call","flags":{"prophecy":false,"unique":false}},{"type":"Incinerate","text":"Incinerate","flags":{"prophecy":false,"unique":false}},{"type":"Infernal Blow","text":"Infernal Blow","flags":{"prophecy":false,"unique":false}},{"type":"Kinetic Blast","text":"Kinetic Blast","flags":{"prophecy":false,"unique":false}},{"type":"Kinetic Bolt","text":"Kinetic Bolt","flags":{"prophecy":false,"unique":false}},{"type":"Lacerate","text":"Lacerate","flags":{"prophecy":false,"unique":false}},{"type":"Lancing Steel","text":"Lancing Steel","flags":{"prophecy":false,"unique":false}},{"type":"Leap Slam","text":"Leap Slam","flags":{"prophecy":false,"unique":false}},{"type":"Lightning Arrow","text":"Lightning Arrow","flags":{"prophecy":false,"unique":false}},{"type":"Purity of Lightning","text":"Purity of Lightning","flags":{"prophecy":false,"unique":false}},{"type":"Lightning Strike","text":"Lightning Strike","flags":{"prophecy":false,"unique":false}},{"type":"Lightning Tendrils","text":"Lightning Tendrils","flags":{"prophecy":false,"unique":false}},{"type":"Lightning Spire Trap","text":"Lightning Spire Trap","flags":{"prophecy":false,"unique":false}},{"type":"Lightning Trap","text":"Lightning Trap","flags":{"prophecy":false,"unique":false}},{"type":"Lightning Warp","text":"Lightning Warp","flags":{"prophecy":false,"unique":false}},{"type":"Magma Orb","text":"Magma Orb","flags":{"prophecy":false,"unique":false}},{"type":"Ancestral Protector","text":"Ancestral Protector","flags":{"prophecy":false,"unique":false}},{"type":"Mirror Arrow","text":"Mirror Arrow","flags":{"prophecy":false,"unique":false}},{"type":"Molten Shell","text":"Molten Shell","flags":{"prophecy":false,"unique":false}},{"type":"Molten Strike","text":"Molten Strike","flags":{"prophecy":false,"unique":false}},{"type":"Vulnerability","text":"Vulnerability","flags":{"prophecy":false,"unique":false}},{"type":"Orb of Storms","text":"Orb of Storms","flags":{"prophecy":false,"unique":false}},{"type":"Perforate","text":"Perforate","flags":{"prophecy":false,"unique":false}},{"type":"Pestilent Strike","text":"Pestilent Strike","flags":{"prophecy":false,"unique":false}},{"type":"Phase Run","text":"Phase Run","flags":{"prophecy":false,"unique":false}},{"type":"Seismic Trap","text":"Seismic Trap","flags":{"prophecy":false,"unique":false}},{"type":"Plague Bearer","text":"Plague Bearer","flags":{"prophecy":false,"unique":false}},{"type":"Poacher\u0027s Mark","text":"Poacher\u0027s Mark","flags":{"prophecy":false,"unique":false}},{"type":"Caustic Arrow","text":"Caustic Arrow","flags":{"prophecy":false,"unique":false}},{"type":"Portal","text":"Portal","flags":{"prophecy":false,"unique":false}},{"type":"Power Siphon","text":"Power Siphon","flags":{"prophecy":false,"unique":false}},{"type":"Precision","text":"Precision","flags":{"prophecy":false,"unique":false}},{"type":"Pride","text":"Pride","flags":{"prophecy":false,"unique":false}},{"type":"Projectile Weakness","text":"Projectile Weakness","flags":{"prophecy":false,"unique":false}},{"type":"Puncture","text":"Puncture","flags":{"prophecy":false,"unique":false}},{"type":"Punishment","text":"Punishment","flags":{"prophecy":false,"unique":false}},{"type":"Wave of Conviction","text":"Wave of Conviction","flags":{"prophecy":false,"unique":false}},{"type":"Purity of Elements","text":"Purity of Elements","flags":{"prophecy":false,"unique":false}},{"type":"Rain of Arrows","text":"Rain of Arrows","flags":{"prophecy":false,"unique":false}},{"type":"Raise Spectre","text":"Raise Spectre","flags":{"prophecy":false,"unique":false}},{"type":"Raise Zombie","text":"Raise Zombie","flags":{"prophecy":false,"unique":false}},{"type":"Rallying Cry","text":"Rallying Cry","flags":{"prophecy":false,"unique":false}},{"type":"Reave","text":"Reave","flags":{"prophecy":false,"unique":false}},{"type":"Brand Recall","text":"Brand Recall","flags":{"prophecy":false,"unique":false}},{"type":"Reckoning","text":"Reckoning","flags":{"prophecy":false,"unique":false}},{"type":"Rejuvenation Totem","text":"Rejuvenation Totem","flags":{"prophecy":false,"unique":false}},{"type":"Righteous Fire","text":"Righteous Fire","flags":{"prophecy":false,"unique":false}},{"type":"Riposte","text":"Riposte","flags":{"prophecy":false,"unique":false}},{"type":"Purifying Flame","text":"Purifying Flame","flags":{"prophecy":false,"unique":false}},{"type":"Scourge Arrow","text":"Scourge Arrow","flags":{"prophecy":false,"unique":false}},{"type":"Searing Bond","text":"Searing Bond","flags":{"prophecy":false,"unique":false}},{"type":"Shattering Steel","text":"Shattering Steel","flags":{"prophecy":false,"unique":false}},{"type":"Shield Charge","text":"Shield Charge","flags":{"prophecy":false,"unique":false}},{"type":"Shock Nova","text":"Shock Nova","flags":{"prophecy":false,"unique":false}},{"type":"Shockwave Totem","text":"Shockwave Totem","flags":{"prophecy":false,"unique":false}},{"type":"Shrapnel Ballista","text":"Shrapnel Ballista","flags":{"prophecy":false,"unique":false}},{"type":"Galvanic Arrow","text":"Galvanic Arrow","flags":{"prophecy":false,"unique":false}},{"type":"Explosive Trap","text":"Explosive Trap","flags":{"prophecy":false,"unique":false}},{"type":"Siege Ballista","text":"Siege Ballista","flags":{"prophecy":false,"unique":false}},{"type":"Smite","text":"Smite","flags":{"prophecy":false,"unique":false}},{"type":"Smoke Mine","text":"Smoke Mine","flags":{"prophecy":false,"unique":false}},{"type":"Soulrend","text":"Soulrend","flags":{"prophecy":false,"unique":false}},{"type":"Spark","text":"Spark","flags":{"prophecy":false,"unique":false}},{"type":"Zealotry","text":"Zealotry","flags":{"prophecy":false,"unique":false}},{"type":"Spellslinger","text":"Spellslinger","flags":{"prophecy":false,"unique":false}},{"type":"Spirit Offering","text":"Spirit Offering","flags":{"prophecy":false,"unique":false}},{"type":"Split Arrow","text":"Split Arrow","flags":{"prophecy":false,"unique":false}},{"type":"Static Strike","text":"Static Strike","flags":{"prophecy":false,"unique":false}},{"type":"Steelskin","text":"Steelskin","flags":{"prophecy":false,"unique":false}},{"type":"Stormbind","text":"Stormbind","flags":{"prophecy":false,"unique":false}},{"type":"Stormblast Mine","text":"Stormblast Mine","flags":{"prophecy":false,"unique":false}},{"type":"Storm Brand","text":"Storm Brand","flags":{"prophecy":false,"unique":false}},{"type":"Storm Burst","text":"Storm Burst","flags":{"prophecy":false,"unique":false}},{"type":"Storm Call","text":"Storm Call","flags":{"prophecy":false,"unique":false}},{"type":"Summon Carrion Golem","text":"Summon Carrion Golem","flags":{"prophecy":false,"unique":false}},{"type":"Summon Chaos Golem","text":"Summon Chaos Golem","flags":{"prophecy":false,"unique":false}},{"type":"Summon Flame Golem","text":"Summon Flame Golem","flags":{"prophecy":false,"unique":false}},{"type":"Summon Ice Golem","text":"Summon Ice Golem","flags":{"prophecy":false,"unique":false}},{"type":"Summon Lightning Golem","text":"Summon Lightning Golem","flags":{"prophecy":false,"unique":false}},{"type":"Summon Raging Spirit","text":"Summon Raging Spirit","flags":{"prophecy":false,"unique":false}},{"type":"Summon Holy Relic","text":"Summon Holy Relic","flags":{"prophecy":false,"unique":false}},{"type":"Summon Stone Golem","text":"Summon Stone Golem","flags":{"prophecy":false,"unique":false}},{"type":"Summon Skeletons","text":"Summon Skeletons","flags":{"prophecy":false,"unique":false}},{"type":"Summon Skitterbots","text":"Summon Skitterbots","flags":{"prophecy":false,"unique":false}},{"type":"Sunder","text":"Sunder","flags":{"prophecy":false,"unique":false}},{"type":"Sweep","text":"Sweep","flags":{"prophecy":false,"unique":false}},{"type":"Tectonic Slam","text":"Tectonic Slam","flags":{"prophecy":false,"unique":false}},{"type":"Tempest Shield","text":"Tempest Shield","flags":{"prophecy":false,"unique":false}},{"type":"Temporal Chains","text":"Temporal Chains","flags":{"prophecy":false,"unique":false}},{"type":"Spectral Shield Throw","text":"Spectral Shield Throw","flags":{"prophecy":false,"unique":false}},{"type":"Spectral Throw","text":"Spectral Throw","flags":{"prophecy":false,"unique":false}},{"type":"Tornado Shot","text":"Tornado Shot","flags":{"prophecy":false,"unique":false}},{"type":"Toxic Rain","text":"Toxic Rain","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Ancestral Warchief","text":"Vaal Ancestral Warchief","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Arc","text":"Vaal Arc","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Blade Vortex","text":"Vaal Blade Vortex","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Blight","text":"Vaal Blight","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Burning Arrow","text":"Vaal Burning Arrow","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Clarity","text":"Vaal Clarity","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Impurity of Ice","text":"Vaal Impurity of Ice","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Cold Snap","text":"Vaal Cold Snap","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Cyclone","text":"Vaal Cyclone","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Detonate Dead","text":"Vaal Detonate Dead","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Discipline","text":"Vaal Discipline","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Double Strike","text":"Vaal Double Strike","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Earthquake","text":"Vaal Earthquake","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Fireball","text":"Vaal Fireball","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Impurity of Fire","text":"Vaal Impurity of Fire","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Flameblast","text":"Vaal Flameblast","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Glacial Hammer","text":"Vaal Glacial Hammer","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Grace","text":"Vaal Grace","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Ground Slam","text":"Vaal Ground Slam","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Haste","text":"Vaal Haste","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Ice Nova","text":"Vaal Ice Nova","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Immortal Call","text":"Vaal Immortal Call","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Impurity of Lightning","text":"Vaal Impurity of Lightning","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Lightning Strike","text":"Vaal Lightning Strike","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Lightning Trap","text":"Vaal Lightning Trap","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Lightning Warp","text":"Vaal Lightning Warp","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Molten Shell","text":"Vaal Molten Shell","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Breach","text":"Vaal Breach","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Power Siphon","text":"Vaal Power Siphon","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Rain of Arrows","text":"Vaal Rain of Arrows","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Reave","text":"Vaal Reave","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Righteous Fire","text":"Vaal Righteous Fire","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Spark","text":"Vaal Spark","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Storm Call","text":"Vaal Storm Call","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Summon Skeletons","text":"Vaal Summon Skeletons","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Spectral Throw","text":"Vaal Spectral Throw","flags":{"prophecy":false,"unique":false}},{"type":"Vengeance","text":"Vengeance","flags":{"prophecy":false,"unique":false}},{"type":"Venom Gyre","text":"Venom Gyre","flags":{"prophecy":false,"unique":false}},{"type":"Vigilant Strike","text":"Vigilant Strike","flags":{"prophecy":false,"unique":false}},{"type":"Viper Strike","text":"Viper Strike","flags":{"prophecy":false,"unique":false}},{"type":"Vitality","text":"Vitality","flags":{"prophecy":false,"unique":false}},{"type":"Volatile Dead","text":"Volatile Dead","flags":{"prophecy":false,"unique":false}},{"type":"Despair","text":"Despair","flags":{"prophecy":false,"unique":false}},{"type":"War Banner","text":"War Banner","flags":{"prophecy":false,"unique":false}},{"type":"Warlord\u0027s Mark","text":"Warlord\u0027s Mark","flags":{"prophecy":false,"unique":false}},{"type":"Whirling Blades","text":"Whirling Blades","flags":{"prophecy":false,"unique":false}},{"type":"Wild Strike","text":"Wild Strike","flags":{"prophecy":false,"unique":false}},{"type":"Winter Orb","text":"Winter Orb","flags":{"prophecy":false,"unique":false}},{"type":"Wither","text":"Wither","flags":{"prophecy":false,"unique":false}},{"type":"Withering Step","text":"Withering Step","flags":{"prophecy":false,"unique":false}},{"type":"Wrath","text":"Wrath","flags":{"prophecy":false,"unique":false}},{"type":"Added Chaos Damage Support","text":"Added Chaos Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Added Chaos Damage Support","text":"Awakened Added Chaos Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Added Cold Damage Support","text":"Added Cold Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Added Cold Damage Support","text":"Awakened Added Cold Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Added Fire Damage Support","text":"Added Fire Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Added Fire Damage Support","text":"Awakened Added Fire Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Added Lightning Damage Support","text":"Added Lightning Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Added Lightning Damage Support","text":"Awakened Added Lightning Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Additional Accuracy Support","text":"Additional Accuracy Support","flags":{"prophecy":false,"unique":false}},{"type":"Empower Support","text":"Empower Support","flags":{"prophecy":false,"unique":false}},{"type":"Enhance Support","text":"Enhance Support","flags":{"prophecy":false,"unique":false}},{"type":"Enlighten Support","text":"Enlighten Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Ancestral Call Support","text":"Awakened Ancestral Call Support","flags":{"prophecy":false,"unique":false}},{"type":"Arcane Surge Support","text":"Arcane Surge Support","flags":{"prophecy":false,"unique":false}},{"type":"Archmage Support","text":"Archmage Support","flags":{"prophecy":false,"unique":false}},{"type":"Arrow Nova Support","text":"Arrow Nova Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Arrow Nova Support","text":"Awakened Arrow Nova Support","flags":{"prophecy":false,"unique":false}},{"type":"Barrage Support","text":"Barrage Support","flags":{"prophecy":false,"unique":false}},{"type":"Blasphemy Support","text":"Blasphemy Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Blasphemy Support","text":"Awakened Blasphemy Support","flags":{"prophecy":false,"unique":false}},{"type":"Blind Support","text":"Blind Support","flags":{"prophecy":false,"unique":false}},{"type":"Block Chance Reduction Support","text":"Block Chance Reduction Support","flags":{"prophecy":false,"unique":false}},{"type":"Bloodlust Support","text":"Bloodlust Support","flags":{"prophecy":false,"unique":false}},{"type":"Blood Magic Support","text":"Blood Magic Support","flags":{"prophecy":false,"unique":false}},{"type":"Bonechill Support","text":"Bonechill Support","flags":{"prophecy":false,"unique":false}},{"type":"Brutality Support","text":"Brutality Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Brutality Support","text":"Awakened Brutality Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Burning Damage Support","text":"Awakened Burning Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Cast On Critical Strike Support","text":"Cast On Critical Strike Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Cast On Critical Strike Support","text":"Awakened Cast On Critical Strike Support","flags":{"prophecy":false,"unique":false}},{"type":"Cast when Damage Taken Support","text":"Cast when Damage Taken Support","flags":{"prophecy":false,"unique":false}},{"type":"Cast on Death Support","text":"Cast on Death Support","flags":{"prophecy":false,"unique":false}},{"type":"Cast on Melee Kill Support","text":"Cast on Melee Kill Support","flags":{"prophecy":false,"unique":false}},{"type":"Cast when Stunned Support","text":"Cast when Stunned Support","flags":{"prophecy":false,"unique":false}},{"type":"Cast while Channelling Support","text":"Cast while Channelling Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Cast While Channelling Support","text":"Awakened Cast While Channelling Support","flags":{"prophecy":false,"unique":false}},{"type":"Chain Support","text":"Chain Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Chain Support","text":"Awakened Chain Support","flags":{"prophecy":false,"unique":false}},{"type":"Chance to Bleed Support","text":"Chance to Bleed Support","flags":{"prophecy":false,"unique":false}},{"type":"Chance to Flee Support","text":"Chance to Flee Support","flags":{"prophecy":false,"unique":false}},{"type":"Combustion Support","text":"Combustion Support","flags":{"prophecy":false,"unique":false}},{"type":"Withering Touch Support","text":"Withering Touch Support","flags":{"prophecy":false,"unique":false}},{"type":"Charged Mines Support","text":"Charged Mines Support","flags":{"prophecy":false,"unique":false}},{"type":"Close Combat Support","text":"Close Combat Support","flags":{"prophecy":false,"unique":false}},{"type":"Cluster Traps Support","text":"Cluster Traps Support","flags":{"prophecy":false,"unique":false}},{"type":"Cold Penetration Support","text":"Cold Penetration Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Cold Penetration Support","text":"Awakened Cold Penetration Support","flags":{"prophecy":false,"unique":false}},{"type":"Cold to Fire Support","text":"Cold to Fire Support","flags":{"prophecy":false,"unique":false}},{"type":"Concentrated Effect Support","text":"Concentrated Effect Support","flags":{"prophecy":false,"unique":false}},{"type":"Controlled Destruction Support","text":"Controlled Destruction Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Controlled Destruction Support","text":"Awakened Controlled Destruction Support","flags":{"prophecy":false,"unique":false}},{"type":"Culling Strike Support","text":"Culling Strike Support","flags":{"prophecy":false,"unique":false}},{"type":"Curse On Hit Support","text":"Curse On Hit Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Curse On Hit Support","text":"Awakened Curse On Hit Support","flags":{"prophecy":false,"unique":false}},{"type":"Hypothermia Support","text":"Hypothermia Support","flags":{"prophecy":false,"unique":false}},{"type":"Deadly Ailments Support","text":"Deadly Ailments Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Deadly Ailments Support","text":"Awakened Deadly Ailments Support","flags":{"prophecy":false,"unique":false}},{"type":"Deathmark Support","text":"Deathmark Support","flags":{"prophecy":false,"unique":false}},{"type":"Decay Support","text":"Decay Support","flags":{"prophecy":false,"unique":false}},{"type":"Efficacy Support","text":"Efficacy Support","flags":{"prophecy":false,"unique":false}},{"type":"Elemental Focus Support","text":"Elemental Focus Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Elemental Focus Support","text":"Awakened Elemental Focus Support","flags":{"prophecy":false,"unique":false}},{"type":"Elemental Proliferation Support","text":"Elemental Proliferation Support","flags":{"prophecy":false,"unique":false}},{"type":"Endurance Charge on Melee Stun Support","text":"Endurance Charge on Melee Stun Support","flags":{"prophecy":false,"unique":false}},{"type":"Energy Leech Support","text":"Energy Leech Support","flags":{"prophecy":false,"unique":false}},{"type":"Faster Attacks Support","text":"Faster Attacks Support","flags":{"prophecy":false,"unique":false}},{"type":"Faster Casting Support","text":"Faster Casting Support","flags":{"prophecy":false,"unique":false}},{"type":"Faster Projectiles Support","text":"Faster Projectiles Support","flags":{"prophecy":false,"unique":false}},{"type":"Feeding Frenzy Support","text":"Feeding Frenzy Support","flags":{"prophecy":false,"unique":false}},{"type":"Fire Penetration Support","text":"Fire Penetration Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Fire Penetration Support","text":"Awakened Fire Penetration Support","flags":{"prophecy":false,"unique":false}},{"type":"Fork Support","text":"Fork Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Fork Support","text":"Awakened Fork Support","flags":{"prophecy":false,"unique":false}},{"type":"Fortify Support","text":"Fortify Support","flags":{"prophecy":false,"unique":false}},{"type":"Ice Bite Support","text":"Ice Bite Support","flags":{"prophecy":false,"unique":false}},{"type":"Charged Traps Support","text":"Charged Traps Support","flags":{"prophecy":false,"unique":false}},{"type":"Generosity Support","text":"Generosity Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Generosity Support","text":"Awakened Generosity Support","flags":{"prophecy":false,"unique":false}},{"type":"Greater Multiple Projectiles Support","text":"Greater Multiple Projectiles Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Greater Multiple Projectiles Support","text":"Awakened Greater Multiple Projectiles Support","flags":{"prophecy":false,"unique":false}},{"type":"Greater Volley Support","text":"Greater Volley Support","flags":{"prophecy":false,"unique":false}},{"type":"Unleash Support","text":"Unleash Support","flags":{"prophecy":false,"unique":false}},{"type":"Intensify Support","text":"Intensify Support","flags":{"prophecy":false,"unique":false}},{"type":"High-Impact Mine Support","text":"High-Impact Mine Support","flags":{"prophecy":false,"unique":false}},{"type":"Ignite Proliferation Support","text":"Ignite Proliferation Support","flags":{"prophecy":false,"unique":false}},{"type":"Immolate Support","text":"Immolate Support","flags":{"prophecy":false,"unique":false}},{"type":"Impale Support","text":"Impale Support","flags":{"prophecy":false,"unique":false}},{"type":"Increased Area of Effect Support","text":"Increased Area of Effect Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Increased Area of Effect Support","text":"Awakened Increased Area of Effect Support","flags":{"prophecy":false,"unique":false}},{"type":"Burning Damage Support","text":"Burning Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Increased Critical Damage Support","text":"Increased Critical Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Increased Critical Strikes Support","text":"Increased Critical Strikes Support","flags":{"prophecy":false,"unique":false}},{"type":"Increased Duration Support","text":"Increased Duration Support","flags":{"prophecy":false,"unique":false}},{"type":"Infernal Legion Support","text":"Infernal Legion Support","flags":{"prophecy":false,"unique":false}},{"type":"Iron Grip Support","text":"Iron Grip Support","flags":{"prophecy":false,"unique":false}},{"type":"Iron Will Support","text":"Iron Will Support","flags":{"prophecy":false,"unique":false}},{"type":"Item Quantity Support","text":"Item Quantity Support","flags":{"prophecy":false,"unique":false}},{"type":"Item Rarity Support","text":"Item Rarity Support","flags":{"prophecy":false,"unique":false}},{"type":"Knockback Support","text":"Knockback Support","flags":{"prophecy":false,"unique":false}},{"type":"Lesser Multiple Projectiles Support","text":"Lesser Multiple Projectiles Support","flags":{"prophecy":false,"unique":false}},{"type":"Lesser Poison Support","text":"Lesser Poison Support","flags":{"prophecy":false,"unique":false}},{"type":"Life Gain on Hit Support","text":"Life Gain on Hit Support","flags":{"prophecy":false,"unique":false}},{"type":"Life Leech Support","text":"Life Leech Support","flags":{"prophecy":false,"unique":false}},{"type":"Lightning Penetration Support","text":"Lightning Penetration Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Lightning Penetration Support","text":"Awakened Lightning Penetration Support","flags":{"prophecy":false,"unique":false}},{"type":"Maim Support","text":"Maim Support","flags":{"prophecy":false,"unique":false}},{"type":"Mana Leech Support","text":"Mana Leech Support","flags":{"prophecy":false,"unique":false}},{"type":"Meat Shield Support","text":"Meat Shield Support","flags":{"prophecy":false,"unique":false}},{"type":"Damage on Full Life Support","text":"Damage on Full Life Support","flags":{"prophecy":false,"unique":false}},{"type":"Melee Physical Damage Support","text":"Melee Physical Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Melee Physical Damage Support","text":"Awakened Melee Physical Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Melee Splash Support","text":"Melee Splash Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Melee Splash Support","text":"Awakened Melee Splash Support","flags":{"prophecy":false,"unique":false}},{"type":"Minefield Support","text":"Minefield Support","flags":{"prophecy":false,"unique":false}},{"type":"Minion Damage Support","text":"Minion Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Minion Damage Support","text":"Awakened Minion Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Minion Life Support","text":"Minion Life Support","flags":{"prophecy":false,"unique":false}},{"type":"Minion Speed Support","text":"Minion Speed Support","flags":{"prophecy":false,"unique":false}},{"type":"Mirage Archer Support","text":"Mirage Archer Support","flags":{"prophecy":false,"unique":false}},{"type":"Spell Echo Support","text":"Spell Echo Support","flags":{"prophecy":false,"unique":false}},{"type":"Multistrike Support","text":"Multistrike Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Multistrike Support","text":"Awakened Multistrike Support","flags":{"prophecy":false,"unique":false}},{"type":"Multiple Totems Support","text":"Multiple Totems Support","flags":{"prophecy":false,"unique":false}},{"type":"Multiple Traps Support","text":"Multiple Traps Support","flags":{"prophecy":false,"unique":false}},{"type":"Nightblade Support","text":"Nightblade Support","flags":{"prophecy":false,"unique":false}},{"type":"Onslaught Support","text":"Onslaught Support","flags":{"prophecy":false,"unique":false}},{"type":"Innervate Support","text":"Innervate Support","flags":{"prophecy":false,"unique":false}},{"type":"Volley Support","text":"Volley Support","flags":{"prophecy":false,"unique":false}},{"type":"Vicious Projectiles Support","text":"Vicious Projectiles Support","flags":{"prophecy":false,"unique":false}},{"type":"Physical to Lightning Support","text":"Physical to Lightning Support","flags":{"prophecy":false,"unique":false}},{"type":"Pierce Support","text":"Pierce Support","flags":{"prophecy":false,"unique":false}},{"type":"Point Blank Support","text":"Point Blank Support","flags":{"prophecy":false,"unique":false}},{"type":"Poison Support","text":"Poison Support","flags":{"prophecy":false,"unique":false}},{"type":"Power Charge On Critical Support","text":"Power Charge On Critical Support","flags":{"prophecy":false,"unique":false}},{"type":"Pulverise Support","text":"Pulverise Support","flags":{"prophecy":false,"unique":false}},{"type":"Rage Support","text":"Rage Support","flags":{"prophecy":false,"unique":false}},{"type":"Ballista Totem Support","text":"Ballista Totem Support","flags":{"prophecy":false,"unique":false}},{"type":"Swift Affliction Support","text":"Swift Affliction Support","flags":{"prophecy":false,"unique":false}},{"type":"Less Duration Support","text":"Less Duration Support","flags":{"prophecy":false,"unique":false}},{"type":"Inspiration Support","text":"Inspiration Support","flags":{"prophecy":false,"unique":false}},{"type":"Blastchain Mine Support","text":"Blastchain Mine Support","flags":{"prophecy":false,"unique":false}},{"type":"Ruthless Support","text":"Ruthless Support","flags":{"prophecy":false,"unique":false}},{"type":"Second Wind Support","text":"Second Wind Support","flags":{"prophecy":false,"unique":false}},{"type":"Shockwave Support","text":"Shockwave Support","flags":{"prophecy":false,"unique":false}},{"type":"Slower Projectiles Support","text":"Slower Projectiles Support","flags":{"prophecy":false,"unique":false}},{"type":"Spell Cascade Support","text":"Spell Cascade Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Spell Cascade Support","text":"Awakened Spell Cascade Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Spell Echo Support","text":"Awakened Spell Echo Support","flags":{"prophecy":false,"unique":false}},{"type":"Spell Totem Support","text":"Spell Totem Support","flags":{"prophecy":false,"unique":false}},{"type":"Ancestral Call Support","text":"Ancestral Call Support","flags":{"prophecy":false,"unique":false}},{"type":"Infused Channelling Support","text":"Infused Channelling Support","flags":{"prophecy":false,"unique":false}},{"type":"Stun Support","text":"Stun Support","flags":{"prophecy":false,"unique":false}},{"type":"Elemental Army Support","text":"Elemental Army Support","flags":{"prophecy":false,"unique":false}},{"type":"Summon Phantasm Support","text":"Summon Phantasm Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Swift Affliction Support","text":"Awakened Swift Affliction Support","flags":{"prophecy":false,"unique":false}},{"type":"Swift Assembly Support","text":"Swift Assembly Support","flags":{"prophecy":false,"unique":false}},{"type":"Trap Support","text":"Trap Support","flags":{"prophecy":false,"unique":false}},{"type":"Trap and Mine Damage Support","text":"Trap and Mine Damage Support","flags":{"prophecy":false,"unique":false}},{"type":"Advanced Traps Support","text":"Advanced Traps Support","flags":{"prophecy":false,"unique":false}},{"type":"Unbound Ailments Support","text":"Unbound Ailments Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Unbound Ailments Support","text":"Awakened Unbound Ailments Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Unleash Support","text":"Awakened Unleash Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Vicious Projectiles Support","text":"Awakened Vicious Projectiles Support","flags":{"prophecy":false,"unique":false}},{"type":"Vile Toxins Support","text":"Vile Toxins Support","flags":{"prophecy":false,"unique":false}},{"type":"Void Manipulation Support","text":"Void Manipulation Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Void Manipulation Support","text":"Awakened Void Manipulation Support","flags":{"prophecy":false,"unique":false}},{"type":"Elemental Damage with Attacks Support","text":"Elemental Damage with Attacks Support","flags":{"prophecy":false,"unique":false}},{"type":"Awakened Elemental Damage with Attacks Support","text":"Awakened Elemental Damage with Attacks Support","flags":{"prophecy":false,"unique":false}}]},{"label":"Jewels","entries":[{"name":"Anatomical Knowledge","type":"Cobalt Jewel","text":"Anatomical Knowledge Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Ancient Waystones","type":"Crimson Jewel","text":"Ancient Waystones Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Apparitions","type":"Viridian Jewel","text":"Apparitions Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"To Dust","type":"Cobalt Jewel","text":"To Dust Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Assassin\u0027s Haste","type":"Cobalt Jewel","text":"Assassin\u0027s Haste Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Atziri\u0027s Reign","type":"Crimson Jewel","text":"Atziri\u0027s Reign Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Blood Sacrifice","type":"Crimson Jewel","text":"Blood Sacrifice Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Brawn","type":"Crimson Jewel","text":"Brawn Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Brittle Barrier","type":"Cobalt Jewel","text":"Brittle Barrier Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Brutal Restraint","type":"Timeless Jewel","text":"Brutal Restraint Timeless Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Brute Force Solution","type":"Cobalt Jewel","text":"Brute Force Solution Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Fortified Legion","type":"Cobalt Jewel","text":"Fortified Legion Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Calamitous Visions","type":"Small Cluster Jewel","text":"Calamitous Visions Small Cluster Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Careful Planning","type":"Viridian Jewel","text":"Careful Planning Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Cheap Construction","type":"Viridian Jewel","text":"Cheap Construction Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Chill of Corruption","type":"Viridian Jewel","text":"Chill of Corruption Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Clear Mind","type":"Cobalt Jewel","text":"Clear Mind Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Coated Shrapnel","type":"Crimson Jewel","text":"Coated Shrapnel Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Cold Steel","type":"Viridian Jewel","text":"Cold Steel Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Collateral Damage","type":"Viridian Jewel","text":"Collateral Damage Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Combat Focus","type":"Viridian Jewel","text":"Combat Focus Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Combat Focus","type":"Cobalt Jewel","text":"Combat Focus Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Combat Focus","type":"Crimson Jewel","text":"Combat Focus Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Combustibles","type":"Crimson Jewel","text":"Combustibles Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Conqueror\u0027s Efficiency","type":"Crimson Jewel","text":"Conqueror\u0027s Efficiency Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Conqueror\u0027s Longevity","type":"Viridian Jewel","text":"Conqueror\u0027s Longevity Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Conqueror\u0027s Potency","type":"Cobalt Jewel","text":"Conqueror\u0027s Potency Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Corrupted Energy","type":"Cobalt Jewel","text":"Corrupted Energy Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Dead Reckoning","type":"Cobalt Jewel","text":"Dead Reckoning Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Divide and Conquer","type":"Viridian Jewel","text":"Divide and Conquer Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Efficient Training","type":"Crimson Jewel","text":"Efficient Training Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Eldritch Knowledge","type":"Cobalt Jewel","text":"Eldritch Knowledge Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Elegant Hubris","type":"Timeless Jewel","text":"Elegant Hubris Timeless Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Emperor\u0027s Cunning","type":"Viridian Jewel","text":"Emperor\u0027s Cunning Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Emperor\u0027s Mastery","type":"Prismatic Jewel","text":"Emperor\u0027s Mastery Prismatic Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Emperor\u0027s Might","type":"Crimson Jewel","text":"Emperor\u0027s Might Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Emperor\u0027s Wit","type":"Cobalt Jewel","text":"Emperor\u0027s Wit Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Energised Armour","type":"Crimson Jewel","text":"Energised Armour Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Energy From Within","type":"Cobalt Jewel","text":"Energy From Within Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Fertile Mind","type":"Cobalt Jewel","text":"Fertile Mind Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Fevered Mind","type":"Cobalt Jewel","text":"Fevered Mind Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Fight for Survival","type":"Viridian Jewel","text":"Fight for Survival Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Fireborn","type":"Crimson Jewel","text":"Fireborn Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"First Snow","type":"Cobalt Jewel","text":"First Snow Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Fluid Motion","type":"Viridian Jewel","text":"Fluid Motion Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Fortress Covenant","type":"Cobalt Jewel","text":"Fortress Covenant Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Fragile Bloom","type":"Crimson Jewel","text":"Fragile Bloom Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Fragility","type":"Crimson Jewel","text":"Fragility Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"From Dust","type":"Cobalt Jewel","text":"From Dust Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Frozen Trail","type":"Cobalt Jewel","text":"Frozen Trail Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Glorious Vanity","type":"Timeless Jewel","text":"Glorious Vanity Timeless Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Grand Spectrum","type":"Viridian Jewel","text":"Grand Spectrum Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Grand Spectrum","type":"Cobalt Jewel","text":"Grand Spectrum Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Grand Spectrum","type":"Crimson Jewel","text":"Grand Spectrum Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Growing Agony","type":"Viridian Jewel","text":"Growing Agony Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Hair Trigger","type":"Viridian Jewel","text":"Hair Trigger Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Hazardous Research","type":"Cobalt Jewel","text":"Hazardous Research Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Healthy Mind","type":"Cobalt Jewel","text":"Healthy Mind Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Hidden Potential","type":"Viridian Jewel","text":"Hidden Potential Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Hotfooted","type":"Viridian Jewel","text":"Hotfooted Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Hungry Abyss","type":"Viridian Jewel","text":"Hungry Abyss Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Inertia","type":"Crimson Jewel","text":"Inertia Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Inevitability","type":"Cobalt Jewel","text":"Inevitability Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Inspired Learning","type":"Crimson Jewel","text":"Inspired Learning Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Intuitive Leap","type":"Viridian Jewel","text":"Intuitive Leap Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Izaro\u0027s Turmoil","type":"Crimson Jewel","text":"Izaro\u0027s Turmoil Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Kitava\u0027s Teachings","type":"Small Cluster Jewel","text":"Kitava\u0027s Teachings Small Cluster Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Lethal Pride","type":"Timeless Jewel","text":"Lethal Pride Timeless Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Lioneye\u0027s Fall","type":"Viridian Jewel","text":"Lioneye\u0027s Fall Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Malicious Intent","type":"Cobalt Jewel","text":"Malicious Intent Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Mantra of Flames","type":"Crimson Jewel","text":"Mantra of Flames Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Martial Artistry","type":"Crimson Jewel","text":"Martial Artistry Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Megalomaniac","type":"Medium Cluster Jewel","text":"Megalomaniac Medium Cluster Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Might and Influence","type":"Viridian Jewel","text":"Might and Influence Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Might in All Forms","type":"Crimson Jewel","text":"Might in All Forms Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Might of the Meek","type":"Crimson Jewel","text":"Might of the Meek Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Militant Faith","type":"Timeless Jewel","text":"Militant Faith Timeless Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Mutated Growth","type":"Cobalt Jewel","text":"Mutated Growth Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Natural Affinity","type":"Small Cluster Jewel","text":"Natural Affinity Small Cluster Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Omen on the Winds","type":"Viridian Jewel","text":"Omen on the Winds Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"One With Nothing","type":"Small Cluster Jewel","text":"One With Nothing Small Cluster Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Overwhelming Odds","type":"Crimson Jewel","text":"Overwhelming Odds Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Pacifism","type":"Viridian Jewel","text":"Pacifism Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Pitch Darkness","type":"Viridian Jewel","text":"Pitch Darkness Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Poacher\u0027s Aim","type":"Viridian Jewel","text":"Poacher\u0027s Aim Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Powerlessness","type":"Cobalt Jewel","text":"Powerlessness Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Primordial Eminence","type":"Viridian Jewel","text":"Primordial Eminence Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Primordial Harmony","type":"Cobalt Jewel","text":"Primordial Harmony Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Primordial Might","type":"Crimson Jewel","text":"Primordial Might Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Pugilist","type":"Viridian Jewel","text":"Pugilist Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Pure Talent","type":"Viridian Jewel","text":"Pure Talent Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Quickening Covenant","type":"Viridian Jewel","text":"Quickening Covenant Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Rain of Splinters","type":"Crimson Jewel","text":"Rain of Splinters Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Rapid Expansion","type":"Crimson Jewel","text":"Rapid Expansion Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Reckless Defence","type":"Cobalt Jewel","text":"Reckless Defence Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Ring of Blades","type":"Viridian Jewel","text":"Ring of Blades Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Rolling Flames","type":"Cobalt Jewel","text":"Rolling Flames Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Sacrificial Harvest","type":"Viridian Jewel","text":"Sacrificial Harvest Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Self-Flagellation","type":"Viridian Jewel","text":"Self-Flagellation Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Shattered Chains","type":"Crimson Jewel","text":"Shattered Chains Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Soul\u0027s Wick","type":"Cobalt Jewel","text":"Soul\u0027s Wick Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Spire of Stone","type":"Crimson Jewel","text":"Spire of Stone Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Spirited Response","type":"Cobalt Jewel","text":"Spirited Response Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Spirit Guards","type":"Viridian Jewel","text":"Spirit Guards Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Split Personality","type":"Crimson Jewel","text":"Split Personality Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Spreading Rot","type":"Cobalt Jewel","text":"Spreading Rot Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Static Electricity","type":"Viridian Jewel","text":"Static Electricity Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Steel Spirit","type":"Viridian Jewel","text":"Steel Spirit Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Sudden Ignition","type":"Viridian Jewel","text":"Sudden Ignition Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Survival Instincts","type":"Viridian Jewel","text":"Survival Instincts Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Survival Secrets","type":"Cobalt Jewel","text":"Survival Secrets Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Survival Skills","type":"Crimson Jewel","text":"Survival Skills Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Tempered Flesh","type":"Crimson Jewel","text":"Tempered Flesh Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Tempered Mind","type":"Cobalt Jewel","text":"Tempered Mind Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Tempered Spirit","type":"Viridian Jewel","text":"Tempered Spirit Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"The Anima Stone","type":"Prismatic Jewel","text":"The Anima Stone Prismatic Jewel","flags":{"prophecy":false,"unique":true}},{"name":"The Blue Dream","type":"Cobalt Jewel","text":"The Blue Dream Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"The Blue Nightmare","type":"Cobalt Jewel","text":"The Blue Nightmare Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"The Front Line","type":"Small Cluster Jewel","text":"The Front Line Small Cluster Jewel","flags":{"prophecy":false,"unique":true}},{"name":"The Golden Rule","type":"Viridian Jewel","text":"The Golden Rule Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"The Green Dream","type":"Viridian Jewel","text":"The Green Dream Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"The Green Nightmare","type":"Viridian Jewel","text":"The Green Nightmare Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"The Interrogation","type":"Small Cluster Jewel","text":"The Interrogation Small Cluster Jewel","flags":{"prophecy":false,"unique":true}},{"name":"The Long Winter","type":"Cobalt Jewel","text":"The Long Winter Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"The Red Dream","type":"Crimson Jewel","text":"The Red Dream Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"The Red Nightmare","type":"Crimson Jewel","text":"The Red Nightmare Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"The Siege","type":"Small Cluster Jewel","text":"The Siege Small Cluster Jewel","flags":{"prophecy":false,"unique":true}},{"name":"The Vigil","type":"Crimson Jewel","text":"The Vigil Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Thread of Hope","type":"Crimson Jewel","text":"Thread of Hope Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Transcendent Flesh","type":"Crimson Jewel","text":"Transcendent Flesh Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Transcendent Mind","type":"Cobalt Jewel","text":"Transcendent Mind Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Transcendent Spirit","type":"Viridian Jewel","text":"Transcendent Spirit Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Unending Hunger","type":"Cobalt Jewel","text":"Unending Hunger Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Unnatural Instinct","type":"Viridian Jewel","text":"Unnatural Instinct Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Unstable Payload","type":"Cobalt Jewel","text":"Unstable Payload Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Vaal Sentencing","type":"Cobalt Jewel","text":"Vaal Sentencing Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Violent Dead","type":"Cobalt Jewel","text":"Violent Dead Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Voices","type":"Large Cluster Jewel","text":"Voices Large Cluster Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Volley Fire","type":"Viridian Jewel","text":"Volley Fire Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Warlord\u0027s Reach","type":"Crimson Jewel","text":"Warlord\u0027s Reach Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Watcher\u0027s Eye","type":"Prismatic Jewel","text":"Watcher\u0027s Eye Prismatic Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Weight of Sin","type":"Viridian Jewel","text":"Weight of Sin Viridian Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Weight of the Empire","type":"Crimson Jewel","text":"Weight of the Empire Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Wildfire","type":"Crimson Jewel","text":"Wildfire Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Winter Burial","type":"Crimson Jewel","text":"Winter Burial Crimson Jewel","flags":{"prophecy":false,"unique":true}},{"name":"Winter\u0027s Bounty","type":"Cobalt Jewel","text":"Winter\u0027s Bounty Cobalt Jewel","flags":{"prophecy":false,"unique":true}},{"type":"Hypnotic Eye Jewel","text":"Hypnotic Eye Jewel","flags":{"prophecy":false,"unique":false}},{"type":"Murderous Eye Jewel","text":"Murderous Eye Jewel","flags":{"prophecy":false,"unique":false}},{"type":"Searching Eye Jewel","text":"Searching Eye Jewel","flags":{"prophecy":false,"unique":false}},{"type":"Ghastly Eye Jewel","text":"Ghastly Eye Jewel","flags":{"prophecy":false,"unique":false}},{"type":"Viridian Jewel","text":"Viridian Jewel","flags":{"prophecy":false,"unique":false}},{"type":"Cobalt Jewel","text":"Cobalt Jewel","flags":{"prophecy":false,"unique":false}},{"type":"Large Cluster Jewel","text":"Large Cluster Jewel","flags":{"prophecy":false,"unique":false}},{"type":"Medium Cluster Jewel","text":"Medium Cluster Jewel","flags":{"prophecy":false,"unique":false}},{"type":"Small Cluster Jewel","text":"Small Cluster Jewel","flags":{"prophecy":false,"unique":false}},{"type":"Prismatic Jewel","text":"Prismatic Jewel","flags":{"prophecy":false,"unique":false}},{"type":"Crimson Jewel","text":"Crimson Jewel","flags":{"prophecy":false,"unique":false}},{"type":"Timeless Jewel","text":"Timeless Jewel","flags":{"prophecy":false,"unique":false}}]},{"label":"Maps","entries":[{"name":"Acton\u0027s Nightmare","type":"Overgrown Shrine Map","text":"Acton\u0027s Nightmare Overgrown Shrine Map","flags":{"prophecy":false,"unique":true}},{"name":"Altered Distant Memory","type":"Siege Map","text":"Altered Distant Memory Siege Map","flags":{"prophecy":false,"unique":true}},{"name":"Augmented Distant Memory","type":"Courthouse Map","text":"Augmented Distant Memory Courthouse Map","flags":{"prophecy":false,"unique":true}},{"name":"Caer Blaidd, Wolfpack\u0027s Den","type":"Underground River Map","text":"Caer Blaidd, Wolfpack\u0027s Den Underground River Map","flags":{"prophecy":false,"unique":true}},{"name":"Cortex","type":"Relic Chambers Map","text":"Cortex Relic Chambers Map","flags":{"prophecy":false,"unique":true}},{"name":"Death and Taxes","type":"Necropolis Map","text":"Death and Taxes Necropolis Map","flags":{"prophecy":false,"unique":true}},{"name":"Doryani\u0027s Machinarium","type":"Maze Map","text":"Doryani\u0027s Machinarium Maze Map","flags":{"prophecy":false,"unique":true}},{"name":"Hall of Grandmasters","type":"Promenade Map","text":"Hall of Grandmasters Promenade Map","flags":{"prophecy":false,"unique":true}},{"name":"Hallowed Ground","type":"Cemetery Map","text":"Hallowed Ground Cemetery Map","flags":{"prophecy":false,"unique":true}},{"name":"Maelstr\u00F6m of Chaos","type":"Atoll Map","text":"Maelstr\u00F6m of Chaos Atoll Map","flags":{"prophecy":false,"unique":true}},{"name":"Mao Kun","type":"Shore Map","text":"Mao Kun Shore Map","flags":{"prophecy":false,"unique":true}},{"name":"Oba\u0027s Cursed Trove","type":"Primordial Blocks Map","text":"Oba\u0027s Cursed Trove Primordial Blocks Map","flags":{"prophecy":false,"unique":true}},{"name":"Oba\u0027s Cursed Trove","type":"Underground Sea Map","text":"Oba\u0027s Cursed Trove Underground Sea Map","flags":{"prophecy":false,"unique":true}},{"name":"Olmec\u0027s Sanctum","type":"Bone Crypt Map","text":"Olmec\u0027s Sanctum Bone Crypt Map","flags":{"prophecy":false,"unique":true}},{"name":"Pillars of Arun","type":"Dunes Map","text":"Pillars of Arun Dunes Map","flags":{"prophecy":false,"unique":true}},{"name":"Poorjoy\u0027s Asylum","type":"Temple Map","text":"Poorjoy\u0027s Asylum Temple Map","flags":{"prophecy":false,"unique":true}},{"name":"Rewritten Distant Memory","type":"Basilica Map","text":"Rewritten Distant Memory Basilica Map","flags":{"prophecy":false,"unique":true}},{"name":"The Beachhead","type":"Harbinger Map","text":"The Beachhead Harbinger Map","flags":{"prophecy":false,"unique":true}},{"name":"The Coward\u0027s Trial","type":"Cursed Crypt Map","text":"The Coward\u0027s Trial Cursed Crypt Map","flags":{"prophecy":false,"unique":true}},{"name":"The Perandus Manor","type":"Chateau Map","text":"The Perandus Manor Chateau Map","flags":{"prophecy":false,"unique":true}},{"name":"The Putrid Cloister","type":"Museum Map","text":"The Putrid Cloister Museum Map","flags":{"prophecy":false,"unique":true}},{"name":"The Twilight Temple","type":"Moon Temple Map","text":"The Twilight Temple Moon Temple Map","flags":{"prophecy":false,"unique":true}},{"name":"The Vinktar Square","type":"Courtyard Map","text":"The Vinktar Square Courtyard Map","flags":{"prophecy":false,"unique":true}},{"name":"Twisted Distant Memory","type":"Park Map","text":"Twisted Distant Memory Park Map","flags":{"prophecy":false,"unique":true}},{"name":"Vaults of Atziri","type":"Vaal Pyramid Map","text":"Vaults of Atziri Vaal Pyramid Map","flags":{"prophecy":false,"unique":true}},{"name":"Whakawairua Tuahu","type":"Strand Map","text":"Whakawairua Tuahu Strand Map","flags":{"prophecy":false,"unique":true}},{"type":"Academy Map","text":"Academy Map","flags":{"prophecy":false,"unique":false}},{"type":"Acid Caverns Map","text":"Acid Caverns Map","flags":{"prophecy":false,"unique":false}},{"type":"Alleyways Map","text":"Alleyways Map","flags":{"prophecy":false,"unique":false}},{"type":"Ancient City Map","text":"Ancient City Map","flags":{"prophecy":false,"unique":false}},{"type":"Arachnid Nest Map","text":"Arachnid Nest Map","flags":{"prophecy":false,"unique":false}},{"type":"Arachnid Tomb Map","text":"Arachnid Tomb Map","flags":{"prophecy":false,"unique":false}},{"type":"Arcade Map","text":"Arcade Map","flags":{"prophecy":false,"unique":false}},{"type":"Arena Map","text":"Arena Map","flags":{"prophecy":false,"unique":false}},{"type":"Arid Lake Map","text":"Arid Lake Map","flags":{"prophecy":false,"unique":false}},{"type":"Armoury Map","text":"Armoury Map","flags":{"prophecy":false,"unique":false}},{"type":"Arsenal Map","text":"Arsenal Map","flags":{"prophecy":false,"unique":false}},{"type":"Ashen Wood Map","text":"Ashen Wood Map","flags":{"prophecy":false,"unique":false}},{"type":"Atoll Map","text":"Atoll Map","flags":{"prophecy":false,"unique":false}},{"type":"Barrows Map","text":"Barrows Map","flags":{"prophecy":false,"unique":false}},{"type":"Basilica Map","text":"Basilica Map","flags":{"prophecy":false,"unique":false}},{"type":"Bazaar Map","text":"Bazaar Map","flags":{"prophecy":false,"unique":false}},{"type":"Beach Map","text":"Beach Map","flags":{"prophecy":false,"unique":false}},{"type":"Belfry Map","text":"Belfry Map","flags":{"prophecy":false,"unique":false}},{"type":"Bog Map","text":"Bog Map","flags":{"prophecy":false,"unique":false}},{"type":"Bone Crypt Map","text":"Bone Crypt Map","flags":{"prophecy":false,"unique":false}},{"type":"Burial Chambers Map","text":"Burial Chambers Map","flags":{"prophecy":false,"unique":false}},{"type":"Cage Map","text":"Cage Map","flags":{"prophecy":false,"unique":false}},{"type":"Caldera Map","text":"Caldera Map","flags":{"prophecy":false,"unique":false}},{"type":"Canyon Map","text":"Canyon Map","flags":{"prophecy":false,"unique":false}},{"type":"Carcass Map","text":"Carcass Map","flags":{"prophecy":false,"unique":false}},{"type":"Castle Ruins Map","text":"Castle Ruins Map","flags":{"prophecy":false,"unique":false}},{"type":"Cells Map","text":"Cells Map","flags":{"prophecy":false,"unique":false}},{"type":"Cemetery Map","text":"Cemetery Map","flags":{"prophecy":false,"unique":false}},{"type":"Channel Map","text":"Channel Map","flags":{"prophecy":false,"unique":false}},{"type":"Chateau Map","text":"Chateau Map","flags":{"prophecy":false,"unique":false}},{"type":"Pit of the Chimera Map","text":"Pit of the Chimera Map","flags":{"prophecy":false,"unique":false}},{"type":"City Square Map","text":"City Square Map","flags":{"prophecy":false,"unique":false}},{"type":"Colonnade Map","text":"Colonnade Map","flags":{"prophecy":false,"unique":false}},{"type":"Colosseum Map","text":"Colosseum Map","flags":{"prophecy":false,"unique":false}},{"type":"Conservatory Map","text":"Conservatory Map","flags":{"prophecy":false,"unique":false}},{"type":"Coral Ruins Map","text":"Coral Ruins Map","flags":{"prophecy":false,"unique":false}},{"type":"Core Map","text":"Core Map","flags":{"prophecy":false,"unique":false}},{"type":"Courthouse Map","text":"Courthouse Map","flags":{"prophecy":false,"unique":false}},{"type":"Courtyard Map","text":"Courtyard Map","flags":{"prophecy":false,"unique":false}},{"type":"Coves Map","text":"Coves Map","flags":{"prophecy":false,"unique":false}},{"type":"Crimson Temple Map","text":"Crimson Temple Map","flags":{"prophecy":false,"unique":false}},{"type":"Crystal Ore Map","text":"Crystal Ore Map","flags":{"prophecy":false,"unique":false}},{"type":"Cursed Crypt Map","text":"Cursed Crypt Map","flags":{"prophecy":false,"unique":false}},{"type":"Dark Forest Map","text":"Dark Forest Map","flags":{"prophecy":false,"unique":false}},{"type":"Defiled Cathedral Map","text":"Defiled Cathedral Map","flags":{"prophecy":false,"unique":false}},{"type":"Desert Map","text":"Desert Map","flags":{"prophecy":false,"unique":false}},{"type":"Desert Spring Map","text":"Desert Spring Map","flags":{"prophecy":false,"unique":false}},{"type":"Dig Map","text":"Dig Map","flags":{"prophecy":false,"unique":false}},{"type":"Dunes Map","text":"Dunes Map","flags":{"prophecy":false,"unique":false}},{"type":"Dungeon Map","text":"Dungeon Map","flags":{"prophecy":false,"unique":false}},{"type":"Estuary Map","text":"Estuary Map","flags":{"prophecy":false,"unique":false}},{"type":"Excavation Map","text":"Excavation Map","flags":{"prophecy":false,"unique":false}},{"type":"Factory Map","text":"Factory Map","flags":{"prophecy":false,"unique":false}},{"type":"Fields Map","text":"Fields Map","flags":{"prophecy":false,"unique":false}},{"type":"Flooded Mine Map","text":"Flooded Mine Map","flags":{"prophecy":false,"unique":false}},{"type":"Gardens Map","text":"Gardens Map","flags":{"prophecy":false,"unique":false}},{"type":"Geode Map","text":"Geode Map","flags":{"prophecy":false,"unique":false}},{"type":"Ghetto Map","text":"Ghetto Map","flags":{"prophecy":false,"unique":false}},{"type":"Glacier Map","text":"Glacier Map","flags":{"prophecy":false,"unique":false}},{"type":"Graveyard Map","text":"Graveyard Map","flags":{"prophecy":false,"unique":false}},{"type":"Grotto Map","text":"Grotto Map","flags":{"prophecy":false,"unique":false}},{"type":"Harbinger Map","text":"Harbinger Map","flags":{"prophecy":false,"unique":false}},{"type":"Haunted Mansion Map","text":"Haunted Mansion Map","flags":{"prophecy":false,"unique":false}},{"type":"Lair of the Hydra Map","text":"Lair of the Hydra Map","flags":{"prophecy":false,"unique":false}},{"type":"Iceberg Map","text":"Iceberg Map","flags":{"prophecy":false,"unique":false}},{"type":"Infested Valley Map","text":"Infested Valley Map","flags":{"prophecy":false,"unique":false}},{"type":"Ivory Temple Map","text":"Ivory Temple Map","flags":{"prophecy":false,"unique":false}},{"type":"Jungle Valley Map","text":"Jungle Valley Map","flags":{"prophecy":false,"unique":false}},{"type":"Laboratory Map","text":"Laboratory Map","flags":{"prophecy":false,"unique":false}},{"type":"Lair Map","text":"Lair Map","flags":{"prophecy":false,"unique":false}},{"type":"Lava Chamber Map","text":"Lava Chamber Map","flags":{"prophecy":false,"unique":false}},{"type":"Lava Lake Map","text":"Lava Lake Map","flags":{"prophecy":false,"unique":false}},{"type":"Leyline Map","text":"Leyline Map","flags":{"prophecy":false,"unique":false}},{"type":"Lighthouse Map","text":"Lighthouse Map","flags":{"prophecy":false,"unique":false}},{"type":"Lookout Map","text":"Lookout Map","flags":{"prophecy":false,"unique":false}},{"type":"Malformation Map","text":"Malformation Map","flags":{"prophecy":false,"unique":false}},{"type":"Marshes Map","text":"Marshes Map","flags":{"prophecy":false,"unique":false}},{"type":"Mausoleum Map","text":"Mausoleum Map","flags":{"prophecy":false,"unique":false}},{"type":"Maze Map","text":"Maze Map","flags":{"prophecy":false,"unique":false}},{"type":"Mesa Map","text":"Mesa Map","flags":{"prophecy":false,"unique":false}},{"type":"Mineral Pools Map","text":"Mineral Pools Map","flags":{"prophecy":false,"unique":false}},{"type":"Maze of the Minotaur Map","text":"Maze of the Minotaur Map","flags":{"prophecy":false,"unique":false}},{"type":"Moon Temple Map","text":"Moon Temple Map","flags":{"prophecy":false,"unique":false}},{"type":"Mud Geyser Map","text":"Mud Geyser Map","flags":{"prophecy":false,"unique":false}},{"type":"Museum Map","text":"Museum Map","flags":{"prophecy":false,"unique":false}},{"type":"Necropolis Map","text":"Necropolis Map","flags":{"prophecy":false,"unique":false}},{"type":"Orchard Map","text":"Orchard Map","flags":{"prophecy":false,"unique":false}},{"type":"Overgrown Ruin Map","text":"Overgrown Ruin Map","flags":{"prophecy":false,"unique":false}},{"type":"Overgrown Shrine Map","text":"Overgrown Shrine Map","flags":{"prophecy":false,"unique":false}},{"type":"Palace Map","text":"Palace Map","flags":{"prophecy":false,"unique":false}},{"type":"Park Map","text":"Park Map","flags":{"prophecy":false,"unique":false}},{"type":"Pen Map","text":"Pen Map","flags":{"prophecy":false,"unique":false}},{"type":"Peninsula Map","text":"Peninsula Map","flags":{"prophecy":false,"unique":false}},{"type":"Phantasmagoria Map","text":"Phantasmagoria Map","flags":{"prophecy":false,"unique":false}},{"type":"Forge of the Phoenix Map","text":"Forge of the Phoenix Map","flags":{"prophecy":false,"unique":false}},{"type":"Pier Map","text":"Pier Map","flags":{"prophecy":false,"unique":false}},{"type":"Pit Map","text":"Pit Map","flags":{"prophecy":false,"unique":false}},{"type":"Plateau Map","text":"Plateau Map","flags":{"prophecy":false,"unique":false}},{"type":"Plaza Map","text":"Plaza Map","flags":{"prophecy":false,"unique":false}},{"type":"Port Map","text":"Port Map","flags":{"prophecy":false,"unique":false}},{"type":"Precinct Map","text":"Precinct Map","flags":{"prophecy":false,"unique":false}},{"type":"Primordial Pool Map","text":"Primordial Pool Map","flags":{"prophecy":false,"unique":false}},{"type":"Promenade Map","text":"Promenade Map","flags":{"prophecy":false,"unique":false}},{"type":"Racecourse Map","text":"Racecourse Map","flags":{"prophecy":false,"unique":false}},{"type":"Ramparts Map","text":"Ramparts Map","flags":{"prophecy":false,"unique":false}},{"type":"Reef Map","text":"Reef Map","flags":{"prophecy":false,"unique":false}},{"type":"Relic Chambers Map","text":"Relic Chambers Map","flags":{"prophecy":false,"unique":false}},{"type":"Residence Map","text":"Residence Map","flags":{"prophecy":false,"unique":false}},{"type":"Scriptorium Map","text":"Scriptorium Map","flags":{"prophecy":false,"unique":false}},{"type":"Sepulchre Map","text":"Sepulchre Map","flags":{"prophecy":false,"unique":false}},{"type":"Shipyard Map","text":"Shipyard Map","flags":{"prophecy":false,"unique":false}},{"type":"Shore Map","text":"Shore Map","flags":{"prophecy":false,"unique":false}},{"type":"Shrine Map","text":"Shrine Map","flags":{"prophecy":false,"unique":false}},{"type":"Siege Map","text":"Siege Map","flags":{"prophecy":false,"unique":false}},{"type":"Spider Forest Map","text":"Spider Forest Map","flags":{"prophecy":false,"unique":false}},{"type":"Spider Lair Map","text":"Spider Lair Map","flags":{"prophecy":false,"unique":false}},{"type":"Fungal Hollow Map","text":"Fungal Hollow Map","flags":{"prophecy":false,"unique":false}},{"type":"Strand Map","text":"Strand Map","flags":{"prophecy":false,"unique":false}},{"type":"Sulphur Vents Map","text":"Sulphur Vents Map","flags":{"prophecy":false,"unique":false}},{"type":"Summit Map","text":"Summit Map","flags":{"prophecy":false,"unique":false}},{"type":"Sunken City Map","text":"Sunken City Map","flags":{"prophecy":false,"unique":false}},{"type":"Temple Map","text":"Temple Map","flags":{"prophecy":false,"unique":false}},{"type":"Terrace Map","text":"Terrace Map","flags":{"prophecy":false,"unique":false}},{"type":"Thicket Map","text":"Thicket Map","flags":{"prophecy":false,"unique":false}},{"type":"Primordial Blocks Map","text":"Primordial Blocks Map","flags":{"prophecy":false,"unique":false}},{"type":"Tower Map","text":"Tower Map","flags":{"prophecy":false,"unique":false}},{"type":"Toxic Sewer Map","text":"Toxic Sewer Map","flags":{"prophecy":false,"unique":false}},{"type":"Crater Map","text":"Crater Map","flags":{"prophecy":false,"unique":false}},{"type":"Tropical Island Map","text":"Tropical Island Map","flags":{"prophecy":false,"unique":false}},{"type":"Underground River Map","text":"Underground River Map","flags":{"prophecy":false,"unique":false}},{"type":"Underground Sea Map","text":"Underground Sea Map","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Pyramid Map","text":"Vaal Pyramid Map","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Temple Map","text":"Vaal Temple Map","flags":{"prophecy":false,"unique":false}},{"type":"Vault Map","text":"Vault Map","flags":{"prophecy":false,"unique":false}},{"type":"Villa Map","text":"Villa Map","flags":{"prophecy":false,"unique":false}},{"type":"Volcano Map","text":"Volcano Map","flags":{"prophecy":false,"unique":false}},{"type":"Wasteland Map","text":"Wasteland Map","flags":{"prophecy":false,"unique":false}},{"type":"Waste Pool Map","text":"Waste Pool Map","flags":{"prophecy":false,"unique":false}},{"type":"Waterways Map","text":"Waterways Map","flags":{"prophecy":false,"unique":false}},{"type":"Wharf Map","text":"Wharf Map","flags":{"prophecy":false,"unique":false}},{"name":"Acton\u0027s Nightmare","type":"Overgrown Shrine Map","text":"Acton\u0027s Nightmare Overgrown Shrine Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"Caer Blaidd, Wolfpack\u0027s Den","type":"Underground River Map","text":"Caer Blaidd, Wolfpack\u0027s Den Underground River Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"Death and Taxes","type":"Necropolis Map","text":"Death and Taxes Necropolis Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"Hall of Grandmasters","type":"Promenade Map","text":"Hall of Grandmasters Promenade Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"Hallowed Ground","type":"Graveyard Map","text":"Hallowed Ground Graveyard Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"Maelstr\u00F6m of Chaos","type":"Atoll Map","text":"Maelstr\u00F6m of Chaos Atoll Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"Mao Kun","type":"Reef Map","text":"Mao Kun Reef Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"Oba\u0027s Cursed Trove","type":"Primordial Blocks Map","text":"Oba\u0027s Cursed Trove Primordial Blocks Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"Olmec\u0027s Sanctum","type":"Bone Crypt Map","text":"Olmec\u0027s Sanctum Bone Crypt Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"Poorjoy\u0027s Asylum","type":"Temple Map","text":"Poorjoy\u0027s Asylum Temple Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"The Beachhead","type":"Harbinger Map","text":"The Beachhead Harbinger Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"The Coward\u0027s Trial","type":"Cursed Crypt Map","text":"The Coward\u0027s Trial Cursed Crypt Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"The Perandus Manor","type":"Chateau Map","text":"The Perandus Manor Chateau Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"The Putrid Cloister","type":"Museum Map","text":"The Putrid Cloister Museum Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"The Vinktar Square","type":"Courtyard Map","text":"The Vinktar Square Courtyard Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"Vaults of Atziri","type":"Vaal Pyramid Map","text":"Vaults of Atziri Vaal Pyramid Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"name":"Whakawairua Tuahu","type":"Strand Map","text":"Whakawairua Tuahu Strand Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":true}},{"type":"Caldera Map","text":"Caldera Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Academy Map","text":"Academy Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Academy Map","text":"Shaped Academy Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Acid Caverns Map","text":"Acid Caverns Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Acid Caverns Map","text":"Shaped Acid Caverns Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Arachnid Nest Map","text":"Arachnid Nest Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Arachnid Nest Map","text":"Shaped Arachnid Nest Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Arachnid Tomb Map","text":"Arachnid Tomb Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Arachnid Tomb Map","text":"Shaped Arachnid Tomb Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Arcade Map","text":"Arcade Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Arcade Map","text":"Shaped Arcade Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Arena Map","text":"Arena Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Arena Map","text":"Shaped Arena Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Arid Lake Map","text":"Arid Lake Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Arid Lake Map","text":"Shaped Arid Lake Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Armoury Map","text":"Armoury Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Armoury Map","text":"Shaped Armoury Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Arsenal Map","text":"Arsenal Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Arsenal Map","text":"Shaped Arsenal Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Atoll Map","text":"Atoll Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Atoll Map","text":"Shaped Atoll Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Barrows Map","text":"Barrows Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Barrows Map","text":"Shaped Barrows Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Bazaar Map","text":"Bazaar Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Beach Map","text":"Beach Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Beach Map","text":"Shaped Beach Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Lighthouse Map","text":"Lighthouse Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Bog Map","text":"Bog Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Bog Map","text":"Shaped Bog Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Burial Chambers Map","text":"Burial Chambers Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Burial Chambers Map","text":"Shaped Burial Chambers Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Canyon Map","text":"Canyon Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Canyon Map","text":"Shaped Canyon Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Castle Ruins Map","text":"Castle Ruins Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Castle Ruins Map","text":"Shaped Castle Ruins Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Bone Crypt Map","text":"Bone Crypt Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Bone Crypt Map","text":"Shaped Bone Crypt Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Flooded Mine Map","text":"Flooded Mine Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Flooded Mine Map","text":"Shaped Flooded Mine Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Cells Map","text":"Cells Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Cells Map","text":"Shaped Cells Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Cemetery Map","text":"Cemetery Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Cemetery Map","text":"Shaped Cemetery Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Channel Map","text":"Channel Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Channel Map","text":"Shaped Channel Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Chateau Map","text":"Chateau Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Pit of the Chimera Map","text":"Pit of the Chimera Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Colonnade Map","text":"Colonnade Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Colonnade Map","text":"Shaped Colonnade Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Colosseum Map","text":"Colosseum Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Core Map","text":"Core Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Courtyard Map","text":"Courtyard Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Courtyard Map","text":"Shaped Courtyard Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Coves Map","text":"Coves Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Coves Map","text":"Shaped Coves Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Lava Chamber Map","text":"Lava Chamber Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Cursed Crypt Map","text":"Cursed Crypt Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Cursed Crypt Map","text":"Shaped Cursed Crypt Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Crystal Ore Map","text":"Crystal Ore Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Crystal Ore Map","text":"Shaped Crystal Ore Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Dark Forest Map","text":"Dark Forest Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Desert Map","text":"Desert Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Desert Map","text":"Shaped Desert Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Peninsula Map","text":"Peninsula Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Peninsula Map","text":"Shaped Peninsula Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Ashen Wood Map","text":"Ashen Wood Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Ashen Wood Map","text":"Shaped Ashen Wood Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Dunes Map","text":"Dunes Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Dunes Map","text":"Shaped Dunes Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Dungeon Map","text":"Dungeon Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Dungeon Map","text":"Shaped Dungeon Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Estuary Map","text":"Estuary Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Excavation Map","text":"Excavation Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Factory Map","text":"Factory Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Factory Map","text":"Shaped Factory Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Ghetto Map","text":"Ghetto Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Ghetto Map","text":"Shaped Ghetto Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Glacier Map","text":"Glacier Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Graveyard Map","text":"Graveyard Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Graveyard Map","text":"Shaped Graveyard Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Grotto Map","text":"Grotto Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Grotto Map","text":"Shaped Grotto Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Harbinger Map","text":"Harbinger Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Terrace Map","text":"Terrace Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Lair of the Hydra Map","text":"Lair of the Hydra Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Ivory Temple Map","text":"Ivory Temple Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Jungle Valley Map","text":"Jungle Valley Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Jungle Valley Map","text":"Shaped Jungle Valley Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Lair Map","text":"Lair Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Malformation Map","text":"Malformation Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Malformation Map","text":"Shaped Malformation Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Marshes Map","text":"Marshes Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Marshes Map","text":"Shaped Marshes Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Maze Map","text":"Maze Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Mesa Map","text":"Mesa Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Mesa Map","text":"Shaped Mesa Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Mineral Pools Map","text":"Mineral Pools Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Maze of the Minotaur Map","text":"Maze of the Minotaur Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Mud Geyser Map","text":"Mud Geyser Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Mud Geyser Map","text":"Shaped Mud Geyser Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Museum Map","text":"Museum Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Museum Map","text":"Shaped Museum Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Necropolis Map","text":"Necropolis Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Desert Spring Map","text":"Desert Spring Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Desert Spring Map","text":"Shaped Desert Spring Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Orchard Map","text":"Orchard Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Orchard Map","text":"Shaped Orchard Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Overgrown Ruin Map","text":"Overgrown Ruin Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Overgrown Shrine Map","text":"Overgrown Shrine Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Overgrown Shrine Map","text":"Shaped Overgrown Shrine Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Palace Map","text":"Palace Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Phantasmagoria Map","text":"Phantasmagoria Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Phantasmagoria Map","text":"Shaped Phantasmagoria Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Forge of the Phoenix Map","text":"Forge of the Phoenix Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Pier Map","text":"Pier Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Pier Map","text":"Shaped Pier Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Pit Map","text":"Pit Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Pit Map","text":"Shaped Pit Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Plateau Map","text":"Plateau Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Plaza Map","text":"Plaza Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Precinct Map","text":"Precinct Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Primordial Pool Map","text":"Primordial Pool Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Primordial Pool Map","text":"Shaped Primordial Pool Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Promenade Map","text":"Promenade Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Promenade Map","text":"Shaped Promenade Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Geode Map","text":"Geode Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Geode Map","text":"Shaped Geode Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Port Map","text":"Port Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Port Map","text":"Shaped Port Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Racecourse Map","text":"Racecourse Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Racecourse Map","text":"Shaped Racecourse Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Ramparts Map","text":"Ramparts Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Ramparts Map","text":"Shaped Ramparts Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Reef Map","text":"Reef Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Reef Map","text":"Shaped Reef Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Residence Map","text":"Residence Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Scriptorium Map","text":"Scriptorium Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Toxic Sewer Map","text":"Toxic Sewer Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Toxic Sewer Map","text":"Shaped Toxic Sewer Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shipyard Map","text":"Shipyard Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shore Map","text":"Shore Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Shore Map","text":"Shaped Shore Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shrine Map","text":"Shrine Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Spider Forest Map","text":"Spider Forest Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Spider Forest Map","text":"Shaped Spider Forest Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Spider Lair Map","text":"Spider Lair Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Spider Lair Map","text":"Shaped Spider Lair Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Fungal Hollow Map","text":"Fungal Hollow Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Strand Map","text":"Strand Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Strand Map","text":"Shaped Strand Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Leyline Map","text":"Leyline Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Temple Map","text":"Temple Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Temple Map","text":"Shaped Temple Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Gardens Map","text":"Gardens Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Gardens Map","text":"Shaped Gardens Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Thicket Map","text":"Thicket Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Thicket Map","text":"Shaped Thicket Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Primordial Blocks Map","text":"Primordial Blocks Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Tower Map","text":"Tower Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Tower Map","text":"Shaped Tower Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Tropical Island Map","text":"Tropical Island Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Tropical Island Map","text":"Shaped Tropical Island Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Underground River Map","text":"Underground River Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Underground River Map","text":"Shaped Underground River Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Underground Sea Map","text":"Underground Sea Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Ancient City Map","text":"Ancient City Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Ancient City Map","text":"Shaped Ancient City Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Pyramid Map","text":"Vaal Pyramid Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Vaal Pyramid Map","text":"Shaped Vaal Pyramid Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Temple Map","text":"Vaal Temple Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Vault Map","text":"Vault Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Villa Map","text":"Villa Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Villa Map","text":"Shaped Villa Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Volcano Map","text":"Volcano Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Wasteland Map","text":"Wasteland Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Waste Pool Map","text":"Waste Pool Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Waste Pool Map","text":"Shaped Waste Pool Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Waterways Map","text":"Waterways Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Wharf Map","text":"Wharf Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"type":"Shaped Wharf Map","text":"Shaped Wharf Map (Atlas of Worlds)","flags":{"prophecy":false,"unique":false}},{"name":"Acton\u0027s Nightmare","type":"Overgrown Shrine Map","text":"Acton\u0027s Nightmare Overgrown Shrine Map (The Awakening)","flags":{"prophecy":false,"unique":true}},{"name":"Caer Blaidd, Wolfpack\u0027s Den","type":"Underground River Map","text":"Caer Blaidd, Wolfpack\u0027s Den Underground River Map (The Awakening)","flags":{"prophecy":false,"unique":true}},{"name":"Death and Taxes","type":"Necropolis Map","text":"Death and Taxes Necropolis Map (The Awakening)","flags":{"prophecy":false,"unique":true}},{"name":"Hall of Grandmasters","type":"Promenade Map","text":"Hall of Grandmasters Promenade Map (The Awakening)","flags":{"prophecy":false,"unique":true}},{"name":"Maelstr\u00F6m of Chaos","type":"Atoll Map","text":"Maelstr\u00F6m of Chaos Atoll Map (The Awakening)","flags":{"prophecy":false,"unique":true}},{"name":"Mao Kun","type":"Reef Map","text":"Mao Kun Reef Map (The Awakening)","flags":{"prophecy":false,"unique":true}},{"name":"Oba\u0027s Cursed Trove","type":"Primordial Blocks Map","text":"Oba\u0027s Cursed Trove Primordial Blocks Map (The Awakening)","flags":{"prophecy":false,"unique":true}},{"name":"Olmec\u0027s Sanctum","type":"Bone Crypt Map","text":"Olmec\u0027s Sanctum Bone Crypt Map (The Awakening)","flags":{"prophecy":false,"unique":true}},{"name":"Poorjoy\u0027s Asylum","type":"Temple Map","text":"Poorjoy\u0027s Asylum Temple Map (The Awakening)","flags":{"prophecy":false,"unique":true}},{"name":"The Coward\u0027s Trial","type":"Cursed Crypt Map","text":"The Coward\u0027s Trial Cursed Crypt Map (The Awakening)","flags":{"prophecy":false,"unique":true}},{"name":"The Perandus Manor","type":"Chateau Map","text":"The Perandus Manor Chateau Map (The Awakening)","flags":{"prophecy":false,"unique":true}},{"name":"The Vinktar Square","type":"Courtyard Map","text":"The Vinktar Square Courtyard Map (The Awakening)","flags":{"prophecy":false,"unique":true}},{"name":"Vaults of Atziri","type":"Vaal Pyramid Map","text":"Vaults of Atziri Vaal Pyramid Map (The Awakening)","flags":{"prophecy":false,"unique":true}},{"name":"Whakawairua Tuahu","type":"Strand Map","text":"Whakawairua Tuahu Strand Map (The Awakening)","flags":{"prophecy":false,"unique":true}},{"type":"Necropolis Map","text":"Necropolis Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Plateau Map","text":"Plateau Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Bazaar Map","text":"Bazaar Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Volcano Map","text":"Volcano Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Chateau Map","text":"Chateau Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Cursed Crypt Map","text":"Cursed Crypt Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Lava Chamber Map","text":"Lava Chamber Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Precinct Map","text":"Precinct Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Academy Map","text":"Academy Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Fungal Hollow Map","text":"Fungal Hollow Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Dungeon Map","text":"Dungeon Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Shipyard Map","text":"Shipyard Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Overgrown Ruin Map","text":"Overgrown Ruin Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Castle Ruins Map","text":"Castle Ruins Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Arsenal Map","text":"Arsenal Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Grotto Map","text":"Grotto Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Wasteland Map","text":"Wasteland Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Courtyard Map","text":"Courtyard Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Excavation Map","text":"Excavation Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Waterways Map","text":"Waterways Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Dunes Map","text":"Dunes Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Palace Map","text":"Palace Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Shrine Map","text":"Shrine Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Maze Map","text":"Maze Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Temple Map","text":"Vaal Temple Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Plaza Map","text":"Plaza Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Pit Map","text":"Pit Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Core Map","text":"Core Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Caldera Map","text":"Caldera Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Colosseum Map","text":"Colosseum Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Tropical Island Map","text":"Tropical Island Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Desert Map","text":"Desert Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Toxic Sewer Map","text":"Toxic Sewer Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Channel Map","text":"Channel Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Thicket Map","text":"Thicket Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Atoll Map","text":"Atoll Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Cemetery Map","text":"Cemetery Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Arcade Map","text":"Arcade Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Wharf Map","text":"Wharf Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Ghetto Map","text":"Ghetto Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Spider Lair Map","text":"Spider Lair Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Pyramid Map","text":"Vaal Pyramid Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Reef Map","text":"Reef Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Geode Map","text":"Geode Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Mud Geyser Map","text":"Mud Geyser Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Museum Map","text":"Museum Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Arena Map","text":"Arena Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Overgrown Shrine Map","text":"Overgrown Shrine Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Crystal Ore Map","text":"Crystal Ore Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Shore Map","text":"Shore Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Spider Forest Map","text":"Spider Forest Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Promenade Map","text":"Promenade Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Phantasmagoria Map","text":"Phantasmagoria Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Underground River Map","text":"Underground River Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Pier Map","text":"Pier Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Bog Map","text":"Bog Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Graveyard Map","text":"Graveyard Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Coves Map","text":"Coves Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Villa Map","text":"Villa Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Temple Map","text":"Temple Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Arachnid Nest Map","text":"Arachnid Nest Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Strand Map","text":"Strand Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Ashen Wood Map","text":"Ashen Wood Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Colonnade Map","text":"Colonnade Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Bone Crypt Map","text":"Bone Crypt Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Primordial Blocks Map","text":"Primordial Blocks Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Waste Pool Map","text":"Waste Pool Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Flooded Mine Map","text":"Flooded Mine Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Jungle Valley Map","text":"Jungle Valley Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Gardens Map","text":"Gardens Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Cells Map","text":"Cells Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Canyon Map","text":"Canyon Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Dark Forest Map","text":"Dark Forest Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Peninsula Map","text":"Peninsula Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Orchard Map","text":"Orchard Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Underground Sea Map","text":"Underground Sea Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Arid Lake Map","text":"Arid Lake Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Glacier Map","text":"Glacier Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Residence Map","text":"Residence Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"type":"Malformation Map","text":"Malformation Map (The Awakening)","flags":{"prophecy":false,"unique":false}},{"name":"Acton\u0027s Nightmare","type":"Overgrown Shrine Map","text":"Acton\u0027s Nightmare Overgrown Shrine Map (Legacy)","flags":{"prophecy":false,"unique":true}},{"name":"Death and Taxes","type":"Necropolis Map","text":"Death and Taxes Necropolis Map (Legacy)","flags":{"prophecy":false,"unique":true}},{"name":"Hall of Grandmasters","type":"Promenade Map","text":"Hall of Grandmasters Promenade Map (Legacy)","flags":{"prophecy":false,"unique":true}},{"name":"Maelstr\u00F6m of Chaos","type":"Atoll Map","text":"Maelstr\u00F6m of Chaos Atoll Map (Legacy)","flags":{"prophecy":false,"unique":true}},{"name":"Mao Kun","type":"Reef Map","text":"Mao Kun Reef Map (Legacy)","flags":{"prophecy":false,"unique":true}},{"name":"Oba\u0027s Cursed Trove","type":"Primordial Blocks Map","text":"Oba\u0027s Cursed Trove Primordial Blocks Map (Legacy)","flags":{"prophecy":false,"unique":true}},{"name":"Olmec\u0027s Sanctum","type":"Maze Map","text":"Olmec\u0027s Sanctum Maze Map (Legacy)","flags":{"prophecy":false,"unique":true}},{"name":"Poorjoy\u0027s Asylum","type":"Temple Map","text":"Poorjoy\u0027s Asylum Temple Map (Legacy)","flags":{"prophecy":false,"unique":true}},{"name":"The Coward\u0027s Trial","type":"Cursed Crypt Map","text":"The Coward\u0027s Trial Cursed Crypt Map (Legacy)","flags":{"prophecy":false,"unique":true}},{"name":"Vaults of Atziri","type":"Vaal Pyramid Map","text":"Vaults of Atziri Vaal Pyramid Map (Legacy)","flags":{"prophecy":false,"unique":true}},{"name":"Whakawairua Tuahu","type":"Strand Map","text":"Whakawairua Tuahu Strand Map (Legacy)","flags":{"prophecy":false,"unique":true}},{"type":"Necropolis Map","text":"Necropolis Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Plateau Map","text":"Plateau Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Bazaar Map","text":"Bazaar Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Cursed Crypt Map","text":"Cursed Crypt Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Lava Chamber Map","text":"Lava Chamber Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Precinct Map","text":"Precinct Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Academy Map","text":"Academy Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Dungeon Map","text":"Dungeon Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Shipyard Map","text":"Shipyard Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Shrine Map","text":"Shrine Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Grotto Map","text":"Grotto Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Palace Map","text":"Palace Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Courtyard Map","text":"Courtyard Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Overgrown Ruin Map","text":"Overgrown Ruin Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Temple Map","text":"Vaal Temple Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Dunes Map","text":"Dunes Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Arid Lake Map","text":"Arid Lake Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Tropical Island Map","text":"Tropical Island Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Orchard Map","text":"Orchard Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Wharf Map","text":"Wharf Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Arsenal Map","text":"Arsenal Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Thicket Map","text":"Thicket Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Atoll Map","text":"Atoll Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Cemetery Map","text":"Cemetery Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Toxic Sewer Map","text":"Toxic Sewer Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Arcade Map","text":"Arcade Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Ghetto Map","text":"Ghetto Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Spider Lair Map","text":"Spider Lair Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Pyramid Map","text":"Vaal Pyramid Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Reef Map","text":"Reef Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Fungal Hollow Map","text":"Fungal Hollow Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Mud Geyser Map","text":"Mud Geyser Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Museum Map","text":"Museum Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Bone Crypt Map","text":"Bone Crypt Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Overgrown Shrine Map","text":"Overgrown Shrine Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Crystal Ore Map","text":"Crystal Ore Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Shore Map","text":"Shore Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Spider Forest Map","text":"Spider Forest Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Promenade Map","text":"Promenade Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Underground River Map","text":"Underground River Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Pier Map","text":"Pier Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Bog Map","text":"Bog Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Graveyard Map","text":"Graveyard Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Coves Map","text":"Coves Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Villa Map","text":"Villa Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Temple Map","text":"Temple Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Arachnid Nest Map","text":"Arachnid Nest Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Strand Map","text":"Strand Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Ashen Wood Map","text":"Ashen Wood Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Colonnade Map","text":"Colonnade Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Primordial Blocks Map","text":"Primordial Blocks Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Waste Pool Map","text":"Waste Pool Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Flooded Mine Map","text":"Flooded Mine Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Jungle Valley Map","text":"Jungle Valley Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Gardens Map","text":"Gardens Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Cells Map","text":"Cells Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Canyon Map","text":"Canyon Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Dark Forest Map","text":"Dark Forest Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Peninsula Map","text":"Peninsula Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Underground Sea Map","text":"Underground Sea Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Maze Map","text":"Maze Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Glacier Map","text":"Glacier Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Residence Map","text":"Residence Map (Legacy)","flags":{"prophecy":false,"unique":false}},{"type":"Offering to the Goddess","text":"Offering to the Goddess","flags":{"prophecy":false,"unique":false}},{"type":"Timeworn Reliquary Key","text":"Timeworn Reliquary Key","flags":{"prophecy":false,"unique":false}},{"type":"Chayula\u0027s Breachstone","text":"Chayula\u0027s Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Tul\u0027s Breachstone","text":"Tul\u0027s Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Xoph\u0027s Breachstone","text":"Xoph\u0027s Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Esh\u0027s Breachstone","text":"Esh\u0027s Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Uul-Netol\u0027s Breachstone","text":"Uul-Netol\u0027s Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Ancient Reliquary Key","text":"Ancient Reliquary Key","flags":{"prophecy":false,"unique":false}},{"type":"Simulacrum","text":"Simulacrum","flags":{"prophecy":false,"unique":false}},{"type":"Chayula\u0027s Charged Breachstone","text":"Chayula\u0027s Charged Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Chayula\u0027s Enriched Breachstone","text":"Chayula\u0027s Enriched Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Chayula\u0027s Pure Breachstone","text":"Chayula\u0027s Pure Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Tul\u0027s Charged Breachstone","text":"Tul\u0027s Charged Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Tul\u0027s Enriched Breachstone","text":"Tul\u0027s Enriched Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Tul\u0027s Pure Breachstone","text":"Tul\u0027s Pure Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Xoph\u0027s Charged Breachstone","text":"Xoph\u0027s Charged Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Xoph\u0027s Enriched Breachstone","text":"Xoph\u0027s Enriched Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Xoph\u0027s Pure Breachstone","text":"Xoph\u0027s Pure Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Esh\u0027s Charged Breachstone","text":"Esh\u0027s Charged Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Esh\u0027s Enriched Breachstone","text":"Esh\u0027s Enriched Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Esh\u0027s Pure Breachstone","text":"Esh\u0027s Pure Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Uul-Netol\u0027s Charged Breachstone","text":"Uul-Netol\u0027s Charged Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Uul-Netol\u0027s Enriched Breachstone","text":"Uul-Netol\u0027s Enriched Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Uul-Netol\u0027s Pure Breachstone","text":"Uul-Netol\u0027s Pure Breachstone","flags":{"prophecy":false,"unique":false}},{"type":"Fragment of Enslavement","text":"Fragment of Enslavement","flags":{"prophecy":false,"unique":false}},{"type":"Fragment of Eradication","text":"Fragment of Eradication","flags":{"prophecy":false,"unique":false}},{"type":"Fragment of Constriction","text":"Fragment of Constriction","flags":{"prophecy":false,"unique":false}},{"type":"Fragment of Purification","text":"Fragment of Purification","flags":{"prophecy":false,"unique":false}},{"type":"Divine Vessel","text":"Divine Vessel","flags":{"prophecy":false,"unique":false}},{"type":"Timeless Eternal Emblem","text":"Timeless Eternal Emblem","flags":{"prophecy":false,"unique":false}},{"type":"Timeless Karui Emblem","text":"Timeless Karui Emblem","flags":{"prophecy":false,"unique":false}},{"type":"Timeless Maraketh Emblem","text":"Timeless Maraketh Emblem","flags":{"prophecy":false,"unique":false}},{"type":"Timeless Templar Emblem","text":"Timeless Templar Emblem","flags":{"prophecy":false,"unique":false}},{"type":"Timeless Vaal Emblem","text":"Timeless Vaal Emblem","flags":{"prophecy":false,"unique":false}},{"type":"Eber\u0027s Key","text":"Eber\u0027s Key","flags":{"prophecy":false,"unique":false}},{"type":"Yriel\u0027s Key","text":"Yriel\u0027s Key","flags":{"prophecy":false,"unique":false}},{"type":"Inya\u0027s Key","text":"Inya\u0027s Key","flags":{"prophecy":false,"unique":false}},{"type":"Volkuur\u0027s Key","text":"Volkuur\u0027s Key","flags":{"prophecy":false,"unique":false}},{"type":"Fragment of the Phoenix","text":"Fragment of the Phoenix","flags":{"prophecy":false,"unique":false}},{"type":"Fragment of the Minotaur","text":"Fragment of the Minotaur","flags":{"prophecy":false,"unique":false}},{"type":"Fragment of the Chimera","text":"Fragment of the Chimera","flags":{"prophecy":false,"unique":false}},{"type":"Fragment of the Hydra","text":"Fragment of the Hydra","flags":{"prophecy":false,"unique":false}},{"type":"Fragment of Terror","text":"Fragment of Terror","flags":{"prophecy":false,"unique":false}},{"type":"Fragment of Emptiness","text":"Fragment of Emptiness","flags":{"prophecy":false,"unique":false}},{"type":"Fragment of Shape","text":"Fragment of Shape","flags":{"prophecy":false,"unique":false}},{"type":"Fragment of Knowledge","text":"Fragment of Knowledge","flags":{"prophecy":false,"unique":false}},{"type":"Sacrifice at Midnight","text":"Sacrifice at Midnight","flags":{"prophecy":false,"unique":false}},{"type":"Sacrifice at Dawn","text":"Sacrifice at Dawn","flags":{"prophecy":false,"unique":false}},{"type":"Sacrifice at Noon","text":"Sacrifice at Noon","flags":{"prophecy":false,"unique":false}},{"type":"Sacrifice at Dusk","text":"Sacrifice at Dusk","flags":{"prophecy":false,"unique":false}},{"type":"Mortal Rage","text":"Mortal Rage","flags":{"prophecy":false,"unique":false}},{"type":"Mortal Hope","text":"Mortal Hope","flags":{"prophecy":false,"unique":false}},{"type":"Mortal Ignorance","text":"Mortal Ignorance","flags":{"prophecy":false,"unique":false}},{"type":"Mortal Grief","text":"Mortal Grief","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Bestiary Scarab","text":"Rusted Bestiary Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Polished Bestiary Scarab","text":"Polished Bestiary Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Bestiary Scarab","text":"Gilded Bestiary Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Breach Scarab","text":"Rusted Breach Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Polished Breach Scarab","text":"Polished Breach Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Breach Scarab","text":"Gilded Breach Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Divination Scarab","text":"Rusted Divination Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Polished Divination Scarab","text":"Polished Divination Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Divination Scarab","text":"Gilded Divination Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Elder Scarab","text":"Rusted Elder Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Polished Elder Scarab","text":"Polished Elder Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Elder Scarab","text":"Gilded Elder Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Harbinger Scarab","text":"Rusted Harbinger Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Polished Harbinger Scarab","text":"Polished Harbinger Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Harbinger Scarab","text":"Gilded Harbinger Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Legion Scarab","text":"Rusted Legion Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Polished Legion Scarab","text":"Polished Legion Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Legion Scarab","text":"Gilded Legion Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Cartography Scarab","text":"Rusted Cartography Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Polished Cartography Scarab","text":"Polished Cartography Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Cartography Scarab","text":"Gilded Cartography Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Metamorph Scarab","text":"Rusted Metamorph Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Polished Metamorph Scarab","text":"Polished Metamorph Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Metamorph Scarab","text":"Gilded Metamorph Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Perandus Scarab","text":"Rusted Perandus Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Polished Perandus Scarab","text":"Polished Perandus Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Perandus Scarab","text":"Gilded Perandus Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Shaper Scarab","text":"Rusted Shaper Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Polished Shaper Scarab","text":"Polished Shaper Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Shaper Scarab","text":"Gilded Shaper Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Ambush Scarab","text":"Rusted Ambush Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Polished Ambush Scarab","text":"Polished Ambush Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Ambush Scarab","text":"Gilded Ambush Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Sulphite Scarab","text":"Rusted Sulphite Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Polished Sulphite Scarab","text":"Polished Sulphite Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Sulphite Scarab","text":"Gilded Sulphite Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Torment Scarab","text":"Rusted Torment Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Polished Torment Scarab","text":"Polished Torment Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Torment Scarab","text":"Gilded Torment Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Reliquary Scarab","text":"Rusted Reliquary Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Polished Reliquary Scarab","text":"Polished Reliquary Scarab","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Reliquary Scarab","text":"Gilded Reliquary Scarab","flags":{"prophecy":false,"unique":false}}]},{"label":"Weapons","entries":[{"name":"Abberath\u0027s Horn","type":"Goat\u0027s Horn","text":"Abberath\u0027s Horn Goat\u0027s Horn","flags":{"prophecy":false,"unique":true}},{"name":"Advancing Fortress","type":"Gut Ripper","text":"Advancing Fortress Gut Ripper","flags":{"prophecy":false,"unique":true}},{"name":"Agnerod","type":"Imperial Staff","text":"Agnerod Imperial Staff","flags":{"prophecy":false,"unique":true}},{"name":"Agnerod East","type":"Imperial Staff","text":"Agnerod East Imperial Staff","flags":{"prophecy":false,"unique":true}},{"name":"Agnerod North","type":"Imperial Staff","text":"Agnerod North Imperial Staff","flags":{"prophecy":false,"unique":true}},{"name":"Agnerod South","type":"Imperial Staff","text":"Agnerod South Imperial Staff","flags":{"prophecy":false,"unique":true}},{"name":"Agnerod West","type":"Imperial Staff","text":"Agnerod West Imperial Staff","flags":{"prophecy":false,"unique":true}},{"name":"Ahn\u0027s Might","type":"Midnight Blade","text":"Ahn\u0027s Might Midnight Blade","flags":{"prophecy":false,"unique":true}},{"name":"Al Dhih","type":"Timeworn Claw","text":"Al Dhih Timeworn Claw","flags":{"prophecy":false,"unique":true}},{"name":"Allure","type":"Vaal Claw","text":"Allure Vaal Claw","flags":{"prophecy":false,"unique":true}},{"name":"Amplification Rod","type":"Spiraled Wand","text":"Amplification Rod Spiraled Wand","flags":{"prophecy":false,"unique":true}},{"name":"Apep\u0027s Rage","type":"Opal Wand","text":"Apep\u0027s Rage Opal Wand","flags":{"prophecy":false,"unique":true}},{"name":"Arakaali\u0027s Fang","type":"Fiend Dagger","text":"Arakaali\u0027s Fang Fiend Dagger","flags":{"prophecy":false,"unique":true}},{"name":"Arborix","type":"Assassin Bow","text":"Arborix Assassin Bow","flags":{"prophecy":false,"unique":true}},{"name":"Ashcaller","type":"Quartz Wand","text":"Ashcaller Quartz Wand","flags":{"prophecy":false,"unique":true}},{"name":"Atziri\u0027s Disfavour","type":"Vaal Axe","text":"Atziri\u0027s Disfavour Vaal Axe","flags":{"prophecy":false,"unique":true}},{"name":"Augyre","type":"Void Sceptre","text":"Augyre Void Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Aurumvorax","type":"Basket Rapier","text":"Aurumvorax Basket Rapier","flags":{"prophecy":false,"unique":true}},{"name":"Axiom Perpetuum","type":"Bronze Sceptre","text":"Axiom Perpetuum Bronze Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Balefire","type":"Opal Sceptre","text":"Balefire Opal Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Beltimber Blade","type":"Eternal Sword","text":"Beltimber Blade Eternal Sword","flags":{"prophecy":false,"unique":true}},{"name":"Bino\u0027s Kitchen Knife","type":"Slaughter Knife","text":"Bino\u0027s Kitchen Knife Slaughter Knife","flags":{"prophecy":false,"unique":true}},{"name":"Bitterdream","type":"Shadow Sceptre","text":"Bitterdream Shadow Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Bloodplay","type":"Stiletto","text":"Bloodplay Stiletto","flags":{"prophecy":false,"unique":true}},{"name":"Bloodseeker","type":"Hellion\u0027s Paw","text":"Bloodseeker Hellion\u0027s Paw","flags":{"prophecy":false,"unique":true}},{"name":"Brain Rattler","type":"Meatgrinder","text":"Brain Rattler Meatgrinder","flags":{"prophecy":false,"unique":true}},{"name":"Breath of the Council","type":"Carnal Sceptre","text":"Breath of the Council Carnal Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Brightbeak","type":"War Hammer","text":"Brightbeak War Hammer","flags":{"prophecy":false,"unique":true}},{"name":"Brutus\u0027 Lead Sprinkler","type":"Ritual Sceptre","text":"Brutus\u0027 Lead Sprinkler Ritual Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Callinellus Malleus","type":"Auric Mace","text":"Callinellus Malleus Auric Mace","flags":{"prophecy":false,"unique":true}},{"name":"Cameria\u0027s Avarice","type":"Gavel","text":"Cameria\u0027s Avarice Gavel","flags":{"prophecy":false,"unique":true}},{"name":"Cameria\u0027s Maul","type":"Gavel","text":"Cameria\u0027s Maul Gavel","flags":{"prophecy":false,"unique":true}},{"name":"Cane of Unravelling","type":"Ezomyte Staff","text":"Cane of Unravelling Ezomyte Staff","flags":{"prophecy":false,"unique":true}},{"name":"Cerberus Limb","type":"Blood Sceptre","text":"Cerberus Limb Blood Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Chaber Cairn","type":"Great Mallet","text":"Chaber Cairn Great Mallet","flags":{"prophecy":false,"unique":true}},{"name":"Chin Sol","type":"Assassin Bow","text":"Chin Sol Assassin Bow","flags":{"prophecy":false,"unique":true}},{"name":"Chitus\u0027 Needle","type":"Elegant Foil","text":"Chitus\u0027 Needle Elegant Foil","flags":{"prophecy":false,"unique":true}},{"name":"Chober Chaber","type":"Great Mallet","text":"Chober Chaber Great Mallet","flags":{"prophecy":false,"unique":true}},{"name":"Clayshaper","type":"Rock Breaker","text":"Clayshaper Rock Breaker","flags":{"prophecy":false,"unique":true}},{"name":"Cold Iron Point","type":"Ezomyte Dagger","text":"Cold Iron Point Ezomyte Dagger","flags":{"prophecy":false,"unique":true}},{"name":"Corona Solaris","type":"Crystal Wand","text":"Corona Solaris Crystal Wand","flags":{"prophecy":false,"unique":true}},{"name":"Cospri\u0027s Malice","type":"Jewelled Foil","text":"Cospri\u0027s Malice Jewelled Foil","flags":{"prophecy":false,"unique":true}},{"name":"Cybil\u0027s Paw","type":"Thresher Claw","text":"Cybil\u0027s Paw Thresher Claw","flags":{"prophecy":false,"unique":true}},{"name":"Daresso\u0027s Passion","type":"Estoc","text":"Daresso\u0027s Passion Estoc","flags":{"prophecy":false,"unique":true}},{"name":"Darkscorn","type":"Assassin Bow","text":"Darkscorn Assassin Bow","flags":{"prophecy":false,"unique":true}},{"name":"Death\u0027s Hand","type":"Karui Sceptre","text":"Death\u0027s Hand Karui Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Death\u0027s Harp","type":"Death Bow","text":"Death\u0027s Harp Death Bow","flags":{"prophecy":false,"unique":true}},{"name":"Death\u0027s Opus","type":"Death Bow","text":"Death\u0027s Opus Death Bow","flags":{"prophecy":false,"unique":true}},{"name":"Debeon\u0027s Dirge","type":"Despot Axe","text":"Debeon\u0027s Dirge Despot Axe","flags":{"prophecy":false,"unique":true}},{"name":"Disintegrator","type":"Maelstr\u00F6m Staff","text":"Disintegrator Maelstr\u00F6m Staff","flags":{"prophecy":false,"unique":true}},{"name":"Divinarius","type":"Imperial Skean","text":"Divinarius Imperial Skean","flags":{"prophecy":false,"unique":true}},{"name":"Doomfletch","type":"Royal Bow","text":"Doomfletch Royal Bow","flags":{"prophecy":false,"unique":true}},{"name":"Doomfletch\u0027s Prism","type":"Royal Bow","text":"Doomfletch\u0027s Prism Royal Bow","flags":{"prophecy":false,"unique":true}},{"name":"Doomsower","type":"Lion Sword","text":"Doomsower Lion Sword","flags":{"prophecy":false,"unique":true}},{"name":"Doon Cuebiyari","type":"Vaal Sceptre","text":"Doon Cuebiyari Vaal Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Doryani\u0027s Catalyst","type":"Vaal Sceptre","text":"Doryani\u0027s Catalyst Vaal Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Dreadarc","type":"Cleaver","text":"Dreadarc Cleaver","flags":{"prophecy":false,"unique":true}},{"name":"Dreadbeak","type":"Rusted Sword","text":"Dreadbeak Rusted Sword","flags":{"prophecy":false,"unique":true}},{"name":"Dreadsurge","type":"Cleaver","text":"Dreadsurge Cleaver","flags":{"prophecy":false,"unique":true}},{"name":"Dreamfeather","type":"Eternal Sword","text":"Dreamfeather Eternal Sword","flags":{"prophecy":false,"unique":true}},{"name":"Duskdawn","type":"Maelstr\u00F6m Staff","text":"Duskdawn Maelstr\u00F6m Staff","flags":{"prophecy":false,"unique":true}},{"name":"Dyadus","type":"Infernal Axe","text":"Dyadus Infernal Axe","flags":{"prophecy":false,"unique":true}},{"name":"Dying Breath","type":"Iron Staff","text":"Dying Breath Iron Staff","flags":{"prophecy":false,"unique":true}},{"name":"Dying Breath","type":"Coiled Staff","text":"Dying Breath Coiled Staff","flags":{"prophecy":false,"unique":true}},{"name":"Earendel\u0027s Embrace","type":"Grinning Fetish","text":"Earendel\u0027s Embrace Grinning Fetish","flags":{"prophecy":false,"unique":true}},{"name":"Eclipse Solaris","type":"Crystal Wand","text":"Eclipse Solaris Crystal Wand","flags":{"prophecy":false,"unique":true}},{"name":"Edge of Madness","type":"Etched Greatsword","text":"Edge of Madness Etched Greatsword","flags":{"prophecy":false,"unique":true}},{"name":"Ephemeral Edge","type":"Dusk Blade","text":"Ephemeral Edge Dusk Blade","flags":{"prophecy":false,"unique":true}},{"name":"Essentia Sanguis","type":"Eye Gouger","text":"Essentia Sanguis Eye Gouger","flags":{"prophecy":false,"unique":true}},{"name":"Essentia Sanguis","type":"Vaal Claw","text":"Essentia Sanguis Vaal Claw","flags":{"prophecy":false,"unique":true}},{"name":"Ewar\u0027s Mirage","type":"Antique Rapier","text":"Ewar\u0027s Mirage Antique Rapier","flags":{"prophecy":false,"unique":true}},{"name":"Fate of the Vaal","type":"Gemstone Sword","text":"Fate of the Vaal Gemstone Sword","flags":{"prophecy":false,"unique":true}},{"name":"Femurs of the Saints","type":"Primordial Staff","text":"Femurs of the Saints Primordial Staff","flags":{"prophecy":false,"unique":true}},{"name":"Fencoil","type":"Gnarled Branch","text":"Fencoil Gnarled Branch","flags":{"prophecy":false,"unique":true}},{"name":"Fidelitas\u0027 Spike","type":"Jagged Foil","text":"Fidelitas\u0027 Spike Jagged Foil","flags":{"prophecy":false,"unique":true}},{"name":"Flesh-Eater","type":"Dream Mace","text":"Flesh-Eater Dream Mace","flags":{"prophecy":false,"unique":true}},{"name":"Frostbreath","type":"Ornate Mace","text":"Frostbreath Ornate Mace","flags":{"prophecy":false,"unique":true}},{"name":"Geofri\u0027s Baptism","type":"Brass Maul","text":"Geofri\u0027s Baptism Brass Maul","flags":{"prophecy":false,"unique":true}},{"name":"Geofri\u0027s Devotion","type":"Brass Maul","text":"Geofri\u0027s Devotion Brass Maul","flags":{"prophecy":false,"unique":true}},{"name":"Gorebreaker","type":"Spiked Club","text":"Gorebreaker Spiked Club","flags":{"prophecy":false,"unique":true}},{"name":"Goredrill","type":"Skinning Knife","text":"Goredrill Skinning Knife","flags":{"prophecy":false,"unique":true}},{"name":"Grelwood Shank","type":"Eternal Sword","text":"Grelwood Shank Eternal Sword","flags":{"prophecy":false,"unique":true}},{"name":"Hand of Thought and Motion","type":"Blinder","text":"Hand of Thought and Motion Blinder","flags":{"prophecy":false,"unique":true}},{"name":"Hand of Wisdom and Action","type":"Imperial Claw","text":"Hand of Wisdom and Action Imperial Claw","flags":{"prophecy":false,"unique":true}},{"name":"Heartbreaker","type":"Royal Skean","text":"Heartbreaker Royal Skean","flags":{"prophecy":false,"unique":true}},{"name":"Hegemony\u0027s Era","type":"Judgement Staff","text":"Hegemony\u0027s Era Judgement Staff","flags":{"prophecy":false,"unique":true}},{"name":"Hezmana\u0027s Bloodlust","type":"Vaal Axe","text":"Hezmana\u0027s Bloodlust Vaal Axe","flags":{"prophecy":false,"unique":true}},{"name":"Hiltless","type":"Reaver Sword","text":"Hiltless Reaver Sword","flags":{"prophecy":false,"unique":true}},{"name":"Hopeshredder","type":"Ranger Bow","text":"Hopeshredder Ranger Bow","flags":{"prophecy":false,"unique":true}},{"name":"Hrimnor\u0027s Dirge","type":"Sledgehammer","text":"Hrimnor\u0027s Dirge Sledgehammer","flags":{"prophecy":false,"unique":true}},{"name":"Hrimnor\u0027s Hymn","type":"Sledgehammer","text":"Hrimnor\u0027s Hymn Sledgehammer","flags":{"prophecy":false,"unique":true}},{"name":"Hyaon\u0027s Fury","type":"Legion Sword","text":"Hyaon\u0027s Fury Legion Sword","flags":{"prophecy":false,"unique":true}},{"name":"Ichimonji","type":"Corsair Sword","text":"Ichimonji Corsair Sword","flags":{"prophecy":false,"unique":true}},{"name":"Infractem","type":"Decimation Bow","text":"Infractem Decimation Bow","flags":{"prophecy":false,"unique":true}},{"name":"Innsbury Edge","type":"Elder Sword","text":"Innsbury Edge Elder Sword","flags":{"prophecy":false,"unique":true}},{"name":"Iron Commander","type":"Death Bow","text":"Iron Commander Death Bow","flags":{"prophecy":false,"unique":true}},{"name":"Izaro\u0027s Dilemma","type":"Imperial Claw","text":"Izaro\u0027s Dilemma Imperial Claw","flags":{"prophecy":false,"unique":true}},{"name":"Jack, the Axe","type":"Vaal Hatchet","text":"Jack, the Axe Vaal Hatchet","flags":{"prophecy":false,"unique":true}},{"name":"Jorrhast\u0027s Blacksteel","type":"Steelhead","text":"Jorrhast\u0027s Blacksteel Steelhead","flags":{"prophecy":false,"unique":true}},{"name":"Kaom\u0027s Primacy","type":"Karui Chopper","text":"Kaom\u0027s Primacy Karui Chopper","flags":{"prophecy":false,"unique":true}},{"name":"Kingmaker","type":"Despot Axe","text":"Kingmaker Despot Axe","flags":{"prophecy":false,"unique":true}},{"name":"Kitava\u0027s Feast","type":"Void Axe","text":"Kitava\u0027s Feast Void Axe","flags":{"prophecy":false,"unique":true}},{"name":"Kondo\u0027s Pride","type":"Ezomyte Blade","text":"Kondo\u0027s Pride Ezomyte Blade","flags":{"prophecy":false,"unique":true}},{"name":"Kongor\u0027s Undying Rage","type":"Terror Maul","text":"Kongor\u0027s Undying Rage Terror Maul","flags":{"prophecy":false,"unique":true}},{"name":"Lakishu\u0027s Blade","type":"Elegant Sword","text":"Lakishu\u0027s Blade Elegant Sword","flags":{"prophecy":false,"unique":true}},{"name":"Last Resort","type":"Nailed Fist","text":"Last Resort Nailed Fist","flags":{"prophecy":false,"unique":true}},{"name":"Lavianga\u0027s Wisdom","type":"War Hammer","text":"Lavianga\u0027s Wisdom War Hammer","flags":{"prophecy":false,"unique":true}},{"name":"Lifesprig","type":"Driftwood Wand","text":"Lifesprig Driftwood Wand","flags":{"prophecy":false,"unique":true}},{"name":"Limbsplit","type":"Woodsplitter","text":"Limbsplit Woodsplitter","flags":{"prophecy":false,"unique":true}},{"name":"Lioneye\u0027s Glare","type":"Imperial Bow","text":"Lioneye\u0027s Glare Imperial Bow","flags":{"prophecy":false,"unique":true}},{"name":"Mark of the Doubting Knight","type":"Platinum Kris","text":"Mark of the Doubting Knight Platinum Kris","flags":{"prophecy":false,"unique":true}},{"name":"Marohi Erqi","type":"Karui Maul","text":"Marohi Erqi Karui Maul","flags":{"prophecy":false,"unique":true}},{"name":"Martyr of Innocence","type":"Highborn Staff","text":"Martyr of Innocence Highborn Staff","flags":{"prophecy":false,"unique":true}},{"name":"Midnight Bargain","type":"Engraved Wand","text":"Midnight Bargain Engraved Wand","flags":{"prophecy":false,"unique":true}},{"name":"Mightflay","type":"Flaying Knife","text":"Mightflay Flaying Knife","flags":{"prophecy":false,"unique":true}},{"name":"Mirebough","type":"Gnarled Branch","text":"Mirebough Gnarled Branch","flags":{"prophecy":false,"unique":true}},{"name":"Mj\u00F6lner","type":"Gavel","text":"Mj\u00F6lner Gavel","flags":{"prophecy":false,"unique":true}},{"name":"Mon\u0027tregul\u0027s Grasp","type":"Void Sceptre","text":"Mon\u0027tregul\u0027s Grasp Void Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Moonbender\u0027s Wing","type":"Tomahawk","text":"Moonbender\u0027s Wing Tomahawk","flags":{"prophecy":false,"unique":true}},{"name":"Moonsorrow","type":"Imbued Wand","text":"Moonsorrow Imbued Wand","flags":{"prophecy":false,"unique":true}},{"name":"Mortem Morsu","type":"Fright Claw","text":"Mortem Morsu Fright Claw","flags":{"prophecy":false,"unique":true}},{"name":"Nebulis","type":"Void Sceptre","text":"Nebulis Void Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Nebuloch","type":"Nightmare Mace","text":"Nebuloch Nightmare Mace","flags":{"prophecy":false,"unique":true}},{"name":"Ngamahu\u0027s Flame","type":"Abyssal Axe","text":"Ngamahu\u0027s Flame Abyssal Axe","flags":{"prophecy":false,"unique":true}},{"name":"Null\u0027s Inclination","type":"Ranger Bow","text":"Null\u0027s Inclination Ranger Bow","flags":{"prophecy":false,"unique":true}},{"name":"Nuro\u0027s Harp","type":"Harbinger Bow","text":"Nuro\u0027s Harp Harbinger Bow","flags":{"prophecy":false,"unique":true}},{"name":"Nycta\u0027s Lantern","type":"Crystal Sceptre","text":"Nycta\u0027s Lantern Crystal Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Obliteration","type":"Demon\u0027s Horn","text":"Obliteration Demon\u0027s Horn","flags":{"prophecy":false,"unique":true}},{"name":"Oni-Goroshi","type":"Charan\u0027s Sword","text":"Oni-Goroshi Charan\u0027s Sword","flags":{"prophecy":false,"unique":true}},{"name":"Ornament of the East","type":"Gut Ripper","text":"Ornament of the East Gut Ripper","flags":{"prophecy":false,"unique":true}},{"name":"Oro\u0027s Sacrifice","type":"Infernal Sword","text":"Oro\u0027s Sacrifice Infernal Sword","flags":{"prophecy":false,"unique":true}},{"name":"Panquetzaliztli","type":"Jagged Maul","text":"Panquetzaliztli Jagged Maul","flags":{"prophecy":false,"unique":true}},{"name":"Paradoxica","type":"Vaal Rapier","text":"Paradoxica Vaal Rapier","flags":{"prophecy":false,"unique":true}},{"name":"Pillar of the Caged God","type":"Long Staff","text":"Pillar of the Caged God Long Staff","flags":{"prophecy":false,"unique":true}},{"name":"Pillar of the Caged God","type":"Iron Staff","text":"Pillar of the Caged God Iron Staff","flags":{"prophecy":false,"unique":true}},{"name":"Piscator\u0027s Vigil","type":"Tornado Wand","text":"Piscator\u0027s Vigil Tornado Wand","flags":{"prophecy":false,"unique":true}},{"name":"Pledge of Hands","type":"Judgement Staff","text":"Pledge of Hands Judgement Staff","flags":{"prophecy":false,"unique":true}},{"name":"Prismatic Eclipse","type":"Twilight Blade","text":"Prismatic Eclipse Twilight Blade","flags":{"prophecy":false,"unique":true}},{"name":"Quecholli","type":"Jagged Maul","text":"Quecholli Jagged Maul","flags":{"prophecy":false,"unique":true}},{"name":"Queen\u0027s Decree","type":"Ornate Sword","text":"Queen\u0027s Decree Ornate Sword","flags":{"prophecy":false,"unique":true}},{"name":"Queen\u0027s Escape","type":"Ornate Sword","text":"Queen\u0027s Escape Ornate Sword","flags":{"prophecy":false,"unique":true}},{"name":"Quill Rain","type":"Short Bow","text":"Quill Rain Short Bow","flags":{"prophecy":false,"unique":true}},{"name":"Razor of the Seventh Sun","type":"Midnight Blade","text":"Razor of the Seventh Sun Midnight Blade","flags":{"prophecy":false,"unique":true}},{"name":"Reach of the Council","type":"Spine Bow","text":"Reach of the Council Spine Bow","flags":{"prophecy":false,"unique":true}},{"name":"Realm Ender","type":"Iron Staff","text":"Realm Ender Iron Staff","flags":{"prophecy":false,"unique":true}},{"name":"Realmshaper","type":"Iron Staff","text":"Realmshaper Iron Staff","flags":{"prophecy":false,"unique":true}},{"name":"Reaper\u0027s Pursuit","type":"Shadow Axe","text":"Reaper\u0027s Pursuit Shadow Axe","flags":{"prophecy":false,"unique":true}},{"name":"Rebuke of the Vaal","type":"Vaal Blade","text":"Rebuke of the Vaal Vaal Blade","flags":{"prophecy":false,"unique":true}},{"name":"Redbeak","type":"Rusted Sword","text":"Redbeak Rusted Sword","flags":{"prophecy":false,"unique":true}},{"name":"Reefbane","type":"Fishing Rod","text":"Reefbane Fishing Rod","flags":{"prophecy":false,"unique":true}},{"name":"Relentless Fury","type":"Decorative Axe","text":"Relentless Fury Decorative Axe","flags":{"prophecy":false,"unique":true}},{"name":"Reverberation Rod","type":"Spiraled Wand","text":"Reverberation Rod Spiraled Wand","flags":{"prophecy":false,"unique":true}},{"name":"Rigwald\u0027s Charge","type":"Highland Blade","text":"Rigwald\u0027s Charge Highland Blade","flags":{"prophecy":false,"unique":true}},{"name":"Rigwald\u0027s Command","type":"Midnight Blade","text":"Rigwald\u0027s Command Midnight Blade","flags":{"prophecy":false,"unique":true}},{"name":"Rigwald\u0027s Savagery","type":"Royal Axe","text":"Rigwald\u0027s Savagery Royal Axe","flags":{"prophecy":false,"unique":true}},{"name":"Rive","type":"Terror Claw","text":"Rive Terror Claw","flags":{"prophecy":false,"unique":true}},{"name":"Roth\u0027s Reach","type":"Recurve Bow","text":"Roth\u0027s Reach Recurve Bow","flags":{"prophecy":false,"unique":true}},{"name":"Sanguine Gambol","type":"Skinning Knife","text":"Sanguine Gambol Skinning Knife","flags":{"prophecy":false,"unique":true}},{"name":"Scaeva","type":"Gladius","text":"Scaeva Gladius","flags":{"prophecy":false,"unique":true}},{"name":"Severed in Sleep","type":"Cutlass","text":"Severed in Sleep Cutlass","flags":{"prophecy":false,"unique":true}},{"name":"Shade of Solaris","type":"Sage Wand","text":"Shade of Solaris Sage Wand","flags":{"prophecy":false,"unique":true}},{"name":"Shimmeron","type":"Tornado Wand","text":"Shimmeron Tornado Wand","flags":{"prophecy":false,"unique":true}},{"name":"Shiversting","type":"Bastard Sword","text":"Shiversting Bastard Sword","flags":{"prophecy":false,"unique":true}},{"name":"Sign of the Sin Eater","type":"Tyrant\u0027s Sekhem","text":"Sign of the Sin Eater Tyrant\u0027s Sekhem","flags":{"prophecy":false,"unique":true}},{"name":"Silverbough","type":"Crude Bow","text":"Silverbough Crude Bow","flags":{"prophecy":false,"unique":true}},{"name":"Silverbranch","type":"Crude Bow","text":"Silverbranch Crude Bow","flags":{"prophecy":false,"unique":true}},{"name":"Singularity","type":"Platinum Sceptre","text":"Singularity Platinum Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Sinvicta\u0027s Mettle","type":"Ezomyte Axe","text":"Sinvicta\u0027s Mettle Ezomyte Axe","flags":{"prophecy":false,"unique":true}},{"name":"Sire of Shards","type":"Serpentine Staff","text":"Sire of Shards Serpentine Staff","flags":{"prophecy":false,"unique":true}},{"name":"Slivertongue","type":"Harbinger Bow","text":"Slivertongue Harbinger Bow","flags":{"prophecy":false,"unique":true}},{"name":"Song of the Sirens","type":"Fishing Rod","text":"Song of the Sirens Fishing Rod","flags":{"prophecy":false,"unique":true}},{"name":"Soul Taker","type":"Siege Axe","text":"Soul Taker Siege Axe","flags":{"prophecy":false,"unique":true}},{"name":"Soulwrest","type":"Ezomyte Staff","text":"Soulwrest Ezomyte Staff","flags":{"prophecy":false,"unique":true}},{"name":"Spine of the First Claimant","type":"Iron Sceptre","text":"Spine of the First Claimant Iron Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"Starforge","type":"Infernal Sword","text":"Starforge Infernal Sword","flags":{"prophecy":false,"unique":true}},{"name":"Storm Cloud","type":"Long Bow","text":"Storm Cloud Long Bow","flags":{"prophecy":false,"unique":true}},{"name":"Storm Prison","type":"Carved Wand","text":"Storm Prison Carved Wand","flags":{"prophecy":false,"unique":true}},{"name":"Story of the Vaal","type":"Variscite Blade","text":"Story of the Vaal Variscite Blade","flags":{"prophecy":false,"unique":true}},{"name":"Taproot","type":"Ambusher","text":"Taproot Ambusher","flags":{"prophecy":false,"unique":true}},{"name":"Taryn\u0027s Shiver","type":"Maelstr\u00F6m Staff","text":"Taryn\u0027s Shiver Maelstr\u00F6m Staff","flags":{"prophecy":false,"unique":true}},{"name":"Terminus Est","type":"Tiger Sword","text":"Terminus Est Tiger Sword","flags":{"prophecy":false,"unique":true}},{"name":"The Black Cane","type":"Royal Sceptre","text":"The Black Cane Royal Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"The Blood Reaper","type":"Headsman Axe","text":"The Blood Reaper Headsman Axe","flags":{"prophecy":false,"unique":true}},{"name":"The Blood Thorn","type":"Gnarled Branch","text":"The Blood Thorn Gnarled Branch","flags":{"prophecy":false,"unique":true}},{"name":"The Cauteriser","type":"Woodsplitter","text":"The Cauteriser Woodsplitter","flags":{"prophecy":false,"unique":true}},{"name":"The Consuming Dark","type":"Fiend Dagger","text":"The Consuming Dark Fiend Dagger","flags":{"prophecy":false,"unique":true}},{"name":"The Crimson Storm","type":"Steelwood Bow","text":"The Crimson Storm Steelwood Bow","flags":{"prophecy":false,"unique":true}},{"name":"The Dancing Dervish","type":"Reaver Sword","text":"The Dancing Dervish Reaver Sword","flags":{"prophecy":false,"unique":true}},{"name":"The Dancing Duo","type":"Reaver Sword","text":"The Dancing Duo Reaver Sword","flags":{"prophecy":false,"unique":true}},{"name":"The Dark Seer","type":"Shadow Sceptre","text":"The Dark Seer Shadow Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"The Enmity Divine","type":"Imperial Staff","text":"The Enmity Divine Imperial Staff","flags":{"prophecy":false,"unique":true}},{"name":"The Goddess Bound","type":"Whalebone Rapier","text":"The Goddess Bound Whalebone Rapier","flags":{"prophecy":false,"unique":true}},{"name":"The Goddess Scorned","type":"Elegant Sword","text":"The Goddess Scorned Elegant Sword","flags":{"prophecy":false,"unique":true}},{"name":"The Goddess Unleashed","type":"Eternal Sword","text":"The Goddess Unleashed Eternal Sword","flags":{"prophecy":false,"unique":true}},{"name":"The Grey Spire","type":"Judgement Staff","text":"The Grey Spire Judgement Staff","flags":{"prophecy":false,"unique":true}},{"name":"The Gryphon","type":"Jade Hatchet","text":"The Gryphon Jade Hatchet","flags":{"prophecy":false,"unique":true}},{"name":"The Harvest","type":"Jasper Chopper","text":"The Harvest Jasper Chopper","flags":{"prophecy":false,"unique":true}},{"name":"The Poet\u0027s Pen","type":"Carved Wand","text":"The Poet\u0027s Pen Carved Wand","flags":{"prophecy":false,"unique":true}},{"name":"The Princess","type":"Sabre","text":"The Princess Sabre","flags":{"prophecy":false,"unique":true}},{"name":"The Rippling Thoughts","type":"Legion Sword","text":"The Rippling Thoughts Legion Sword","flags":{"prophecy":false,"unique":true}},{"name":"The Saviour","type":"Legion Sword","text":"The Saviour Legion Sword","flags":{"prophecy":false,"unique":true}},{"name":"The Scourge","type":"Terror Claw","text":"The Scourge Terror Claw","flags":{"prophecy":false,"unique":true}},{"name":"The Screaming Eagle","type":"Jade Hatchet","text":"The Screaming Eagle Jade Hatchet","flags":{"prophecy":false,"unique":true}},{"name":"The Searing Touch","type":"Lathi","text":"The Searing Touch Lathi","flags":{"prophecy":false,"unique":true}},{"name":"The Searing Touch","type":"Long Staff","text":"The Searing Touch Long Staff","flags":{"prophecy":false,"unique":true}},{"name":"The Stormheart","type":"Royal Staff","text":"The Stormheart Royal Staff","flags":{"prophecy":false,"unique":true}},{"name":"The Stormwall","type":"Royal Staff","text":"The Stormwall Royal Staff","flags":{"prophecy":false,"unique":true}},{"name":"The Supreme Truth","type":"Crystal Sceptre","text":"The Supreme Truth Crystal Sceptre","flags":{"prophecy":false,"unique":true}},{"name":"The Tempest","type":"Long Bow","text":"The Tempest Long Bow","flags":{"prophecy":false,"unique":true}},{"name":"The Tempestuous Steel","type":"War Sword","text":"The Tempestuous Steel War Sword","flags":{"prophecy":false,"unique":true}},{"name":"The Wasp Nest","type":"Throat Stabber","text":"The Wasp Nest Throat Stabber","flags":{"prophecy":false,"unique":true}},{"name":"The Whispering Ice","type":"Vile Staff","text":"The Whispering Ice Vile Staff","flags":{"prophecy":false,"unique":true}},{"name":"Tidebreaker","type":"Imperial Maul","text":"Tidebreaker Imperial Maul","flags":{"prophecy":false,"unique":true}},{"name":"Tipua Kaikohuru","type":"Whalebone Rapier","text":"Tipua Kaikohuru Whalebone Rapier","flags":{"prophecy":false,"unique":true}},{"name":"Touch of Anguish","type":"Imperial Claw","text":"Touch of Anguish Imperial Claw","flags":{"prophecy":false,"unique":true}},{"name":"Tremor Rod","type":"Military Staff","text":"Tremor Rod Military Staff","flags":{"prophecy":false,"unique":true}},{"name":"Trypanon","type":"Great Mallet","text":"Trypanon Great Mallet","flags":{"prophecy":false,"unique":true}},{"name":"Tulborn","type":"Spiraled Wand","text":"Tulborn Spiraled Wand","flags":{"prophecy":false,"unique":true}},{"name":"Tulfall","type":"Tornado Wand","text":"Tulfall Tornado Wand","flags":{"prophecy":false,"unique":true}},{"name":"Twyzel","type":"Sage Wand","text":"Twyzel Sage Wand","flags":{"prophecy":false,"unique":true}},{"name":"Ungil\u0027s Gauche","type":"Boot Knife","text":"Ungil\u0027s Gauche Boot Knife","flags":{"prophecy":false,"unique":true}},{"name":"United in Dream","type":"Cutlass","text":"United in Dream Cutlass","flags":{"prophecy":false,"unique":true}},{"name":"Uul-Netol\u0027s Embrace","type":"Vaal Axe","text":"Uul-Netol\u0027s Embrace Vaal Axe","flags":{"prophecy":false,"unique":true}},{"name":"Uul-Netol\u0027s Kiss","type":"Labrys","text":"Uul-Netol\u0027s Kiss Labrys","flags":{"prophecy":false,"unique":true}},{"name":"Varunastra","type":"Vaal Blade","text":"Varunastra Vaal Blade","flags":{"prophecy":false,"unique":true}},{"name":"Void Battery","type":"Prophecy Wand","text":"Void Battery Prophecy Wand","flags":{"prophecy":false,"unique":true}},{"name":"Voidforge","type":"Infernal Sword","text":"Voidforge Infernal Sword","flags":{"prophecy":false,"unique":true}},{"name":"Voidhome","type":"Dread Maul","text":"Voidhome Dread Maul","flags":{"prophecy":false,"unique":true}},{"name":"Voltaxic Rift","type":"Spine Bow","text":"Voltaxic Rift Spine Bow","flags":{"prophecy":false,"unique":true}},{"name":"Vulconus","type":"Demon Dagger","text":"Vulconus Demon Dagger","flags":{"prophecy":false,"unique":true}},{"name":"White Wind","type":"Imperial Skean","text":"White Wind Imperial Skean","flags":{"prophecy":false,"unique":true}},{"name":"Wideswing","type":"Poleaxe","text":"Wideswing Poleaxe","flags":{"prophecy":false,"unique":true}},{"name":"Widowmaker","type":"Boot Blade","text":"Widowmaker Boot Blade","flags":{"prophecy":false,"unique":true}},{"name":"Wildslash","type":"Awl","text":"Wildslash Awl","flags":{"prophecy":false,"unique":true}},{"name":"Windripper","type":"Imperial Bow","text":"Windripper Imperial Bow","flags":{"prophecy":false,"unique":true}},{"name":"Wings of Entropy","type":"Sundering Axe","text":"Wings of Entropy Sundering Axe","flags":{"prophecy":false,"unique":true}},{"name":"Xirgil\u0027s Crank","type":"Coiled Staff","text":"Xirgil\u0027s Crank Coiled Staff","flags":{"prophecy":false,"unique":true}},{"name":"Xoph\u0027s Inception","type":"Bone Bow","text":"Xoph\u0027s Inception Bone Bow","flags":{"prophecy":false,"unique":true}},{"name":"Xoph\u0027s Nurture","type":"Citadel Bow","text":"Xoph\u0027s Nurture Citadel Bow","flags":{"prophecy":false,"unique":true}},{"type":"Nailed Fist","text":"Nailed Fist","flags":{"prophecy":false,"unique":false}},{"type":"Gouger","text":"Gouger","flags":{"prophecy":false,"unique":false}},{"type":"Tiger\u0027s Paw","text":"Tiger\u0027s Paw","flags":{"prophecy":false,"unique":false}},{"type":"Gut Ripper","text":"Gut Ripper","flags":{"prophecy":false,"unique":false}},{"type":"Prehistoric Claw","text":"Prehistoric Claw","flags":{"prophecy":false,"unique":false}},{"type":"Noble Claw","text":"Noble Claw","flags":{"prophecy":false,"unique":false}},{"type":"Eagle Claw","text":"Eagle Claw","flags":{"prophecy":false,"unique":false}},{"type":"Great White Claw","text":"Great White Claw","flags":{"prophecy":false,"unique":false}},{"type":"Throat Stabber","text":"Throat Stabber","flags":{"prophecy":false,"unique":false}},{"type":"Hellion\u0027s Paw","text":"Hellion\u0027s Paw","flags":{"prophecy":false,"unique":false}},{"type":"Eye Gouger","text":"Eye Gouger","flags":{"prophecy":false,"unique":false}},{"type":"Sharktooth Claw","text":"Sharktooth Claw","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Claw","text":"Vaal Claw","flags":{"prophecy":false,"unique":false}},{"type":"Imperial Claw","text":"Imperial Claw","flags":{"prophecy":false,"unique":false}},{"type":"Terror Claw","text":"Terror Claw","flags":{"prophecy":false,"unique":false}},{"type":"Awl","text":"Awl","flags":{"prophecy":false,"unique":false}},{"type":"Cat\u0027s Paw","text":"Cat\u0027s Paw","flags":{"prophecy":false,"unique":false}},{"type":"Blinder","text":"Blinder","flags":{"prophecy":false,"unique":false}},{"type":"Timeworn Claw","text":"Timeworn Claw","flags":{"prophecy":false,"unique":false}},{"type":"Sparkling Claw","text":"Sparkling Claw","flags":{"prophecy":false,"unique":false}},{"type":"Fright Claw","text":"Fright Claw","flags":{"prophecy":false,"unique":false}},{"type":"Thresher Claw","text":"Thresher Claw","flags":{"prophecy":false,"unique":false}},{"type":"Double Claw","text":"Double Claw","flags":{"prophecy":false,"unique":false}},{"type":"Twin Claw","text":"Twin Claw","flags":{"prophecy":false,"unique":false}},{"type":"Gemini Claw","text":"Gemini Claw","flags":{"prophecy":false,"unique":false}},{"type":"Glass Shank","text":"Glass Shank","flags":{"prophecy":false,"unique":false}},{"type":"Butcher Knife","text":"Butcher Knife","flags":{"prophecy":false,"unique":false}},{"type":"Poignard","text":"Poignard","flags":{"prophecy":false,"unique":false}},{"type":"Boot Blade","text":"Boot Blade","flags":{"prophecy":false,"unique":false}},{"type":"Golden Kris","text":"Golden Kris","flags":{"prophecy":false,"unique":false}},{"type":"Royal Skean","text":"Royal Skean","flags":{"prophecy":false,"unique":false}},{"type":"Fiend Dagger","text":"Fiend Dagger","flags":{"prophecy":false,"unique":false}},{"type":"Gutting Knife","text":"Gutting Knife","flags":{"prophecy":false,"unique":false}},{"type":"Slaughter Knife","text":"Slaughter Knife","flags":{"prophecy":false,"unique":false}},{"type":"Ambusher","text":"Ambusher","flags":{"prophecy":false,"unique":false}},{"type":"Ezomyte Dagger","text":"Ezomyte Dagger","flags":{"prophecy":false,"unique":false}},{"type":"Skinning Knife","text":"Skinning Knife","flags":{"prophecy":false,"unique":false}},{"type":"Platinum Kris","text":"Platinum Kris","flags":{"prophecy":false,"unique":false}},{"type":"Imperial Skean","text":"Imperial Skean","flags":{"prophecy":false,"unique":false}},{"type":"Demon Dagger","text":"Demon Dagger","flags":{"prophecy":false,"unique":false}},{"type":"Carving Knife","text":"Carving Knife","flags":{"prophecy":false,"unique":false}},{"type":"Stiletto","text":"Stiletto","flags":{"prophecy":false,"unique":false}},{"type":"Boot Knife","text":"Boot Knife","flags":{"prophecy":false,"unique":false}},{"type":"Copper Kris","text":"Copper Kris","flags":{"prophecy":false,"unique":false}},{"type":"Skean","text":"Skean","flags":{"prophecy":false,"unique":false}},{"type":"Imp Dagger","text":"Imp Dagger","flags":{"prophecy":false,"unique":false}},{"type":"Flaying Knife","text":"Flaying Knife","flags":{"prophecy":false,"unique":false}},{"type":"Prong Dagger","text":"Prong Dagger","flags":{"prophecy":false,"unique":false}},{"type":"Trisula","text":"Trisula","flags":{"prophecy":false,"unique":false}},{"type":"Sai","text":"Sai","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Hatchet","text":"Rusted Hatchet","flags":{"prophecy":false,"unique":false}},{"type":"Tomahawk","text":"Tomahawk","flags":{"prophecy":false,"unique":false}},{"type":"Wrist Chopper","text":"Wrist Chopper","flags":{"prophecy":false,"unique":false}},{"type":"War Axe","text":"War Axe","flags":{"prophecy":false,"unique":false}},{"type":"Chest Splitter","text":"Chest Splitter","flags":{"prophecy":false,"unique":false}},{"type":"Ceremonial Axe","text":"Ceremonial Axe","flags":{"prophecy":false,"unique":false}},{"type":"Wraith Axe","text":"Wraith Axe","flags":{"prophecy":false,"unique":false}},{"type":"Karui Axe","text":"Karui Axe","flags":{"prophecy":false,"unique":false}},{"type":"Siege Axe","text":"Siege Axe","flags":{"prophecy":false,"unique":false}},{"type":"Reaver Axe","text":"Reaver Axe","flags":{"prophecy":false,"unique":false}},{"type":"Butcher Axe","text":"Butcher Axe","flags":{"prophecy":false,"unique":false}},{"type":"Jade Hatchet","text":"Jade Hatchet","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Hatchet","text":"Vaal Hatchet","flags":{"prophecy":false,"unique":false}},{"type":"Royal Axe","text":"Royal Axe","flags":{"prophecy":false,"unique":false}},{"type":"Infernal Axe","text":"Infernal Axe","flags":{"prophecy":false,"unique":false}},{"type":"Boarding Axe","text":"Boarding Axe","flags":{"prophecy":false,"unique":false}},{"type":"Cleaver","text":"Cleaver","flags":{"prophecy":false,"unique":false}},{"type":"Broad Axe","text":"Broad Axe","flags":{"prophecy":false,"unique":false}},{"type":"Arming Axe","text":"Arming Axe","flags":{"prophecy":false,"unique":false}},{"type":"Decorative Axe","text":"Decorative Axe","flags":{"prophecy":false,"unique":false}},{"type":"Spectral Axe","text":"Spectral Axe","flags":{"prophecy":false,"unique":false}},{"type":"Jasper Axe","text":"Jasper Axe","flags":{"prophecy":false,"unique":false}},{"type":"Etched Hatchet","text":"Etched Hatchet","flags":{"prophecy":false,"unique":false}},{"type":"Engraved Hatchet","text":"Engraved Hatchet","flags":{"prophecy":false,"unique":false}},{"type":"Runic Hatchet","text":"Runic Hatchet","flags":{"prophecy":false,"unique":false}},{"type":"Driftwood Club","text":"Driftwood Club","flags":{"prophecy":false,"unique":false}},{"type":"Barbed Club","text":"Barbed Club","flags":{"prophecy":false,"unique":false}},{"type":"Rock Breaker","text":"Rock Breaker","flags":{"prophecy":false,"unique":false}},{"type":"Battle Hammer","text":"Battle Hammer","flags":{"prophecy":false,"unique":false}},{"type":"Flanged Mace","text":"Flanged Mace","flags":{"prophecy":false,"unique":false}},{"type":"Ornate Mace","text":"Ornate Mace","flags":{"prophecy":false,"unique":false}},{"type":"Phantom Mace","text":"Phantom Mace","flags":{"prophecy":false,"unique":false}},{"type":"Ancestral Club","text":"Ancestral Club","flags":{"prophecy":false,"unique":false}},{"type":"Tenderizer","text":"Tenderizer","flags":{"prophecy":false,"unique":false}},{"type":"Gavel","text":"Gavel","flags":{"prophecy":false,"unique":false}},{"type":"Legion Hammer","text":"Legion Hammer","flags":{"prophecy":false,"unique":false}},{"type":"Tribal Club","text":"Tribal Club","flags":{"prophecy":false,"unique":false}},{"type":"Pernarch","text":"Pernarch","flags":{"prophecy":false,"unique":false}},{"type":"Auric Mace","text":"Auric Mace","flags":{"prophecy":false,"unique":false}},{"type":"Nightmare Mace","text":"Nightmare Mace","flags":{"prophecy":false,"unique":false}},{"type":"Spiked Club","text":"Spiked Club","flags":{"prophecy":false,"unique":false}},{"type":"Stone Hammer","text":"Stone Hammer","flags":{"prophecy":false,"unique":false}},{"type":"War Hammer","text":"War Hammer","flags":{"prophecy":false,"unique":false}},{"type":"Bladed Mace","text":"Bladed Mace","flags":{"prophecy":false,"unique":false}},{"type":"Ceremonial Mace","text":"Ceremonial Mace","flags":{"prophecy":false,"unique":false}},{"type":"Dream Mace","text":"Dream Mace","flags":{"prophecy":false,"unique":false}},{"type":"Petrified Club","text":"Petrified Club","flags":{"prophecy":false,"unique":false}},{"type":"Wyrm Mace","text":"Wyrm Mace","flags":{"prophecy":false,"unique":false}},{"type":"Dragon Mace","text":"Dragon Mace","flags":{"prophecy":false,"unique":false}},{"type":"Behemoth Mace","text":"Behemoth Mace","flags":{"prophecy":false,"unique":false}},{"type":"Driftwood Sceptre","text":"Driftwood Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Sekhem","text":"Sekhem","flags":{"prophecy":false,"unique":false}},{"type":"Crystal Sceptre","text":"Crystal Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Lead Sceptre","text":"Lead Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Blood Sceptre","text":"Blood Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Royal Sceptre","text":"Royal Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Abyssal Sceptre","text":"Abyssal Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Karui Sceptre","text":"Karui Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Tyrant\u0027s Sekhem","text":"Tyrant\u0027s Sekhem","flags":{"prophecy":false,"unique":false}},{"type":"Opal Sceptre","text":"Opal Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Platinum Sceptre","text":"Platinum Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Darkwood Sceptre","text":"Darkwood Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Sceptre","text":"Vaal Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Carnal Sceptre","text":"Carnal Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Void Sceptre","text":"Void Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Bronze Sceptre","text":"Bronze Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Quartz Sceptre","text":"Quartz Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Iron Sceptre","text":"Iron Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Ochre Sceptre","text":"Ochre Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Ritual Sceptre","text":"Ritual Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Shadow Sceptre","text":"Shadow Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Grinning Fetish","text":"Grinning Fetish","flags":{"prophecy":false,"unique":false}},{"type":"Horned Sceptre","text":"Horned Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Stag Sceptre","text":"Stag Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Sambar Sceptre","text":"Sambar Sceptre","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Sword","text":"Rusted Sword","flags":{"prophecy":false,"unique":false}},{"type":"Cutlass","text":"Cutlass","flags":{"prophecy":false,"unique":false}},{"type":"Baselard","text":"Baselard","flags":{"prophecy":false,"unique":false}},{"type":"Battle Sword","text":"Battle Sword","flags":{"prophecy":false,"unique":false}},{"type":"Elder Sword","text":"Elder Sword","flags":{"prophecy":false,"unique":false}},{"type":"Graceful Sword","text":"Graceful Sword","flags":{"prophecy":false,"unique":false}},{"type":"Twilight Blade","text":"Twilight Blade","flags":{"prophecy":false,"unique":false}},{"type":"Gemstone Sword","text":"Gemstone Sword","flags":{"prophecy":false,"unique":false}},{"type":"Corsair Sword","text":"Corsair Sword","flags":{"prophecy":false,"unique":false}},{"type":"Gladius","text":"Gladius","flags":{"prophecy":false,"unique":false}},{"type":"Legion Sword","text":"Legion Sword","flags":{"prophecy":false,"unique":false}},{"type":"Copper Sword","text":"Copper Sword","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Blade","text":"Vaal Blade","flags":{"prophecy":false,"unique":false}},{"type":"Eternal Sword","text":"Eternal Sword","flags":{"prophecy":false,"unique":false}},{"type":"Midnight Blade","text":"Midnight Blade","flags":{"prophecy":false,"unique":false}},{"type":"Sabre","text":"Sabre","flags":{"prophecy":false,"unique":false}},{"type":"Broad Sword","text":"Broad Sword","flags":{"prophecy":false,"unique":false}},{"type":"War Sword","text":"War Sword","flags":{"prophecy":false,"unique":false}},{"type":"Ancient Sword","text":"Ancient Sword","flags":{"prophecy":false,"unique":false}},{"type":"Elegant Sword","text":"Elegant Sword","flags":{"prophecy":false,"unique":false}},{"type":"Dusk Blade","text":"Dusk Blade","flags":{"prophecy":false,"unique":false}},{"type":"Variscite Blade","text":"Variscite Blade","flags":{"prophecy":false,"unique":false}},{"type":"Charan\u0027s Sword","text":"Charan\u0027s Sword","flags":{"prophecy":false,"unique":false}},{"type":"Hook Sword","text":"Hook Sword","flags":{"prophecy":false,"unique":false}},{"type":"Grappler","text":"Grappler","flags":{"prophecy":false,"unique":false}},{"type":"Tiger Hook","text":"Tiger Hook","flags":{"prophecy":false,"unique":false}},{"type":"Rusted Spike","text":"Rusted Spike","flags":{"prophecy":false,"unique":false}},{"type":"Burnished Foil","text":"Burnished Foil","flags":{"prophecy":false,"unique":false}},{"type":"Estoc","text":"Estoc","flags":{"prophecy":false,"unique":false}},{"type":"Serrated Foil","text":"Serrated Foil","flags":{"prophecy":false,"unique":false}},{"type":"Primeval Rapier","text":"Primeval Rapier","flags":{"prophecy":false,"unique":false}},{"type":"Fancy Foil","text":"Fancy Foil","flags":{"prophecy":false,"unique":false}},{"type":"Apex Rapier","text":"Apex Rapier","flags":{"prophecy":false,"unique":false}},{"type":"Dragonbone Rapier","text":"Dragonbone Rapier","flags":{"prophecy":false,"unique":false}},{"type":"Tempered Foil","text":"Tempered Foil","flags":{"prophecy":false,"unique":false}},{"type":"Pecoraro","text":"Pecoraro","flags":{"prophecy":false,"unique":false}},{"type":"Spiraled Foil","text":"Spiraled Foil","flags":{"prophecy":false,"unique":false}},{"type":"Whalebone Rapier","text":"Whalebone Rapier","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Rapier","text":"Vaal Rapier","flags":{"prophecy":false,"unique":false}},{"type":"Jewelled Foil","text":"Jewelled Foil","flags":{"prophecy":false,"unique":false}},{"type":"Harpy Rapier","text":"Harpy Rapier","flags":{"prophecy":false,"unique":false}},{"type":"Battered Foil","text":"Battered Foil","flags":{"prophecy":false,"unique":false}},{"type":"Basket Rapier","text":"Basket Rapier","flags":{"prophecy":false,"unique":false}},{"type":"Jagged Foil","text":"Jagged Foil","flags":{"prophecy":false,"unique":false}},{"type":"Antique Rapier","text":"Antique Rapier","flags":{"prophecy":false,"unique":false}},{"type":"Elegant Foil","text":"Elegant Foil","flags":{"prophecy":false,"unique":false}},{"type":"Thorn Rapier","text":"Thorn Rapier","flags":{"prophecy":false,"unique":false}},{"type":"Wyrmbone Rapier","text":"Wyrmbone Rapier","flags":{"prophecy":false,"unique":false}},{"type":"Smallsword","text":"Smallsword","flags":{"prophecy":false,"unique":false}},{"type":"Courtesan Sword","text":"Courtesan Sword","flags":{"prophecy":false,"unique":false}},{"type":"Dragoon Sword","text":"Dragoon Sword","flags":{"prophecy":false,"unique":false}},{"type":"Driftwood Wand","text":"Driftwood Wand","flags":{"prophecy":false,"unique":false}},{"type":"Serpent Wand","text":"Serpent Wand","flags":{"prophecy":false,"unique":false}},{"type":"Omen Wand","text":"Omen Wand","flags":{"prophecy":false,"unique":false}},{"type":"Demon\u0027s Horn","text":"Demon\u0027s Horn","flags":{"prophecy":false,"unique":false}},{"type":"Imbued Wand","text":"Imbued Wand","flags":{"prophecy":false,"unique":false}},{"type":"Opal Wand","text":"Opal Wand","flags":{"prophecy":false,"unique":false}},{"type":"Tornado Wand","text":"Tornado Wand","flags":{"prophecy":false,"unique":false}},{"type":"Prophecy Wand","text":"Prophecy Wand","flags":{"prophecy":false,"unique":false}},{"type":"Goat\u0027s Horn","text":"Goat\u0027s Horn","flags":{"prophecy":false,"unique":false}},{"type":"Carved Wand","text":"Carved Wand","flags":{"prophecy":false,"unique":false}},{"type":"Quartz Wand","text":"Quartz Wand","flags":{"prophecy":false,"unique":false}},{"type":"Spiraled Wand","text":"Spiraled Wand","flags":{"prophecy":false,"unique":false}},{"type":"Sage Wand","text":"Sage Wand","flags":{"prophecy":false,"unique":false}},{"type":"Faun\u0027s Horn","text":"Faun\u0027s Horn","flags":{"prophecy":false,"unique":false}},{"type":"Engraved Wand","text":"Engraved Wand","flags":{"prophecy":false,"unique":false}},{"type":"Crystal Wand","text":"Crystal Wand","flags":{"prophecy":false,"unique":false}},{"type":"Convoking Wand","text":"Convoking Wand","flags":{"prophecy":false,"unique":false}},{"type":"Pagan Wand","text":"Pagan Wand","flags":{"prophecy":false,"unique":false}},{"type":"Heathen Wand","text":"Heathen Wand","flags":{"prophecy":false,"unique":false}},{"type":"Profane Wand","text":"Profane Wand","flags":{"prophecy":false,"unique":false}},{"type":"Fishing Rod","text":"Fishing Rod","flags":{"prophecy":false,"unique":false}},{"type":"Crude Bow","text":"Crude Bow","flags":{"prophecy":false,"unique":false}},{"type":"Decurve Bow","text":"Decurve Bow","flags":{"prophecy":false,"unique":false}},{"type":"Compound Bow","text":"Compound Bow","flags":{"prophecy":false,"unique":false}},{"type":"Sniper Bow","text":"Sniper Bow","flags":{"prophecy":false,"unique":false}},{"type":"Ivory Bow","text":"Ivory Bow","flags":{"prophecy":false,"unique":false}},{"type":"Highborn Bow","text":"Highborn Bow","flags":{"prophecy":false,"unique":false}},{"type":"Decimation Bow","text":"Decimation Bow","flags":{"prophecy":false,"unique":false}},{"type":"Thicket Bow","text":"Thicket Bow","flags":{"prophecy":false,"unique":false}},{"type":"Citadel Bow","text":"Citadel Bow","flags":{"prophecy":false,"unique":false}},{"type":"Ranger Bow","text":"Ranger Bow","flags":{"prophecy":false,"unique":false}},{"type":"Assassin Bow","text":"Assassin Bow","flags":{"prophecy":false,"unique":false}},{"type":"Short Bow","text":"Short Bow","flags":{"prophecy":false,"unique":false}},{"type":"Spine Bow","text":"Spine Bow","flags":{"prophecy":false,"unique":false}},{"type":"Imperial Bow","text":"Imperial Bow","flags":{"prophecy":false,"unique":false}},{"type":"Harbinger Bow","text":"Harbinger Bow","flags":{"prophecy":false,"unique":false}},{"type":"Long Bow","text":"Long Bow","flags":{"prophecy":false,"unique":false}},{"type":"Composite Bow","text":"Composite Bow","flags":{"prophecy":false,"unique":false}},{"type":"Recurve Bow","text":"Recurve Bow","flags":{"prophecy":false,"unique":false}},{"type":"Bone Bow","text":"Bone Bow","flags":{"prophecy":false,"unique":false}},{"type":"Royal Bow","text":"Royal Bow","flags":{"prophecy":false,"unique":false}},{"type":"Death Bow","text":"Death Bow","flags":{"prophecy":false,"unique":false}},{"type":"Grove Bow","text":"Grove Bow","flags":{"prophecy":false,"unique":false}},{"type":"Reflex Bow","text":"Reflex Bow","flags":{"prophecy":false,"unique":false}},{"type":"Steelwood Bow","text":"Steelwood Bow","flags":{"prophecy":false,"unique":false}},{"type":"Maraketh Bow","text":"Maraketh Bow","flags":{"prophecy":false,"unique":false}},{"type":"Gnarled Branch","text":"Gnarled Branch","flags":{"prophecy":false,"unique":false}},{"type":"Military Staff","text":"Military Staff","flags":{"prophecy":false,"unique":false}},{"type":"Serpentine Staff","text":"Serpentine Staff","flags":{"prophecy":false,"unique":false}},{"type":"Highborn Staff","text":"Highborn Staff","flags":{"prophecy":false,"unique":false}},{"type":"Foul Staff","text":"Foul Staff","flags":{"prophecy":false,"unique":false}},{"type":"Primordial Staff","text":"Primordial Staff","flags":{"prophecy":false,"unique":false}},{"type":"Lathi","text":"Lathi","flags":{"prophecy":false,"unique":false}},{"type":"Ezomyte Staff","text":"Ezomyte Staff","flags":{"prophecy":false,"unique":false}},{"type":"Maelstr\u00F6m Staff","text":"Maelstr\u00F6m Staff","flags":{"prophecy":false,"unique":false}},{"type":"Imperial Staff","text":"Imperial Staff","flags":{"prophecy":false,"unique":false}},{"type":"Judgement Staff","text":"Judgement Staff","flags":{"prophecy":false,"unique":false}},{"type":"Primitive Staff","text":"Primitive Staff","flags":{"prophecy":false,"unique":false}},{"type":"Long Staff","text":"Long Staff","flags":{"prophecy":false,"unique":false}},{"type":"Iron Staff","text":"Iron Staff","flags":{"prophecy":false,"unique":false}},{"type":"Coiled Staff","text":"Coiled Staff","flags":{"prophecy":false,"unique":false}},{"type":"Royal Staff","text":"Royal Staff","flags":{"prophecy":false,"unique":false}},{"type":"Vile Staff","text":"Vile Staff","flags":{"prophecy":false,"unique":false}},{"type":"Woodful Staff","text":"Woodful Staff","flags":{"prophecy":false,"unique":false}},{"type":"Quarterstaff","text":"Quarterstaff","flags":{"prophecy":false,"unique":false}},{"type":"Crescent Staff","text":"Crescent Staff","flags":{"prophecy":false,"unique":false}},{"type":"Moon Staff","text":"Moon Staff","flags":{"prophecy":false,"unique":false}},{"type":"Eclipse Staff","text":"Eclipse Staff","flags":{"prophecy":false,"unique":false}},{"type":"Stone Axe","text":"Stone Axe","flags":{"prophecy":false,"unique":false}},{"type":"Headsman Axe","text":"Headsman Axe","flags":{"prophecy":false,"unique":false}},{"type":"Labrys","text":"Labrys","flags":{"prophecy":false,"unique":false}},{"type":"Noble Axe","text":"Noble Axe","flags":{"prophecy":false,"unique":false}},{"type":"Abyssal Axe","text":"Abyssal Axe","flags":{"prophecy":false,"unique":false}},{"type":"Karui Chopper","text":"Karui Chopper","flags":{"prophecy":false,"unique":false}},{"type":"Sundering Axe","text":"Sundering Axe","flags":{"prophecy":false,"unique":false}},{"type":"Ezomyte Axe","text":"Ezomyte Axe","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Axe","text":"Vaal Axe","flags":{"prophecy":false,"unique":false}},{"type":"Despot Axe","text":"Despot Axe","flags":{"prophecy":false,"unique":false}},{"type":"Void Axe","text":"Void Axe","flags":{"prophecy":false,"unique":false}},{"type":"Jade Chopper","text":"Jade Chopper","flags":{"prophecy":false,"unique":false}},{"type":"Woodsplitter","text":"Woodsplitter","flags":{"prophecy":false,"unique":false}},{"type":"Poleaxe","text":"Poleaxe","flags":{"prophecy":false,"unique":false}},{"type":"Double Axe","text":"Double Axe","flags":{"prophecy":false,"unique":false}},{"type":"Gilded Axe","text":"Gilded Axe","flags":{"prophecy":false,"unique":false}},{"type":"Shadow Axe","text":"Shadow Axe","flags":{"prophecy":false,"unique":false}},{"type":"Jasper Chopper","text":"Jasper Chopper","flags":{"prophecy":false,"unique":false}},{"type":"Timber Axe","text":"Timber Axe","flags":{"prophecy":false,"unique":false}},{"type":"Dagger Axe","text":"Dagger Axe","flags":{"prophecy":false,"unique":false}},{"type":"Talon Axe","text":"Talon Axe","flags":{"prophecy":false,"unique":false}},{"type":"Fleshripper","text":"Fleshripper","flags":{"prophecy":false,"unique":false}},{"type":"Driftwood Maul","text":"Driftwood Maul","flags":{"prophecy":false,"unique":false}},{"type":"Steelhead","text":"Steelhead","flags":{"prophecy":false,"unique":false}},{"type":"Spiny Maul","text":"Spiny Maul","flags":{"prophecy":false,"unique":false}},{"type":"Plated Maul","text":"Plated Maul","flags":{"prophecy":false,"unique":false}},{"type":"Dread Maul","text":"Dread Maul","flags":{"prophecy":false,"unique":false}},{"type":"Karui Maul","text":"Karui Maul","flags":{"prophecy":false,"unique":false}},{"type":"Colossus Mallet","text":"Colossus Mallet","flags":{"prophecy":false,"unique":false}},{"type":"Piledriver","text":"Piledriver","flags":{"prophecy":false,"unique":false}},{"type":"Meatgrinder","text":"Meatgrinder","flags":{"prophecy":false,"unique":false}},{"type":"Imperial Maul","text":"Imperial Maul","flags":{"prophecy":false,"unique":false}},{"type":"Terror Maul","text":"Terror Maul","flags":{"prophecy":false,"unique":false}},{"type":"Tribal Maul","text":"Tribal Maul","flags":{"prophecy":false,"unique":false}},{"type":"Mallet","text":"Mallet","flags":{"prophecy":false,"unique":false}},{"type":"Sledgehammer","text":"Sledgehammer","flags":{"prophecy":false,"unique":false}},{"type":"Jagged Maul","text":"Jagged Maul","flags":{"prophecy":false,"unique":false}},{"type":"Brass Maul","text":"Brass Maul","flags":{"prophecy":false,"unique":false}},{"type":"Fright Maul","text":"Fright Maul","flags":{"prophecy":false,"unique":false}},{"type":"Totemic Maul","text":"Totemic Maul","flags":{"prophecy":false,"unique":false}},{"type":"Great Mallet","text":"Great Mallet","flags":{"prophecy":false,"unique":false}},{"type":"Morning Star","text":"Morning Star","flags":{"prophecy":false,"unique":false}},{"type":"Solar Maul","text":"Solar Maul","flags":{"prophecy":false,"unique":false}},{"type":"Coronal Maul","text":"Coronal Maul","flags":{"prophecy":false,"unique":false}},{"type":"Corroded Blade","text":"Corroded Blade","flags":{"prophecy":false,"unique":false}},{"type":"Highland Blade","text":"Highland Blade","flags":{"prophecy":false,"unique":false}},{"type":"Engraved Greatsword","text":"Engraved Greatsword","flags":{"prophecy":false,"unique":false}},{"type":"Tiger Sword","text":"Tiger Sword","flags":{"prophecy":false,"unique":false}},{"type":"Wraith Sword","text":"Wraith Sword","flags":{"prophecy":false,"unique":false}},{"type":"Headman\u0027s Sword","text":"Headman\u0027s Sword","flags":{"prophecy":false,"unique":false}},{"type":"Reaver Sword","text":"Reaver Sword","flags":{"prophecy":false,"unique":false}},{"type":"Ezomyte Blade","text":"Ezomyte Blade","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Greatsword","text":"Vaal Greatsword","flags":{"prophecy":false,"unique":false}},{"type":"Lion Sword","text":"Lion Sword","flags":{"prophecy":false,"unique":false}},{"type":"Infernal Sword","text":"Infernal Sword","flags":{"prophecy":false,"unique":false}},{"type":"Longsword","text":"Longsword","flags":{"prophecy":false,"unique":false}},{"type":"Bastard Sword","text":"Bastard Sword","flags":{"prophecy":false,"unique":false}},{"type":"Two-Handed Sword","text":"Two-Handed Sword","flags":{"prophecy":false,"unique":false}},{"type":"Etched Greatsword","text":"Etched Greatsword","flags":{"prophecy":false,"unique":false}},{"type":"Ornate Sword","text":"Ornate Sword","flags":{"prophecy":false,"unique":false}},{"type":"Spectral Sword","text":"Spectral Sword","flags":{"prophecy":false,"unique":false}},{"type":"Butcher Sword","text":"Butcher Sword","flags":{"prophecy":false,"unique":false}},{"type":"Footman Sword","text":"Footman Sword","flags":{"prophecy":false,"unique":false}},{"type":"Curved Blade","text":"Curved Blade","flags":{"prophecy":false,"unique":false}},{"type":"Lithe Blade","text":"Lithe Blade","flags":{"prophecy":false,"unique":false}},{"type":"Exquisite Blade","text":"Exquisite Blade","flags":{"prophecy":false,"unique":false}}]},{"label":"Leaguestones","entries":[{"type":"Ambush Leaguestone","text":"Ambush Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Anarchy Leaguestone","text":"Anarchy Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Beyond Leaguestone","text":"Beyond Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Bloodlines Leaguestone","text":"Bloodlines Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Breach Leaguestone","text":"Breach Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Domination Leaguestone","text":"Domination Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Essence Leaguestone","text":"Essence Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Invasion Leaguestone","text":"Invasion Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Nemesis Leaguestone","text":"Nemesis Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Onslaught Leaguestone","text":"Onslaught Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Perandus Leaguestone","text":"Perandus Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Prophecy Leaguestone","text":"Prophecy Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Rampage Leaguestone","text":"Rampage Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Talisman Leaguestone","text":"Talisman Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Tempest Leaguestone","text":"Tempest Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Torment Leaguestone","text":"Torment Leaguestone","flags":{"prophecy":false,"unique":false}},{"type":"Warbands Leaguestone","text":"Warbands Leaguestone","flags":{"prophecy":false,"unique":false}}]},{"label":"Prophecies","entries":[{"name":"The Alchemist","type":"Prophecy","text":"The Alchemist Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Anarchy\u0027s End I","type":"Prophecy","text":"Anarchy\u0027s End I Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Anarchy\u0027s End II","type":"Prophecy","text":"Anarchy\u0027s End II Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Anarchy\u0027s End III","type":"Prophecy","text":"Anarchy\u0027s End III Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Anarchy\u0027s End IV","type":"Prophecy","text":"Anarchy\u0027s End IV Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Ancient Rivalries I","type":"Prophecy","text":"Ancient Rivalries I Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Ancient Rivalries II","type":"Prophecy","text":"Ancient Rivalries II Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Ancient Rivalries III","type":"Prophecy","text":"Ancient Rivalries III Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Ancient Rivalries IV","type":"Prophecy","text":"Ancient Rivalries IV Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Twins","type":"Prophecy","text":"The Twins Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Possessed Foe","type":"Prophecy","text":"Possessed Foe Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Invader","type":"Prophecy","text":"The Invader Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Visions of the Drowned","type":"Prophecy","text":"Visions of the Drowned Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Monstrous Treasure","type":"Prophecy","text":"Monstrous Treasure Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Vaal Invasion","type":"Prophecy","text":"Vaal Invasion Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Hungering Swarm","type":"Prophecy","text":"The Hungering Swarm Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Trembling Earth","type":"Prophecy","text":"The Trembling Earth Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Cursed Choir","type":"Prophecy","text":"The Cursed Choir Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Soil, Worms and Blood","type":"Prophecy","text":"Soil, Worms and Blood Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Jeweller\u0027s Touch","type":"Prophecy","text":"The Jeweller\u0027s Touch Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Forgotten Garrison","type":"Prophecy","text":"The Forgotten Garrison Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Song of the Sekhema","type":"Prophecy","text":"Song of the Sekhema Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Queen\u0027s Vaults","type":"Prophecy","text":"The Queen\u0027s Vaults Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Queen\u0027s Sacrifice","type":"Prophecy","text":"The Queen\u0027s Sacrifice Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Beyond Sight I","type":"Prophecy","text":"Beyond Sight I Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Beyond Sight II","type":"Prophecy","text":"Beyond Sight II Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Beyond Sight III","type":"Prophecy","text":"Beyond Sight III Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Beyond Sight IV","type":"Prophecy","text":"Beyond Sight IV Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Cold Blooded Fury","type":"Prophecy","text":"Cold Blooded Fury Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Reforged Bonds","type":"Prophecy","text":"Reforged Bonds Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Last of the Wildmen","type":"Prophecy","text":"Last of the Wildmen Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Cold Greed","type":"Prophecy","text":"Cold Greed Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"A Valuable Combination","type":"Prophecy","text":"A Valuable Combination Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Fortune Teller\u0027s Collection","type":"Prophecy","text":"The Fortune Teller\u0027s Collection Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Child of Lunaris","type":"Prophecy","text":"The Child of Lunaris Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Faith Exhumed","type":"Prophecy","text":"Faith Exhumed Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Twice Enchanted","type":"Prophecy","text":"Twice Enchanted Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Day of Sacrifice I","type":"Prophecy","text":"Day of Sacrifice I Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Day of Sacrifice II","type":"Prophecy","text":"Day of Sacrifice II Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Day of Sacrifice III","type":"Prophecy","text":"Day of Sacrifice III Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Day of Sacrifice IV","type":"Prophecy","text":"Day of Sacrifice IV Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Deadly Rivalry I","type":"Prophecy","text":"Deadly Rivalry I Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Deadly Rivalry II","type":"Prophecy","text":"Deadly Rivalry II Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Deadly Rivalry III","type":"Prophecy","text":"Deadly Rivalry III Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Deadly Rivalry IV","type":"Prophecy","text":"Deadly Rivalry IV Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Deadly Rivalry V","type":"Prophecy","text":"Deadly Rivalry V Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Malevolent Witch","type":"Prophecy","text":"The Malevolent Witch Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Burning Dread","type":"Prophecy","text":"Burning Dread Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Agony at Dusk","type":"Prophecy","text":"Agony at Dusk Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Blinding Light","type":"Prophecy","text":"Blinding Light Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Wealthy Exile","type":"Prophecy","text":"The Wealthy Exile Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Scout","type":"Prophecy","text":"The Scout Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Fallow At Last","type":"Prophecy","text":"Fallow At Last Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Trapped in the Tower","type":"Prophecy","text":"Trapped in the Tower Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Dark Instincts","type":"Prophecy","text":"Dark Instincts Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Plague of Frogs","type":"Prophecy","text":"Plague of Frogs Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Black Devotion","type":"Prophecy","text":"Black Devotion Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Bishop\u0027s Legacy","type":"Prophecy","text":"The Bishop\u0027s Legacy Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Pools of Wealth","type":"Prophecy","text":"Pools of Wealth Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Crimson Hues","type":"Prophecy","text":"Crimson Hues Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"A Vision of Ice and Fire","type":"Prophecy","text":"A Vision of Ice and Fire Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Blacksmith","type":"Prophecy","text":"The Blacksmith Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"A Dishonourable Death","type":"Prophecy","text":"A Dishonourable Death Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"End of the Light","type":"Prophecy","text":"End of the Light Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Nemesis of Greed","type":"Prophecy","text":"Nemesis of Greed Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Battle Hardened","type":"Prophecy","text":"Battle Hardened Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Trash to Treasure","type":"Prophecy","text":"Trash to Treasure Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Emperor\u0027s Trove","type":"Prophecy","text":"The Emperor\u0027s Trove Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Path of Betrayal","type":"Prophecy","text":"Path of Betrayal Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"From The Void","type":"Prophecy","text":"From The Void Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Misunderstood Queen","type":"Prophecy","text":"The Misunderstood Queen Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Nature\u0027s Resilience","type":"Prophecy","text":"Nature\u0027s Resilience Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Snuffed Flame","type":"Prophecy","text":"The Snuffed Flame Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The King and the Brambles","type":"Prophecy","text":"The King and the Brambles Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Mouth of Horrors","type":"Prophecy","text":"Mouth of Horrors Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Servant\u0027s Heart","type":"Prophecy","text":"The Servant\u0027s Heart Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Karui Rebellion","type":"Prophecy","text":"The Karui Rebellion Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Bloody Flowers Redux","type":"Prophecy","text":"The Bloody Flowers Redux Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Beginning and the End","type":"Prophecy","text":"The Beginning and the End Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Heavy Blows","type":"Prophecy","text":"Heavy Blows Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Dying Cry","type":"Prophecy","text":"Dying Cry Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Fire and Ice","type":"Prophecy","text":"Fire and Ice Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Severed Limbs","type":"Prophecy","text":"Severed Limbs Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Fire and Brimstone","type":"Prophecy","text":"Fire and Brimstone Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Apex Predator","type":"Prophecy","text":"The Apex Predator Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Silverwood","type":"Prophecy","text":"The Silverwood Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The King\u0027s Path","type":"Prophecy","text":"The King\u0027s Path Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Hidden Reinforcements","type":"Prophecy","text":"Hidden Reinforcements Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Bowstring\u0027s Music","type":"Prophecy","text":"The Bowstring\u0027s Music Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Rebirth","type":"Prophecy","text":"Rebirth Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Power Magnified","type":"Prophecy","text":"Power Magnified Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Gilded Within","type":"Prophecy","text":"Gilded Within Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Ending the Torment","type":"Prophecy","text":"Ending the Torment Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Hunter\u0027s Lesson","type":"Prophecy","text":"Hunter\u0027s Lesson Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Pleasure and Pain","type":"Prophecy","text":"Pleasure and Pain Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Flow of Energy","type":"Prophecy","text":"The Flow of Energy Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Winter\u0027s Mournful Melodies","type":"Prophecy","text":"Winter\u0027s Mournful Melodies Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"A Forest of False Idols","type":"Prophecy","text":"A Forest of False Idols Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Erased from Memory","type":"Prophecy","text":"Erased from Memory Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Ancient Doom","type":"Prophecy","text":"Ancient Doom Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Nightmare Awakens","type":"Prophecy","text":"The Nightmare Awakens Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Dreamer\u0027s Dream","type":"Prophecy","text":"The Dreamer\u0027s Dream Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Dream Trial","type":"Prophecy","text":"The Dream Trial Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Hidden Vaal Pathways","type":"Prophecy","text":"Hidden Vaal Pathways Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Echoes of Lost Love","type":"Prophecy","text":"Echoes of Lost Love Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Echoes of Witchcraft","type":"Prophecy","text":"Echoes of Witchcraft Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"A Master Seeks Help","type":"Prophecy","text":"A Master Seeks Help Prophecy (Alva)","flags":{"prophecy":true,"unique":false}},{"name":"A Master Seeks Help","type":"Prophecy","text":"A Master Seeks Help Prophecy (Einhar)","flags":{"prophecy":true,"unique":false}},{"name":"A Master Seeks Help","type":"Prophecy","text":"A Master Seeks Help Prophecy (Niko)","flags":{"prophecy":true,"unique":false}},{"name":"A Master Seeks Help","type":"Prophecy","text":"A Master Seeks Help Prophecy (Jun)","flags":{"prophecy":true,"unique":false}},{"name":"Bountiful Traps","type":"Prophecy","text":"Bountiful Traps Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"A Master Seeks Help","type":"Prophecy","text":"A Master Seeks Help Prophecy (Zana)","flags":{"prophecy":true,"unique":false}},{"name":"The God of Misfortune","type":"Prophecy","text":"The God of Misfortune Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Brothers in Arms","type":"Prophecy","text":"Brothers in Arms Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Echoes of Mutation","type":"Prophecy","text":"Echoes of Mutation Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Aesthete\u0027s Spirit","type":"Prophecy","text":"The Aesthete\u0027s Spirit Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Undead Brutes","type":"Prophecy","text":"The Undead Brutes Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Four Feral Exiles","type":"Prophecy","text":"The Four Feral Exiles Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Vaal Winds","type":"Prophecy","text":"Vaal Winds Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Fire from the Sky","type":"Prophecy","text":"Fire from the Sky Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Ice from Above","type":"Prophecy","text":"Ice from Above Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Lightning Falls","type":"Prophecy","text":"Lightning Falls Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Crushing Squall","type":"Prophecy","text":"Crushing Squall Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Undead Storm","type":"Prophecy","text":"The Undead Storm Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Deadly Twins","type":"Prophecy","text":"Deadly Twins Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"A Gracious Master","type":"Prophecy","text":"A Gracious Master Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Mentor","type":"Prophecy","text":"The Mentor Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Overflowing Riches","type":"Prophecy","text":"Overflowing Riches Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Mysterious Invaders","type":"Prophecy","text":"Mysterious Invaders Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Thaumaturgical History I","type":"Prophecy","text":"Thaumaturgical History I Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Thaumaturgical History II","type":"Prophecy","text":"Thaumaturgical History II Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Thaumaturgical History III","type":"Prophecy","text":"Thaumaturgical History III Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Thaumaturgical History IV","type":"Prophecy","text":"Thaumaturgical History IV Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Forceful Exorcism","type":"Prophecy","text":"Forceful Exorcism Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Fall of an Empire","type":"Prophecy","text":"The Fall of an Empire Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Last Watch","type":"Prophecy","text":"The Last Watch Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Soulless Beast","type":"Prophecy","text":"The Soulless Beast Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Custodians of Silence","type":"Prophecy","text":"Custodians of Silence Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Prison Guard","type":"Prophecy","text":"The Prison Guard Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Prison Key","type":"Prophecy","text":"The Prison Key Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Ward\u0027s Ward","type":"Prophecy","text":"The Ward\u0027s Ward Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Lady in Black","type":"Prophecy","text":"The Lady in Black Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Brutal Enforcer","type":"Prophecy","text":"The Brutal Enforcer Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Flesh of the Beast","type":"Prophecy","text":"Flesh of the Beast Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Storm on the Horizon","type":"Prophecy","text":"Storm on the Horizon Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Nest","type":"Prophecy","text":"The Nest Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Abnormal Effulgence","type":"Prophecy","text":"Abnormal Effulgence Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Fire, Wood and Stone","type":"Prophecy","text":"Fire, Wood and Stone Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Baptism by Death","type":"Prophecy","text":"Baptism by Death Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Fear\u0027s Wide Reach","type":"Prophecy","text":"Fear\u0027s Wide Reach Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Against the Tide","type":"Prophecy","text":"Against the Tide Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"From Death Springs Life","type":"Prophecy","text":"From Death Springs Life Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Weeping Death","type":"Prophecy","text":"Weeping Death Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Storm on the Reef","type":"Prophecy","text":"Storm on the Reef Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Strong as a Bull","type":"Prophecy","text":"Strong as a Bull Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Graceful Flames","type":"Prophecy","text":"Graceful Flames Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"A Whispered Prayer","type":"Prophecy","text":"A Whispered Prayer Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Wind and Thunder","type":"Prophecy","text":"Wind and Thunder Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Flayed Man","type":"Prophecy","text":"The Flayed Man Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Blood of the Betrayed","type":"Prophecy","text":"Blood of the Betrayed Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Defiled in the Sceptre","type":"Prophecy","text":"Defiled in the Sceptre Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Sword King\u0027s Passion","type":"Prophecy","text":"The Sword King\u0027s Passion Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Blood in the Eyes","type":"Prophecy","text":"Blood in the Eyes Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Risen Blood","type":"Prophecy","text":"Risen Blood Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Eagle\u0027s Cry","type":"Prophecy","text":"The Eagle\u0027s Cry Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Roth\u0027s Legacy","type":"Prophecy","text":"Roth\u0027s Legacy Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Petrified","type":"Prophecy","text":"The Petrified Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Notched Flesh","type":"Prophecy","text":"Notched Flesh Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Walking Mountain","type":"Prophecy","text":"The Walking Mountain Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"A Firm Foothold","type":"Prophecy","text":"A Firm Foothold Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Sinner\u0027s Stone","type":"Prophecy","text":"The Sinner\u0027s Stone Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Lost Undying","type":"Prophecy","text":"The Lost Undying Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"A Prodigious Hand","type":"Prophecy","text":"A Prodigious Hand Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"A Call into the Void","type":"Prophecy","text":"A Call into the Void Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Hollow Pledge","type":"Prophecy","text":"The Hollow Pledge Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Lost in the Pages","type":"Prophecy","text":"Lost in the Pages Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Cleanser of Sins","type":"Prophecy","text":"Cleanser of Sins Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Heart of the Fire","type":"Prophecy","text":"Heart of the Fire Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Vanguard","type":"Prophecy","text":"The Vanguard Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Watcher\u0027s Watcher","type":"Prophecy","text":"The Watcher\u0027s Watcher Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Plague of Rats","type":"Prophecy","text":"Plague of Rats Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Lasting Impressions","type":"Prophecy","text":"Lasting Impressions Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Kalandra\u0027s Craft","type":"Prophecy","text":"Kalandra\u0027s Craft Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Dreaded Rhoa","type":"Prophecy","text":"The Dreaded Rhoa Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Fated Connections","type":"Prophecy","text":"Fated Connections Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"A Regal Death","type":"Prophecy","text":"A Regal Death Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Mysterious Gift","type":"Prophecy","text":"The Mysterious Gift Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Erasmus\u0027 Gift","type":"Prophecy","text":"Erasmus\u0027 Gift Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Brothers of Necromancy","type":"Prophecy","text":"The Brothers of Necromancy Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"An Unseen Peril","type":"Prophecy","text":"An Unseen Peril Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Waiting in Ambush","type":"Prophecy","text":"Waiting in Ambush Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Sun\u0027s Punishment","type":"Prophecy","text":"Sun\u0027s Punishment Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Ambitious Bandit I","type":"Prophecy","text":"The Ambitious Bandit I Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Ambitious Bandit II","type":"Prophecy","text":"The Ambitious Bandit II Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Ambitious Bandit III","type":"Prophecy","text":"The Ambitious Bandit III Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Dance of Steel","type":"Prophecy","text":"Dance of Steel Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Feral Lord I","type":"Prophecy","text":"The Feral Lord I Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Feral Lord II","type":"Prophecy","text":"The Feral Lord II Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Feral Lord III","type":"Prophecy","text":"The Feral Lord III Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Feral Lord IV","type":"Prophecy","text":"The Feral Lord IV Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Feral Lord V","type":"Prophecy","text":"The Feral Lord V Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Blind Faith","type":"Prophecy","text":"Blind Faith Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Great Mind of the North","type":"Prophecy","text":"The Great Mind of the North Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Great Leader of the North","type":"Prophecy","text":"The Great Leader of the North Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Plaguemaw I","type":"Prophecy","text":"The Plaguemaw I Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Plaguemaw II","type":"Prophecy","text":"The Plaguemaw II Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Plaguemaw III","type":"Prophecy","text":"The Plaguemaw III Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Plaguemaw IV","type":"Prophecy","text":"The Plaguemaw IV Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Plaguemaw V","type":"Prophecy","text":"The Plaguemaw V Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Stockkeeper","type":"Prophecy","text":"The Stockkeeper Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Storm Spire","type":"Prophecy","text":"The Storm Spire Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Unbreathing Queen I","type":"Prophecy","text":"The Unbreathing Queen I Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Unbreathing Queen II","type":"Prophecy","text":"The Unbreathing Queen II Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Unbreathing Queen III","type":"Prophecy","text":"The Unbreathing Queen III Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Unbreathing Queen IV","type":"Prophecy","text":"The Unbreathing Queen IV Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Unbreathing Queen V","type":"Prophecy","text":"The Unbreathing Queen V Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Warmongers I","type":"Prophecy","text":"The Warmongers I Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Warmongers II","type":"Prophecy","text":"The Warmongers II Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Warmongers III","type":"Prophecy","text":"The Warmongers III Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Warmongers IV","type":"Prophecy","text":"The Warmongers IV Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Lost Maps","type":"Prophecy","text":"The Lost Maps Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"A Rift in Time","type":"Prophecy","text":"A Rift in Time Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Singular Spirit","type":"Prophecy","text":"The Singular Spirit Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Touched by the Wind","type":"Prophecy","text":"Touched by the Wind Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Resistant to Change","type":"Prophecy","text":"Resistant to Change Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Smothering Tendrils","type":"Prophecy","text":"Smothering Tendrils Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Vital Transformation","type":"Prophecy","text":"Vital Transformation Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Golden Touch","type":"Prophecy","text":"Golden Touch Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Holding the Bridge","type":"Prophecy","text":"Holding the Bridge Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Unbearable Whispers I","type":"Prophecy","text":"Unbearable Whispers I Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Unbearable Whispers II","type":"Prophecy","text":"Unbearable Whispers II Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Unbearable Whispers III","type":"Prophecy","text":"Unbearable Whispers III Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Unbearable Whispers IV","type":"Prophecy","text":"Unbearable Whispers IV Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Unbearable Whispers V","type":"Prophecy","text":"Unbearable Whispers V Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Undead Uprising","type":"Prophecy","text":"Undead Uprising Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Living Fires","type":"Prophecy","text":"Living Fires Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Unnatural Energy","type":"Prophecy","text":"Unnatural Energy Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"In the Grasp of Corruption","type":"Prophecy","text":"In the Grasp of Corruption Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Hardened Armour","type":"Prophecy","text":"The Hardened Armour Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Beautiful Guide","type":"Prophecy","text":"The Beautiful Guide Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Sharpened Blade","type":"Prophecy","text":"The Sharpened Blade Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Corrupt","type":"Prophecy","text":"The Corrupt Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"The Forgotten Soldiers","type":"Prophecy","text":"The Forgotten Soldiers Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Darktongue\u0027s Shriek","type":"Prophecy","text":"Darktongue\u0027s Shriek Prophecy","flags":{"prophecy":true,"unique":false}},{"name":"Greed\u0027s Folly","type":"Prophecy","text":"Greed\u0027s Folly Prophecy","flags":{"prophecy":true,"unique":false}}]},{"label":"Itemised Monsters","entries":[{"type":"Metamorph Brain","text":"Metamorph Brain","flags":{"prophecy":false,"unique":false}},{"type":"Metamorph Eye","text":"Metamorph Eye","flags":{"prophecy":false,"unique":false}},{"type":"Metamorph Heart","text":"Metamorph Heart","flags":{"prophecy":false,"unique":false}},{"type":"Metamorph Liver","text":"Metamorph Liver","flags":{"prophecy":false,"unique":false}},{"type":"Metamorph Lung","text":"Metamorph Lung","flags":{"prophecy":false,"unique":false}},{"type":"The Grey Plague","text":"The Grey Plague","flags":{"prophecy":false,"unique":false}},{"type":"Mephod, the Earth Scorcher","text":"Mephod, the Earth Scorcher","flags":{"prophecy":false,"unique":false}},{"type":"The Steel Soul","text":"The Steel Soul","flags":{"prophecy":false,"unique":false}},{"type":"Guardian of the Chimera","text":"Guardian of the Chimera","flags":{"prophecy":false,"unique":false}},{"type":"Guardian of the Hydra","text":"Guardian of the Hydra","flags":{"prophecy":false,"unique":false}},{"type":"Guardian of the Minotaur","text":"Guardian of the Minotaur","flags":{"prophecy":false,"unique":false}},{"type":"Guardian of the Phoenix","text":"Guardian of the Phoenix","flags":{"prophecy":false,"unique":false}},{"type":"The Cleansing Light","text":"The Cleansing Light","flags":{"prophecy":false,"unique":false}},{"type":"Woad, Mockery of Man","text":"Woad, Mockery of Man","flags":{"prophecy":false,"unique":false}},{"type":"Oriath\u0027s Virtue","text":"Oriath\u0027s Virtue","flags":{"prophecy":false,"unique":false}},{"type":"Legius Garhall","text":"Legius Garhall","flags":{"prophecy":false,"unique":false}},{"type":"Oriath\u0027s Vengeance","text":"Oriath\u0027s Vengeance","flags":{"prophecy":false,"unique":false}},{"type":"Oriath\u0027s Vigil","text":"Oriath\u0027s Vigil","flags":{"prophecy":false,"unique":false}},{"type":"Barthol, the Corruptor","text":"Barthol, the Corruptor","flags":{"prophecy":false,"unique":false}},{"type":"Warmonger","text":"Warmonger","flags":{"prophecy":false,"unique":false}},{"type":"Tyrant","text":"Tyrant","flags":{"prophecy":false,"unique":false}},{"type":"Blackguard Tempest","text":"Blackguard Tempest","flags":{"prophecy":false,"unique":false}},{"type":"Blackguard Avenger","text":"Blackguard Avenger","flags":{"prophecy":false,"unique":false}},{"type":"Piety the Empyrean","text":"Piety the Empyrean","flags":{"prophecy":false,"unique":false}},{"type":"Nightmare Manifest","text":"Nightmare Manifest","flags":{"prophecy":false,"unique":false}},{"type":"Master of the Blade","text":"Master of the Blade","flags":{"prophecy":false,"unique":false}},{"type":"Leif, the Swift-Handed","text":"Leif, the Swift-Handed","flags":{"prophecy":false,"unique":false}},{"type":"Enticer of Rot","text":"Enticer of Rot","flags":{"prophecy":false,"unique":false}},{"type":"Witch of the Cauldron","text":"Witch of the Cauldron","flags":{"prophecy":false,"unique":false}},{"type":"Oak the Mighty","text":"Oak the Mighty","flags":{"prophecy":false,"unique":false}},{"type":"Aulen Greychain","text":"Aulen Greychain","flags":{"prophecy":false,"unique":false}},{"type":"Sumter the Twisted","text":"Sumter the Twisted","flags":{"prophecy":false,"unique":false}},{"type":"Massier","text":"Massier","flags":{"prophecy":false,"unique":false}},{"type":"Lord of the Ashen Arrow","text":"Lord of the Ashen Arrow","flags":{"prophecy":false,"unique":false}},{"type":"The Sanguine Siren","text":"The Sanguine Siren","flags":{"prophecy":false,"unique":false}},{"type":"Marrowcrush","text":"Marrowcrush","flags":{"prophecy":false,"unique":false}},{"type":"The Great White Beast","text":"The Great White Beast","flags":{"prophecy":false,"unique":false}},{"type":"The Great White Bones","text":"The Great White Bones","flags":{"prophecy":false,"unique":false}},{"type":"Cave Beast","text":"Cave Beast","flags":{"prophecy":false,"unique":false}},{"type":"Shaggy Monstrosity","text":"Shaggy Monstrosity","flags":{"prophecy":false,"unique":false}},{"type":"Bone Cruncher","text":"Bone Cruncher","flags":{"prophecy":false,"unique":false}},{"type":"Hairy Bonecruncher","text":"Hairy Bonecruncher","flags":{"prophecy":false,"unique":false}},{"type":"Thicket Hulk","text":"Thicket Hulk","flags":{"prophecy":false,"unique":false}},{"type":"Enraptured Beast","text":"Enraptured Beast","flags":{"prophecy":false,"unique":false}},{"type":"Skeletal Beast","text":"Skeletal Beast","flags":{"prophecy":false,"unique":false}},{"type":"Corrupted Beast","text":"Corrupted Beast","flags":{"prophecy":false,"unique":false}},{"type":"Tyrannursus Maximus","text":"Tyrannursus Maximus","flags":{"prophecy":false,"unique":false}},{"type":"Forest Beast","text":"Forest Beast","flags":{"prophecy":false,"unique":false}},{"type":"Primal Beast","text":"Primal Beast","flags":{"prophecy":false,"unique":false}},{"type":"Armour Cruncher","text":"Armour Cruncher","flags":{"prophecy":false,"unique":false}},{"type":"Infected Beast","text":"Infected Beast","flags":{"prophecy":false,"unique":false}},{"type":"Risen Infested Beast","text":"Risen Infested Beast","flags":{"prophecy":false,"unique":false}},{"type":"Beast of the Pits","text":"Beast of the Pits","flags":{"prophecy":false,"unique":false}},{"type":"Executioner Bloodwing","text":"Executioner Bloodwing","flags":{"prophecy":false,"unique":false}},{"type":"Calderus","text":"Calderus","flags":{"prophecy":false,"unique":false}},{"type":"Junglemare","text":"Junglemare","flags":{"prophecy":false,"unique":false}},{"type":"Mutated Chieftain","text":"Mutated Chieftain","flags":{"prophecy":false,"unique":false}},{"type":"Crazed Chieftain","text":"Crazed Chieftain","flags":{"prophecy":false,"unique":false}},{"type":"Blood Progenitor","text":"Blood Progenitor","flags":{"prophecy":false,"unique":false}},{"type":"The Primal One","text":"The Primal One","flags":{"prophecy":false,"unique":false}},{"type":"Blood Chieftain","text":"Blood Chieftain","flags":{"prophecy":false,"unique":false}},{"type":"Carnage Chieftain","text":"Carnage Chieftain","flags":{"prophecy":false,"unique":false}},{"type":"Stygian Silverback","text":"Stygian Silverback","flags":{"prophecy":false,"unique":false}},{"type":"Aboriginal Chieftain","text":"Aboriginal Chieftain","flags":{"prophecy":false,"unique":false}},{"type":"Host Chieftain","text":"Host Chieftain","flags":{"prophecy":false,"unique":false}},{"type":"Hollowskull, the Willing Host","text":"Hollowskull, the Willing Host","flags":{"prophecy":false,"unique":false}},{"type":"Simi, the Nature Touched","text":"Simi, the Nature Touched","flags":{"prophecy":false,"unique":false}},{"type":"Nassar, Lion of the Seas","text":"Nassar, Lion of the Seas","flags":{"prophecy":false,"unique":false}},{"type":"Sulphurspawn","text":"Sulphurspawn","flags":{"prophecy":false,"unique":false}},{"type":"Bazur","text":"Bazur","flags":{"prophecy":false,"unique":false}},{"type":"Penitentiary Incarcerator","text":"Penitentiary Incarcerator","flags":{"prophecy":false,"unique":false}},{"type":"Fighting Bull","text":"Fighting Bull","flags":{"prophecy":false,"unique":false}},{"type":"Boulderback","text":"Boulderback","flags":{"prophecy":false,"unique":false}},{"type":"Crusher of Gladiators","text":"Crusher of Gladiators","flags":{"prophecy":false,"unique":false}},{"type":"Avalanche Rider","text":"Avalanche Rider","flags":{"prophecy":false,"unique":false}},{"type":"Grazing Taurus","text":"Grazing Taurus","flags":{"prophecy":false,"unique":false}},{"type":"Void Anomaly","text":"Void Anomaly","flags":{"prophecy":false,"unique":false}},{"type":"Avatar of Undoing","text":"Avatar of Undoing","flags":{"prophecy":false,"unique":false}},{"type":"Rooster Fiend","text":"Rooster Fiend","flags":{"prophecy":false,"unique":false}},{"type":"Rooster Demon","text":"Rooster Demon","flags":{"prophecy":false,"unique":false}},{"type":"Eyepecker","text":"Eyepecker","flags":{"prophecy":false,"unique":false}},{"type":"Stonebeak, Battle Fowl","text":"Stonebeak, Battle Fowl","flags":{"prophecy":false,"unique":false}},{"type":"Talon Archer","text":"Talon Archer","flags":{"prophecy":false,"unique":false}},{"type":"Feral Fowl","text":"Feral Fowl","flags":{"prophecy":false,"unique":false}},{"type":"Bleached Crawler","text":"Bleached Crawler","flags":{"prophecy":false,"unique":false}},{"type":"Savage Crab","text":"Savage Crab","flags":{"prophecy":false,"unique":false}},{"type":"Enraptured Crab","text":"Enraptured Crab","flags":{"prophecy":false,"unique":false}},{"type":"Infested Crab","text":"Infested Crab","flags":{"prophecy":false,"unique":false}},{"type":"Infested Crawler","text":"Infested Crawler","flags":{"prophecy":false,"unique":false}},{"type":"Ambrius, Legion Slayer","text":"Ambrius, Legion Slayer","flags":{"prophecy":false,"unique":false}},{"type":"K\u0027aj Q\u0027ura","text":"K\u0027aj Q\u0027ura","flags":{"prophecy":false,"unique":false}},{"type":"K\u0027aj Y\u0027ara\u0027az","text":"K\u0027aj Y\u0027ara\u0027az","flags":{"prophecy":false,"unique":false}},{"type":"K\u0027aj A\u0027alai","text":"K\u0027aj A\u0027alai","flags":{"prophecy":false,"unique":false}},{"type":"The Fallen Queen","text":"The Fallen Queen","flags":{"prophecy":false,"unique":false}},{"type":"Lady Stormflay","text":"Lady Stormflay","flags":{"prophecy":false,"unique":false}},{"type":"The Hollow Lady","text":"The Hollow Lady","flags":{"prophecy":false,"unique":false}},{"type":"The Broken Prince","text":"The Broken Prince","flags":{"prophecy":false,"unique":false}},{"type":"Erebix, Light\u0027s Bane","text":"Erebix, Light\u0027s Bane","flags":{"prophecy":false,"unique":false}},{"type":"Erythrophagia","text":"Erythrophagia","flags":{"prophecy":false,"unique":false}},{"type":"Portentia, the Foul","text":"Portentia, the Foul","flags":{"prophecy":false,"unique":false}},{"type":"Doedre the Defiler","text":"Doedre the Defiler","flags":{"prophecy":false,"unique":false}},{"type":"The Hallowed Husk","text":"The Hallowed Husk","flags":{"prophecy":false,"unique":false}},{"type":"Infected Ambusher","text":"Infected Ambusher","flags":{"prophecy":false,"unique":false}},{"type":"Mutated Ursa","text":"Mutated Ursa","flags":{"prophecy":false,"unique":false}},{"type":"Plummeting Ursa","text":"Plummeting Ursa","flags":{"prophecy":false,"unique":false}},{"type":"Tunnelfiend","text":"Tunnelfiend","flags":{"prophecy":false,"unique":false}},{"type":"Infested Tunnelfiend","text":"Infested Tunnelfiend","flags":{"prophecy":false,"unique":false}},{"type":"Woods Ursa","text":"Woods Ursa","flags":{"prophecy":false,"unique":false}},{"type":"Infested Ursa","text":"Infested Ursa","flags":{"prophecy":false,"unique":false}},{"type":"Q\u0027uru","text":"Q\u0027uru","flags":{"prophecy":false,"unique":false}},{"type":"It That Fell","text":"It That Fell","flags":{"prophecy":false,"unique":false}},{"type":"Torr Olgosso","text":"Torr Olgosso","flags":{"prophecy":false,"unique":false}},{"type":"Damoi Tui","text":"Damoi Tui","flags":{"prophecy":false,"unique":false}},{"type":"Bolt Brownfur, Earth Churner","text":"Bolt Brownfur, Earth Churner","flags":{"prophecy":false,"unique":false}},{"type":"Orra Greengate","text":"Orra Greengate","flags":{"prophecy":false,"unique":false}},{"type":"Thena Moga, the Crimson Storm","text":"Thena Moga, the Crimson Storm","flags":{"prophecy":false,"unique":false}},{"type":"Augustina Solaria","text":"Augustina Solaria","flags":{"prophecy":false,"unique":false}},{"type":"Ion Darkshroud, the Hungering Blade","text":"Ion Darkshroud, the Hungering Blade","flags":{"prophecy":false,"unique":false}},{"type":"Wilorin Demontamer","text":"Wilorin Demontamer","flags":{"prophecy":false,"unique":false}},{"type":"Eoin Greyfur","text":"Eoin Greyfur","flags":{"prophecy":false,"unique":false}},{"type":"Igna Phoenix","text":"Igna Phoenix","flags":{"prophecy":false,"unique":false}},{"type":"The Forgotten Soldier","text":"The Forgotten Soldier","flags":{"prophecy":false,"unique":false}},{"type":"Rabid Maw","text":"Rabid Maw","flags":{"prophecy":false,"unique":false}},{"type":"Mutated Maw","text":"Mutated Maw","flags":{"prophecy":false,"unique":false}},{"type":"Fetid Maw","text":"Fetid Maw","flags":{"prophecy":false,"unique":false}},{"type":"Filth Maw","text":"Filth Maw","flags":{"prophecy":false,"unique":false}},{"type":"Spinesnap","text":"Spinesnap","flags":{"prophecy":false,"unique":false}},{"type":"Varhesh, Shimmering Aberration","text":"Varhesh, Shimmering Aberration","flags":{"prophecy":false,"unique":false}},{"type":"Infested Maw","text":"Infested Maw","flags":{"prophecy":false,"unique":false}},{"type":"Bestial Maw","text":"Bestial Maw","flags":{"prophecy":false,"unique":false}},{"type":"Blue Frog","text":"Blue Frog","flags":{"prophecy":false,"unique":false}},{"type":"Common Frog","text":"Common Frog","flags":{"prophecy":false,"unique":false}},{"type":"Strange Frog","text":"Strange Frog","flags":{"prophecy":false,"unique":false}},{"type":"Hephaeus, The Hammer","text":"Hephaeus, The Hammer","flags":{"prophecy":false,"unique":false}},{"type":"Stalker of the Endless Dunes","text":"Stalker of the Endless Dunes","flags":{"prophecy":false,"unique":false}},{"type":"Captain Tanner Lightfoot","text":"Captain Tanner Lightfoot","flags":{"prophecy":false,"unique":false}},{"type":"Mutated Croaker","text":"Mutated Croaker","flags":{"prophecy":false,"unique":false}},{"type":"Putrid Chimeral","text":"Putrid Chimeral","flags":{"prophecy":false,"unique":false}},{"type":"Twisted Chimeral","text":"Twisted Chimeral","flags":{"prophecy":false,"unique":false}},{"type":"Chimeric Croaker","text":"Chimeric Croaker","flags":{"prophecy":false,"unique":false}},{"type":"Vaulting Croaker","text":"Vaulting Croaker","flags":{"prophecy":false,"unique":false}},{"type":"Genesis Paradisae","text":"Genesis Paradisae","flags":{"prophecy":false,"unique":false}},{"type":"Chrome-infused Croaker","text":"Chrome-infused Croaker","flags":{"prophecy":false,"unique":false}},{"type":"Chrome-touched Croaker","text":"Chrome-touched Croaker","flags":{"prophecy":false,"unique":false}},{"type":"Plumed Chimeral","text":"Plumed Chimeral","flags":{"prophecy":false,"unique":false}},{"type":"Feral Chimeral","text":"Feral Chimeral","flags":{"prophecy":false,"unique":false}},{"type":"Paradisae Venenum","text":"Paradisae Venenum","flags":{"prophecy":false,"unique":false}},{"type":"Alpha Paradisae","text":"Alpha Paradisae","flags":{"prophecy":false,"unique":false}},{"type":"The Basilisk","text":"The Basilisk","flags":{"prophecy":false,"unique":false}},{"type":"The Gorgon","text":"The Gorgon","flags":{"prophecy":false,"unique":false}},{"type":"Chrome-infused Chimeral","text":"Chrome-infused Chimeral","flags":{"prophecy":false,"unique":false}},{"type":"Chrome-touched Chimeral","text":"Chrome-touched Chimeral","flags":{"prophecy":false,"unique":false}},{"type":"Sallazzang","text":"Sallazzang","flags":{"prophecy":false,"unique":false}},{"type":"Wild Chimeral","text":"Wild Chimeral","flags":{"prophecy":false,"unique":false}},{"type":"Pesquin, the Mad Baron","text":"Pesquin, the Mad Baron","flags":{"prophecy":false,"unique":false}},{"type":"Telvar, the Inebriated","text":"Telvar, the Inebriated","flags":{"prophecy":false,"unique":false}},{"type":"Avatar of the Forge","text":"Avatar of the Forge","flags":{"prophecy":false,"unique":false}},{"type":"Avatar of the Skies","text":"Avatar of the Skies","flags":{"prophecy":false,"unique":false}},{"type":"Avatar of the Huntress","text":"Avatar of the Huntress","flags":{"prophecy":false,"unique":false}},{"type":"Bringer of Blood","text":"Bringer of Blood","flags":{"prophecy":false,"unique":false}},{"type":"Konu, Maker of Wind","text":"Konu, Maker of Wind","flags":{"prophecy":false,"unique":false}},{"type":"Goatman","text":"Goatman","flags":{"prophecy":false,"unique":false}},{"type":"Goatman Stomper","text":"Goatman Stomper","flags":{"prophecy":false,"unique":false}},{"type":"Rek\u0027tar, the Breaker","text":"Rek\u0027tar, the Breaker","flags":{"prophecy":false,"unique":false}},{"type":"The Faun","text":"The Faun","flags":{"prophecy":false,"unique":false}},{"type":"Elder-Blessed Goatman","text":"Elder-Blessed Goatman","flags":{"prophecy":false,"unique":false}},{"type":"Bearded Devil","text":"Bearded Devil","flags":{"prophecy":false,"unique":false}},{"type":"Guardian of the Mound","text":"Guardian of the Mound","flags":{"prophecy":false,"unique":false}},{"type":"Ungulath","text":"Ungulath","flags":{"prophecy":false,"unique":false}},{"type":"Sheaq, Maker of Floods","text":"Sheaq, Maker of Floods","flags":{"prophecy":false,"unique":false}},{"type":"Goatman Shaman","text":"Goatman Shaman","flags":{"prophecy":false,"unique":false}},{"type":"Goatman Fire-raiser","text":"Goatman Fire-raiser","flags":{"prophecy":false,"unique":false}},{"type":"Bearded Shaman","text":"Bearded Shaman","flags":{"prophecy":false,"unique":false}},{"type":"Bearded Skycaller","text":"Bearded Skycaller","flags":{"prophecy":false,"unique":false}},{"type":"Colossus Crusher","text":"Colossus Crusher","flags":{"prophecy":false,"unique":false}},{"type":"Alpine Devil","text":"Alpine Devil","flags":{"prophecy":false,"unique":false}},{"type":"Hill Devil","text":"Hill Devil","flags":{"prophecy":false,"unique":false}},{"type":"Alpine Shaman","text":"Alpine Shaman","flags":{"prophecy":false,"unique":false}},{"type":"Sebbert, Crescent\u0027s Point","text":"Sebbert, Crescent\u0027s Point","flags":{"prophecy":false,"unique":false}},{"type":"Jorus, Sky\u0027s Edge","text":"Jorus, Sky\u0027s Edge","flags":{"prophecy":false,"unique":false}},{"type":"Herald of Ashes","text":"Herald of Ashes","flags":{"prophecy":false,"unique":false}},{"type":"Herald of Thunder","text":"Herald of Thunder","flags":{"prophecy":false,"unique":false}},{"type":"Breaker Toruul","text":"Breaker Toruul","flags":{"prophecy":false,"unique":false}},{"type":"Flame Hellion","text":"Flame Hellion","flags":{"prophecy":false,"unique":false}},{"type":"Ruins Hellion","text":"Ruins Hellion","flags":{"prophecy":false,"unique":false}},{"type":"The Burning Menace","text":"The Burning Menace","flags":{"prophecy":false,"unique":false}},{"type":"Shackled Hellion","text":"Shackled Hellion","flags":{"prophecy":false,"unique":false}},{"type":"Mountain Hellion","text":"Mountain Hellion","flags":{"prophecy":false,"unique":false}},{"type":"Mountain Hellion Alpha","text":"Mountain Hellion Alpha","flags":{"prophecy":false,"unique":false}},{"type":"Enslaved Hellion","text":"Enslaved Hellion","flags":{"prophecy":false,"unique":false}},{"type":"Dune Hellion","text":"Dune Hellion","flags":{"prophecy":false,"unique":false}},{"type":"Elder-Blessed Hellion","text":"Elder-Blessed Hellion","flags":{"prophecy":false,"unique":false}},{"type":"Bladetooth","text":"Bladetooth","flags":{"prophecy":false,"unique":false}},{"type":"Fury Hound","text":"Fury Hound","flags":{"prophecy":false,"unique":false}},{"type":"War Hound","text":"War Hound","flags":{"prophecy":false,"unique":false}},{"type":"Raihara, Tukohama\u0027s Loyal","text":"Raihara, Tukohama\u0027s Loyal","flags":{"prophecy":false,"unique":false}},{"type":"Fragment of Winter","text":"Fragment of Winter","flags":{"prophecy":false,"unique":false}},{"type":"Shadow of the Vaal","text":"Shadow of the Vaal","flags":{"prophecy":false,"unique":false}},{"type":"Carrion Minion","text":"Carrion Minion","flags":{"prophecy":false,"unique":false}},{"type":"Carrion Swarmer","text":"Carrion Swarmer","flags":{"prophecy":false,"unique":false}},{"type":"Carrion Burrower","text":"Carrion Burrower","flags":{"prophecy":false,"unique":false}},{"type":"Scum Crawler","text":"Scum Crawler","flags":{"prophecy":false,"unique":false}},{"type":"Nightmarish Crawler","text":"Nightmarish Crawler","flags":{"prophecy":false,"unique":false}},{"type":"Mother of the Swarm","text":"Mother of the Swarm","flags":{"prophecy":false,"unique":false}},{"type":"The Sunburst Queen","text":"The Sunburst Queen","flags":{"prophecy":false,"unique":false}},{"type":"Rabid Broodqueen","text":"Rabid Broodqueen","flags":{"prophecy":false,"unique":false}},{"type":"Mutated Broodqueen","text":"Mutated Broodqueen","flags":{"prophecy":false,"unique":false}},{"type":"Rabid Minion","text":"Rabid Minion","flags":{"prophecy":false,"unique":false}},{"type":"Carrion Queen","text":"Carrion Queen","flags":{"prophecy":false,"unique":false}},{"type":"Gorulis, Will-Thief","text":"Gorulis, Will-Thief","flags":{"prophecy":false,"unique":false}},{"type":"Nightmarish Carrion","text":"Nightmarish Carrion","flags":{"prophecy":false,"unique":false}},{"type":"The Infernal King","text":"The Infernal King","flags":{"prophecy":false,"unique":false}},{"type":"Preethi, Eye-Pecker","text":"Preethi, Eye-Pecker","flags":{"prophecy":false,"unique":false}},{"type":"Kitava, The Destroyer","text":"Kitava, The Destroyer","flags":{"prophecy":false,"unique":false}},{"type":"Avian Retch","text":"Avian Retch","flags":{"prophecy":false,"unique":false}},{"type":"Inti of the Blood Moon","text":"Inti of the Blood Moon","flags":{"prophecy":false,"unique":false}},{"type":"Gluttonous Gull","text":"Gluttonous Gull","flags":{"prophecy":false,"unique":false}},{"type":"Elder-Blessed Retch","text":"Elder-Blessed Retch","flags":{"prophecy":false,"unique":false}},{"type":"The Goddess","text":"The Goddess","flags":{"prophecy":false,"unique":false}},{"type":"Vision of Justice","text":"Vision of Justice","flags":{"prophecy":false,"unique":false}},{"type":"Saqawine Rhex","text":"Saqawine Rhex","flags":{"prophecy":false,"unique":false}},{"type":"Farric Gargantuan","text":"Farric Gargantuan","flags":{"prophecy":false,"unique":false}},{"type":"Farric Taurus","text":"Farric Taurus","flags":{"prophecy":false,"unique":false}},{"type":"Farric Chieftain","text":"Farric Chieftain","flags":{"prophecy":false,"unique":false}},{"type":"Farric Goliath","text":"Farric Goliath","flags":{"prophecy":false,"unique":false}},{"type":"Fenumal Scorpion","text":"Fenumal Scorpion","flags":{"prophecy":false,"unique":false}},{"type":"Craicic Savage Crab","text":"Craicic Savage Crab","flags":{"prophecy":false,"unique":false}},{"type":"Craicic Spider Crab","text":"Craicic Spider Crab","flags":{"prophecy":false,"unique":false}},{"type":"Farric Ursa","text":"Farric Ursa","flags":{"prophecy":false,"unique":false}},{"type":"Craicic Maw","text":"Craicic Maw","flags":{"prophecy":false,"unique":false}},{"type":"Craicic Chimeral","text":"Craicic Chimeral","flags":{"prophecy":false,"unique":false}},{"type":"Farric Goatman","text":"Farric Goatman","flags":{"prophecy":false,"unique":false}},{"type":"Farric Flame Hellion Alpha","text":"Farric Flame Hellion Alpha","flags":{"prophecy":false,"unique":false}},{"type":"Farric Frost Hellion Alpha","text":"Farric Frost Hellion Alpha","flags":{"prophecy":false,"unique":false}},{"type":"Farric Magma Hound","text":"Farric Magma Hound","flags":{"prophecy":false,"unique":false}},{"type":"Saqawine Chimeral","text":"Saqawine Chimeral","flags":{"prophecy":false,"unique":false}},{"type":"Fenumal Queen","text":"Fenumal Queen","flags":{"prophecy":false,"unique":false}},{"type":"Saqawine Retch","text":"Saqawine Retch","flags":{"prophecy":false,"unique":false}},{"type":"Farric Lynx Alpha","text":"Farric Lynx Alpha","flags":{"prophecy":false,"unique":false}},{"type":"Saqawal, First of the Sky","text":"Saqawal, First of the Sky","flags":{"prophecy":false,"unique":false}},{"type":"Farric Ape","text":"Farric Ape","flags":{"prophecy":false,"unique":false}},{"type":"Craiceann, First of the Deep","text":"Craiceann, First of the Deep","flags":{"prophecy":false,"unique":false}},{"type":"Craicic Vassal","text":"Craicic Vassal","flags":{"prophecy":false,"unique":false}},{"type":"Farric Pit Hound","text":"Farric Pit Hound","flags":{"prophecy":false,"unique":false}},{"type":"Saqawine Rhoa","text":"Saqawine Rhoa","flags":{"prophecy":false,"unique":false}},{"type":"Fenumal Devourer","text":"Fenumal Devourer","flags":{"prophecy":false,"unique":false}},{"type":"Fenumal Scrabbler","text":"Fenumal Scrabbler","flags":{"prophecy":false,"unique":false}},{"type":"Craicic Sand Spitter","text":"Craicic Sand Spitter","flags":{"prophecy":false,"unique":false}},{"type":"Craicic Squid","text":"Craicic Squid","flags":{"prophecy":false,"unique":false}},{"type":"Craicic Shield Crab","text":"Craicic Shield Crab","flags":{"prophecy":false,"unique":false}},{"type":"Saqawine Cobra","text":"Saqawine Cobra","flags":{"prophecy":false,"unique":false}},{"type":"Saqawine Blood Viper","text":"Saqawine Blood Viper","flags":{"prophecy":false,"unique":false}},{"type":"Fenumal Widow","text":"Fenumal Widow","flags":{"prophecy":false,"unique":false}},{"type":"Fenumal Plagued Arachnid","text":"Fenumal Plagued Arachnid","flags":{"prophecy":false,"unique":false}},{"type":"Fenumal Hybrid Arachnid","text":"Fenumal Hybrid Arachnid","flags":{"prophecy":false,"unique":false}},{"type":"Fenumus, First of the Night","text":"Fenumus, First of the Night","flags":{"prophecy":false,"unique":false}},{"type":"Craicic Watcher","text":"Craicic Watcher","flags":{"prophecy":false,"unique":false}},{"type":"Farric Tiger Alpha","text":"Farric Tiger Alpha","flags":{"prophecy":false,"unique":false}},{"type":"Farrul, First of the Plains","text":"Farrul, First of the Plains","flags":{"prophecy":false,"unique":false}},{"type":"Saqawine Vulture","text":"Saqawine Vulture","flags":{"prophecy":false,"unique":false}},{"type":"Farric Wolf Alpha","text":"Farric Wolf Alpha","flags":{"prophecy":false,"unique":false}},{"type":"Stone of the Currents","text":"Stone of the Currents","flags":{"prophecy":false,"unique":false}},{"type":"Mutated Flamebeast","text":"Mutated Flamebeast","flags":{"prophecy":false,"unique":false}},{"type":"Crazed Flamebeast","text":"Crazed Flamebeast","flags":{"prophecy":false,"unique":false}},{"type":"Shredder of Gladiators","text":"Shredder of Gladiators","flags":{"prophecy":false,"unique":false}},{"type":"Dire Wolf","text":"Dire Wolf","flags":{"prophecy":false,"unique":false}},{"type":"Arctic Wolf","text":"Arctic Wolf","flags":{"prophecy":false,"unique":false}},{"type":"Snow Wolf","text":"Snow Wolf","flags":{"prophecy":false,"unique":false}},{"type":"Freezing Wolf","text":"Freezing Wolf","flags":{"prophecy":false,"unique":false}},{"type":"Mountain Lynx","text":"Mountain Lynx","flags":{"prophecy":false,"unique":false}},{"type":"Eater of Souls","text":"Eater of Souls","flags":{"prophecy":false,"unique":false}},{"type":"Nightmare\u0027s Omen","text":"Nightmare\u0027s Omen","flags":{"prophecy":false,"unique":false}},{"type":"Visceris","text":"Visceris","flags":{"prophecy":false,"unique":false}},{"type":"He of Many Pieces","text":"He of Many Pieces","flags":{"prophecy":false,"unique":false}},{"type":"Maligaro the Mutilator","text":"Maligaro the Mutilator","flags":{"prophecy":false,"unique":false}},{"type":"Escaped Rhex","text":"Escaped Rhex","flags":{"prophecy":false,"unique":false}},{"type":"Wild Rhex","text":"Wild Rhex","flags":{"prophecy":false,"unique":false}},{"type":"Adolescent Rhex","text":"Adolescent Rhex","flags":{"prophecy":false,"unique":false}},{"type":"Maternal Rhex","text":"Maternal Rhex","flags":{"prophecy":false,"unique":false}},{"type":"Unravelling Horror","text":"Unravelling Horror","flags":{"prophecy":false,"unique":false}},{"type":"Shrieker Eihal","text":"Shrieker Eihal","flags":{"prophecy":false,"unique":false}},{"type":"Champion of the Hollows","text":"Champion of the Hollows","flags":{"prophecy":false,"unique":false}},{"type":"Lord of the Hollows","text":"Lord of the Hollows","flags":{"prophecy":false,"unique":false}},{"type":"Messenger of the Hollows","text":"Messenger of the Hollows","flags":{"prophecy":false,"unique":false}},{"type":"Spirit of Aidan","text":"Spirit of Aidan","flags":{"prophecy":false,"unique":false}},{"type":"Spirit of Nadia","text":"Spirit of Nadia","flags":{"prophecy":false,"unique":false}},{"type":"Blood Ape","text":"Blood Ape","flags":{"prophecy":false,"unique":false}},{"type":"Dread Primate","text":"Dread Primate","flags":{"prophecy":false,"unique":false}},{"type":"Infested Ape","text":"Infested Ape","flags":{"prophecy":false,"unique":false}},{"type":"Stygian Ape","text":"Stygian Ape","flags":{"prophecy":false,"unique":false}},{"type":"Aidan the Frenzied","text":"Aidan the Frenzied","flags":{"prophecy":false,"unique":false}},{"type":"Blood Stasis ","text":"Blood Stasis ","flags":{"prophecy":false,"unique":false}},{"type":"Blood Morpher","text":"Blood Morpher","flags":{"prophecy":false,"unique":false}},{"type":"Nadia the Soothing","text":"Nadia the Soothing","flags":{"prophecy":false,"unique":false}},{"type":"Carnage Ape","text":"Carnage Ape","flags":{"prophecy":false,"unique":false}},{"type":"Barrow Ape","text":"Barrow Ape","flags":{"prophecy":false,"unique":false}},{"type":"Primitive Ape","text":"Primitive Ape","flags":{"prophecy":false,"unique":false}},{"type":"Echo of the Verdant","text":"Echo of the Verdant","flags":{"prophecy":false,"unique":false}},{"type":"Titan of the Grove","text":"Titan of the Grove","flags":{"prophecy":false,"unique":false}},{"type":"Pileah, Corpse Burner","text":"Pileah, Corpse Burner","flags":{"prophecy":false,"unique":false}},{"type":"Pileah, Burning Corpse","text":"Pileah, Burning Corpse","flags":{"prophecy":false,"unique":false}},{"type":"Xixic, High Necromancer","text":"Xixic, High Necromancer","flags":{"prophecy":false,"unique":false}},{"type":"Brinecrack","text":"Brinecrack","flags":{"prophecy":false,"unique":false}},{"type":"Waste Lurcher","text":"Waste Lurcher","flags":{"prophecy":false,"unique":false}},{"type":"Parasite","text":"Parasite","flags":{"prophecy":false,"unique":false}},{"type":"Ravenous Parasite","text":"Ravenous Parasite","flags":{"prophecy":false,"unique":false}},{"type":"Vicious Parasite","text":"Vicious Parasite","flags":{"prophecy":false,"unique":false}},{"type":"The Encephelophage","text":"The Encephelophage","flags":{"prophecy":false,"unique":false}},{"type":"Plated Parasite","text":"Plated Parasite","flags":{"prophecy":false,"unique":false}},{"type":"Spitting Parasite","text":"Spitting Parasite","flags":{"prophecy":false,"unique":false}},{"type":"Poisonous Parasite","text":"Poisonous Parasite","flags":{"prophecy":false,"unique":false}},{"type":"Brine Vassal","text":"Brine Vassal","flags":{"prophecy":false,"unique":false}},{"type":"Swarthy Mollusc","text":"Swarthy Mollusc","flags":{"prophecy":false,"unique":false}},{"type":"Platinia","text":"Platinia","flags":{"prophecy":false,"unique":false}},{"type":"Auriot","text":"Auriot","flags":{"prophecy":false,"unique":false}},{"type":"Rhodion","text":"Rhodion","flags":{"prophecy":false,"unique":false}},{"type":"Pallias","text":"Pallias","flags":{"prophecy":false,"unique":false}},{"type":"Argient","text":"Argient","flags":{"prophecy":false,"unique":false}},{"type":"Rheniot","text":"Rheniot","flags":{"prophecy":false,"unique":false}},{"type":"Pitbull Demon","text":"Pitbull Demon","flags":{"prophecy":false,"unique":false}},{"type":"Vicious Hound","text":"Vicious Hound","flags":{"prophecy":false,"unique":false}},{"type":"Steelchaw","text":"Steelchaw","flags":{"prophecy":false,"unique":false}},{"type":"Gnar, Eater of Carrion","text":"Gnar, Eater of Carrion","flags":{"prophecy":false,"unique":false}},{"type":"The High Templar","text":"The High Templar","flags":{"prophecy":false,"unique":false}},{"type":"High Lithomancer","text":"High Lithomancer","flags":{"prophecy":false,"unique":false}},{"type":"Purge Hound","text":"Purge Hound","flags":{"prophecy":false,"unique":false}},{"type":"Lola, the Fierce","text":"Lola, the Fierce","flags":{"prophecy":false,"unique":false}},{"type":"Rocco, the Bloodthirsty","text":"Rocco, the Bloodthirsty","flags":{"prophecy":false,"unique":false}},{"type":"Drek, Apex Hunter","text":"Drek, Apex Hunter","flags":{"prophecy":false,"unique":false}},{"type":"Thraxia","text":"Thraxia","flags":{"prophecy":false,"unique":false}},{"type":"Infected Rhoa","text":"Infected Rhoa","flags":{"prophecy":false,"unique":false}},{"type":"Rabid Rhoa","text":"Rabid Rhoa","flags":{"prophecy":false,"unique":false}},{"type":"Mutated Rhoa","text":"Mutated Rhoa","flags":{"prophecy":false,"unique":false}},{"type":"Drought-Maddened Rhoa","text":"Drought-Maddened Rhoa","flags":{"prophecy":false,"unique":false}},{"type":"Skullbeak","text":"Skullbeak","flags":{"prophecy":false,"unique":false}},{"type":"Ventarus","text":"Ventarus","flags":{"prophecy":false,"unique":false}},{"type":"Rhoa Scavenger","text":"Rhoa Scavenger","flags":{"prophecy":false,"unique":false}},{"type":"Albino Rhoa","text":"Albino Rhoa","flags":{"prophecy":false,"unique":false}},{"type":"Great Rhoa","text":"Great Rhoa","flags":{"prophecy":false,"unique":false}},{"type":"Murk Runner","text":"Murk Runner","flags":{"prophecy":false,"unique":false}},{"type":"Oozeback Bloom","text":"Oozeback Bloom","flags":{"prophecy":false,"unique":false}},{"type":"The Cadaver Bull","text":"The Cadaver Bull","flags":{"prophecy":false,"unique":false}},{"type":"Infested Rhoa","text":"Infested Rhoa","flags":{"prophecy":false,"unique":false}},{"type":"Bone Rhoa","text":"Bone Rhoa","flags":{"prophecy":false,"unique":false}},{"type":"Corrupted Rhoa","text":"Corrupted Rhoa","flags":{"prophecy":false,"unique":false}},{"type":"Bone Scavenger","text":"Bone Scavenger","flags":{"prophecy":false,"unique":false}},{"type":"Elder-Blessed Rhoa","text":"Elder-Blessed Rhoa","flags":{"prophecy":false,"unique":false}},{"type":"Zombie Rhoa","text":"Zombie Rhoa","flags":{"prophecy":false,"unique":false}},{"type":"Ghostram","text":"Ghostram","flags":{"prophecy":false,"unique":false}},{"type":"Primordial Rhoa","text":"Primordial Rhoa","flags":{"prophecy":false,"unique":false}},{"type":"The Eroding One","text":"The Eroding One","flags":{"prophecy":false,"unique":false}},{"type":"Guardian of the Vault","text":"Guardian of the Vault","flags":{"prophecy":false,"unique":false}},{"type":"Pirate Treasure","text":"Pirate Treasure","flags":{"prophecy":false,"unique":false}},{"type":"Mystic Devourer","text":"Mystic Devourer","flags":{"prophecy":false,"unique":false}},{"type":"Devourer","text":"Devourer","flags":{"prophecy":false,"unique":false}},{"type":"Tunnelworm","text":"Tunnelworm","flags":{"prophecy":false,"unique":false}},{"type":"Kamaq, Soilmaker","text":"Kamaq, Soilmaker","flags":{"prophecy":false,"unique":false}},{"type":"The Conqueror Wurm","text":"The Conqueror Wurm","flags":{"prophecy":false,"unique":false}},{"type":"Tunneltrap","text":"Tunneltrap","flags":{"prophecy":false,"unique":false}},{"type":"Ancient Devourer","text":"Ancient Devourer","flags":{"prophecy":false,"unique":false}},{"type":"Dust Scrabbler","text":"Dust Scrabbler","flags":{"prophecy":false,"unique":false}},{"type":"Dirt Scrabbler","text":"Dirt Scrabbler","flags":{"prophecy":false,"unique":false}},{"type":"Infested Skitterer","text":"Infested Skitterer","flags":{"prophecy":false,"unique":false}},{"type":"Lowlands Hopper","text":"Lowlands Hopper","flags":{"prophecy":false,"unique":false}},{"type":"Sand Skitterer","text":"Sand Skitterer","flags":{"prophecy":false,"unique":false}},{"type":"Sand Leaper","text":"Sand Leaper","flags":{"prophecy":false,"unique":false}},{"type":"Quetzerxi","text":"Quetzerxi","flags":{"prophecy":false,"unique":false}},{"type":"Mother of the Hive","text":"Mother of the Hive","flags":{"prophecy":false,"unique":false}},{"type":"Gravel Eater","text":"Gravel Eater","flags":{"prophecy":false,"unique":false}},{"type":"Scrabbling Spitter","text":"Scrabbling Spitter","flags":{"prophecy":false,"unique":false}},{"type":"Rock Spitter","text":"Rock Spitter","flags":{"prophecy":false,"unique":false}},{"type":"Crustacean Sniper","text":"Crustacean Sniper","flags":{"prophecy":false,"unique":false}},{"type":"Crustacean Pelter","text":"Crustacean Pelter","flags":{"prophecy":false,"unique":false}},{"type":"The Dweller of the Deep","text":"The Dweller of the Deep","flags":{"prophecy":false,"unique":false}},{"type":"Granite Eater","text":"Granite Eater","flags":{"prophecy":false,"unique":false}},{"type":"Obsidian Eater","text":"Obsidian Eater","flags":{"prophecy":false,"unique":false}},{"type":"Infested Sniper","text":"Infested Sniper","flags":{"prophecy":false,"unique":false}},{"type":"Toxic Crawler","text":"Toxic Crawler","flags":{"prophecy":false,"unique":false}},{"type":"Sewage Crawler","text":"Sewage Crawler","flags":{"prophecy":false,"unique":false}},{"type":"Fossil Eater","text":"Fossil Eater","flags":{"prophecy":false,"unique":false}},{"type":"Glace","text":"Glace","flags":{"prophecy":false,"unique":false}},{"type":"Megaera","text":"Megaera","flags":{"prophecy":false,"unique":false}},{"type":"Black Scorpion","text":"Black Scorpion","flags":{"prophecy":false,"unique":false}},{"type":"Predatory Scorpion","text":"Predatory Scorpion","flags":{"prophecy":false,"unique":false}},{"type":"Tamipin","text":"Tamipin","flags":{"prophecy":false,"unique":false}},{"type":"Sulphuric Scorpion","text":"Sulphuric Scorpion","flags":{"prophecy":false,"unique":false}},{"type":"Sand Scorpion","text":"Sand Scorpion","flags":{"prophecy":false,"unique":false}},{"type":"Tamulus","text":"Tamulus","flags":{"prophecy":false,"unique":false}},{"type":"Merveil, the Returned","text":"Merveil, the Returned","flags":{"prophecy":false,"unique":false}},{"type":"Fire and Fury","text":"Fire and Fury","flags":{"prophecy":false,"unique":false}},{"type":"Shock and Horror","text":"Shock and Horror","flags":{"prophecy":false,"unique":false}},{"type":"Fated Siren","text":"Fated Siren","flags":{"prophecy":false,"unique":false}},{"type":"Merveil\u0027s Favoured","text":"Merveil\u0027s Favoured","flags":{"prophecy":false,"unique":false}},{"type":"Ambrosia, Daughter of Merveil","text":"Ambrosia, Daughter of Merveil","flags":{"prophecy":false,"unique":false}},{"type":"The Duchess","text":"The Duchess","flags":{"prophecy":false,"unique":false}},{"type":"Rima, Deep Temptress","text":"Rima, Deep Temptress","flags":{"prophecy":false,"unique":false}},{"type":"Amarissa, Daughter of Merveil","text":"Amarissa, Daughter of Merveil","flags":{"prophecy":false,"unique":false}},{"type":"Brood Princess","text":"Brood Princess","flags":{"prophecy":false,"unique":false}},{"type":"Merveil\u0027s Blessed","text":"Merveil\u0027s Blessed","flags":{"prophecy":false,"unique":false}},{"type":"Singing Siren","text":"Singing Siren","flags":{"prophecy":false,"unique":false}},{"type":"Merveil\u0027s Daughter","text":"Merveil\u0027s Daughter","flags":{"prophecy":false,"unique":false}},{"type":"Merveil\u0027s Attendant","text":"Merveil\u0027s Attendant","flags":{"prophecy":false,"unique":false}},{"type":"Merveil\u0027s Chosen","text":"Merveil\u0027s Chosen","flags":{"prophecy":false,"unique":false}},{"type":"Merveil\u0027s Retainer","text":"Merveil\u0027s Retainer","flags":{"prophecy":false,"unique":false}},{"type":"Terror of the Infinite Drifts","text":"Terror of the Infinite Drifts","flags":{"prophecy":false,"unique":false}},{"type":"Gisale, Thought Thief","text":"Gisale, Thought Thief","flags":{"prophecy":false,"unique":false}},{"type":"Shavronne the Sickening","text":"Shavronne the Sickening","flags":{"prophecy":false,"unique":false}},{"type":"Fused Crawler","text":"Fused Crawler","flags":{"prophecy":false,"unique":false}},{"type":"Mutated Winterclaw","text":"Mutated Winterclaw","flags":{"prophecy":false,"unique":false}},{"type":"Scrabbling Menace","text":"Scrabbling Menace","flags":{"prophecy":false,"unique":false}},{"type":"Cave Crustacean","text":"Cave Crustacean","flags":{"prophecy":false,"unique":false}},{"type":"Invading Crustacean","text":"Invading Crustacean","flags":{"prophecy":false,"unique":false}},{"type":"Shield Crab","text":"Shield Crab","flags":{"prophecy":false,"unique":false}},{"type":"Bleached Crustacean","text":"Bleached Crustacean","flags":{"prophecy":false,"unique":false}},{"type":"Shivershell","text":"Shivershell","flags":{"prophecy":false,"unique":false}},{"type":"Deep Crustacean","text":"Deep Crustacean","flags":{"prophecy":false,"unique":false}},{"type":"Infested Crustacean","text":"Infested Crustacean","flags":{"prophecy":false,"unique":false}},{"type":"Thunderskull","text":"Thunderskull","flags":{"prophecy":false,"unique":false}},{"type":"Belcer, the Pirate Lord","text":"Belcer, the Pirate Lord","flags":{"prophecy":false,"unique":false}},{"type":"Pagan Bishop of Agony","text":"Pagan Bishop of Agony","flags":{"prophecy":false,"unique":false}},{"type":"Litanius, the Black Prayer","text":"Litanius, the Black Prayer","flags":{"prophecy":false,"unique":false}},{"type":"Champion of Frost","text":"Champion of Frost","flags":{"prophecy":false,"unique":false}},{"type":"Steelpoint the Avenger","text":"Steelpoint the Avenger","flags":{"prophecy":false,"unique":false}},{"type":"Mirage of Bones","text":"Mirage of Bones","flags":{"prophecy":false,"unique":false}},{"type":"Burtok, Conjurer of Bones","text":"Burtok, Conjurer of Bones","flags":{"prophecy":false,"unique":false}},{"type":"Mutated Adder","text":"Mutated Adder","flags":{"prophecy":false,"unique":false}},{"type":"Infected Adder","text":"Infected Adder","flags":{"prophecy":false,"unique":false}},{"type":"Putrid Serpent","text":"Putrid Serpent","flags":{"prophecy":false,"unique":false}},{"type":"Acid Slitherer","text":"Acid Slitherer","flags":{"prophecy":false,"unique":false}},{"type":"Night Adder","text":"Night Adder","flags":{"prophecy":false,"unique":false}},{"type":"Host Adder","text":"Host Adder","flags":{"prophecy":false,"unique":false}},{"type":"Bramble Cobra","text":"Bramble Cobra","flags":{"prophecy":false,"unique":false}},{"type":"Host Cobra","text":"Host Cobra","flags":{"prophecy":false,"unique":false}},{"type":"Elder-Blessed Cobra","text":"Elder-Blessed Cobra","flags":{"prophecy":false,"unique":false}},{"type":"Spine Serpent","text":"Spine Serpent","flags":{"prophecy":false,"unique":false}},{"type":"Infested Serpent","text":"Infested Serpent","flags":{"prophecy":false,"unique":false}},{"type":"Thornrunner","text":"Thornrunner","flags":{"prophecy":false,"unique":false}},{"type":"Maze Slitherer","text":"Maze Slitherer","flags":{"prophecy":false,"unique":false}},{"type":"Barb Serpent","text":"Barb Serpent","flags":{"prophecy":false,"unique":false}},{"type":"Sand Serpent","text":"Sand Serpent","flags":{"prophecy":false,"unique":false}},{"type":"Glade Mamba","text":"Glade Mamba","flags":{"prophecy":false,"unique":false}},{"type":"Foreseen Spawn","text":"Foreseen Spawn","flags":{"prophecy":false,"unique":false}},{"type":"Cursed Spawn","text":"Cursed Spawn","flags":{"prophecy":false,"unique":false}},{"type":"Fathom Screamer","text":"Fathom Screamer","flags":{"prophecy":false,"unique":false}},{"type":"Siren\u0027s Spawn","text":"Siren\u0027s Spawn","flags":{"prophecy":false,"unique":false}},{"type":"Slimy Bloodsucker","text":"Slimy Bloodsucker","flags":{"prophecy":false,"unique":false}},{"type":"Unstable Larva","text":"Unstable Larva","flags":{"prophecy":false,"unique":false}},{"type":"Slimy Nemesis","text":"Slimy Nemesis","flags":{"prophecy":false,"unique":false}},{"type":"Venomous Spawn","text":"Venomous Spawn","flags":{"prophecy":false,"unique":false}},{"type":"Plagued Arachnid","text":"Plagued Arachnid","flags":{"prophecy":false,"unique":false}},{"type":"Diseased Arachnid","text":"Diseased Arachnid","flags":{"prophecy":false,"unique":false}},{"type":"Maligaro\u0027s Muse","text":"Maligaro\u0027s Muse","flags":{"prophecy":false,"unique":false}},{"type":"Hybrid Arachnid","text":"Hybrid Arachnid","flags":{"prophecy":false,"unique":false}},{"type":"Scalding Arachnid","text":"Scalding Arachnid","flags":{"prophecy":false,"unique":false}},{"type":"Mutated Arachnid","text":"Mutated Arachnid","flags":{"prophecy":false,"unique":false}},{"type":"Putrid Weaver","text":"Putrid Weaver","flags":{"prophecy":false,"unique":false}},{"type":"Sickly Spinner","text":"Sickly Spinner","flags":{"prophecy":false,"unique":false}},{"type":"Arachnoxia","text":"Arachnoxia","flags":{"prophecy":false,"unique":false}},{"type":"Hybrid Widow","text":"Hybrid Widow","flags":{"prophecy":false,"unique":false}},{"type":"Spinner of False Hope","text":"Spinner of False Hope","flags":{"prophecy":false,"unique":false}},{"type":"Queen of the Great Tangle","text":"Queen of the Great Tangle","flags":{"prophecy":false,"unique":false}},{"type":"Pewterfang","text":"Pewterfang","flags":{"prophecy":false,"unique":false}},{"type":"Cintiq, the Inescapable","text":"Cintiq, the Inescapable","flags":{"prophecy":false,"unique":false}},{"type":"Black Death","text":"Black Death","flags":{"prophecy":false,"unique":false}},{"type":"The Weaver","text":"The Weaver","flags":{"prophecy":false,"unique":false}},{"type":"Balah, Duke","text":"Balah, Duke","flags":{"prophecy":false,"unique":false}},{"type":"Lurking Venom","text":"Lurking Venom","flags":{"prophecy":false,"unique":false}},{"type":"Brooding Tarantula","text":"Brooding Tarantula","flags":{"prophecy":false,"unique":false}},{"type":"Buried Tarantula","text":"Buried Tarantula","flags":{"prophecy":false,"unique":false}},{"type":"Maligaro\u0027s Inspiration","text":"Maligaro\u0027s Inspiration","flags":{"prophecy":false,"unique":false}},{"type":"Enraptured Arachnid","text":"Enraptured Arachnid","flags":{"prophecy":false,"unique":false}},{"type":"Virulent Spider","text":"Virulent Spider","flags":{"prophecy":false,"unique":false}},{"type":"Ink Spinner","text":"Ink Spinner","flags":{"prophecy":false,"unique":false}},{"type":"Maze Webspinner","text":"Maze Webspinner","flags":{"prophecy":false,"unique":false}},{"type":"Maze Hatchling","text":"Maze Hatchling","flags":{"prophecy":false,"unique":false}},{"type":"Corrupted Spitter","text":"Corrupted Spitter","flags":{"prophecy":false,"unique":false}},{"type":"Corrupted Arach","text":"Corrupted Arach","flags":{"prophecy":false,"unique":false}},{"type":"Crypt Weaver","text":"Crypt Weaver","flags":{"prophecy":false,"unique":false}},{"type":"Mutant Arach","text":"Mutant Arach","flags":{"prophecy":false,"unique":false}},{"type":"Crypt Ambusher","text":"Crypt Ambusher","flags":{"prophecy":false,"unique":false}},{"type":"Cave Skitterer","text":"Cave Skitterer","flags":{"prophecy":false,"unique":false}},{"type":"Spindle Spider","text":"Spindle Spider","flags":{"prophecy":false,"unique":false}},{"type":"Hatchling","text":"Hatchling","flags":{"prophecy":false,"unique":false}},{"type":"Vaal Recluse","text":"Vaal Recluse","flags":{"prophecy":false,"unique":false}},{"type":"Arakaali\u0027s Daughter","text":"Arakaali\u0027s Daughter","flags":{"prophecy":false,"unique":false}},{"type":"Leaping Spider","text":"Leaping Spider","flags":{"prophecy":false,"unique":false}},{"type":"Noxious Tarantula","text":"Noxious Tarantula","flags":{"prophecy":false,"unique":false}},{"type":"Deadly Tarantula","text":"Deadly Tarantula","flags":{"prophecy":false,"unique":false}},{"type":"Webbed Spider","text":"Webbed Spider","flags":{"prophecy":false,"unique":false}},{"type":"Infected Spiker","text":"Infected Spiker","flags":{"prophecy":false,"unique":false}},{"type":"Porcupine Goliath","text":"Porcupine Goliath","flags":{"prophecy":false,"unique":false}},{"type":"Thistlesage","text":"Thistlesage","flags":{"prophecy":false,"unique":false}},{"type":"Chrome-infused Goliath","text":"Chrome-infused Goliath","flags":{"prophecy":false,"unique":false}},{"type":"Chrome-touched Goliath","text":"Chrome-touched Goliath","flags":{"prophecy":false,"unique":false}},{"type":"Maze Needleback","text":"Maze Needleback","flags":{"prophecy":false,"unique":false}},{"type":"Bladeback Guardian","text":"Bladeback Guardian","flags":{"prophecy":false,"unique":false}},{"type":"Infected Watcher","text":"Infected Watcher","flags":{"prophecy":false,"unique":false}},{"type":"Mutated Watcher","text":"Mutated Watcher","flags":{"prophecy":false,"unique":false}},{"type":"Soulless Watcher","text":"Soulless Watcher","flags":{"prophecy":false,"unique":false}},{"type":"Drifting Eye","text":"Drifting Eye","flags":{"prophecy":false,"unique":false}},{"type":"Cavern Drifter","text":"Cavern Drifter","flags":{"prophecy":false,"unique":false}},{"type":"Sewer Drifter","text":"Sewer Drifter","flags":{"prophecy":false,"unique":false}},{"type":"Strangledrift","text":"Strangledrift","flags":{"prophecy":false,"unique":false}},{"type":"The All-seeing Eye","text":"The All-seeing Eye","flags":{"prophecy":false,"unique":false}},{"type":"Carius, the Unnatural","text":"Carius, the Unnatural","flags":{"prophecy":false,"unique":false}},{"type":"Suncaller Asha","text":"Suncaller Asha","flags":{"prophecy":false,"unique":false}},{"type":"The Cursed King","text":"The Cursed King","flags":{"prophecy":false,"unique":false}},{"type":"Lycius, Midnight\u0027s Howl","text":"Lycius, Midnight\u0027s Howl","flags":{"prophecy":false,"unique":false}},{"type":"Arwyn, the Houndmaster","text":"Arwyn, the Houndmaster","flags":{"prophecy":false,"unique":false}},{"type":"Forest of Flames","text":"Forest of Flames","flags":{"prophecy":false,"unique":false}},{"type":"Puruna, the Challenger","text":"Puruna, the Challenger","flags":{"prophecy":false,"unique":false}},{"type":"Poporo, the Highest Spire","text":"Poporo, the Highest Spire","flags":{"prophecy":false,"unique":false}},{"type":"Tahsin, Warmaker","text":"Tahsin, Warmaker","flags":{"prophecy":false,"unique":false}},{"type":"Excellis Aurafix","text":"Excellis Aurafix","flags":{"prophecy":false,"unique":false}},{"type":"Riftwalker","text":"Riftwalker","flags":{"prophecy":false,"unique":false}},{"type":"The Arbiter of Knowledge","text":"The Arbiter of Knowledge","flags":{"prophecy":false,"unique":false}},{"type":"Ancient Sculptor","text":"Ancient Sculptor","flags":{"prophecy":false,"unique":false}},{"type":"Ancient Architect","text":"Ancient Architect","flags":{"prophecy":false,"unique":false}},{"type":"The Reaver","text":"The Reaver","flags":{"prophecy":false,"unique":false}},{"type":"Amalgam of Nightmares","text":"Amalgam of Nightmares","flags":{"prophecy":false,"unique":false}},{"type":"Armala, the Widow","text":"Armala, the Widow","flags":{"prophecy":false,"unique":false}},{"type":"Tore, Towering Ancient","text":"Tore, Towering Ancient","flags":{"prophecy":false,"unique":false}},{"type":"Olof, Son of the Headsman","text":"Olof, Son of the Headsman","flags":{"prophecy":false,"unique":false}},{"type":"The Brittle Emperor","text":"The Brittle Emperor","flags":{"prophecy":false,"unique":false}},{"type":"Mindless Scavenger","text":"Mindless Scavenger","flags":{"prophecy":false,"unique":false}},{"type":"Scavenging Vulture","text":"Scavenging Vulture","flags":{"prophecy":false,"unique":false}},{"type":"Rotting Vulture","text":"Rotting Vulture","flags":{"prophecy":false,"unique":false}},{"type":"Infested Vulture","text":"Infested Vulture","flags":{"prophecy":false,"unique":false}},{"type":"The Hundred Foot Shadow","text":"The Hundred Foot Shadow","flags":{"prophecy":false,"unique":false}},{"type":"The Winged Death","text":"The Winged Death","flags":{"prophecy":false,"unique":false}},{"type":"Rama, The Kinslayer","text":"Rama, The Kinslayer","flags":{"prophecy":false,"unique":false}},{"type":"Kalria, The Fallen","text":"Kalria, The Fallen","flags":{"prophecy":false,"unique":false}},{"type":"Invari, The Bloodshaper","text":"Invari, The Bloodshaper","flags":{"prophecy":false,"unique":false}},{"type":"Lokan, The Deceiver","text":"Lokan, The Deceiver","flags":{"prophecy":false,"unique":false}},{"type":"Marchak, The Betrayer","text":"Marchak, The Betrayer","flags":{"prophecy":false,"unique":false}},{"type":"Berrots, The Breaker","text":"Berrots, The Breaker","flags":{"prophecy":false,"unique":false}},{"type":"Vessider, The Unrivaled","text":"Vessider, The Unrivaled","flags":{"prophecy":false,"unique":false}},{"type":"Morgrants, The Deafening","text":"Morgrants, The Deafening","flags":{"prophecy":false,"unique":false}},{"type":"Yorishi, Aurora-sage","text":"Yorishi, Aurora-sage","flags":{"prophecy":false,"unique":false}},{"type":"Jeinei Yuushu","text":"Jeinei Yuushu","flags":{"prophecy":false,"unique":false}},{"type":"Otesha, the Giantslayer","text":"Otesha, the Giantslayer","flags":{"prophecy":false,"unique":false}},{"type":"Mutewind Lynx","text":"Mutewind Lynx","flags":{"prophecy":false,"unique":false}},{"type":"Uruk Baleh","text":"Uruk Baleh","flags":{"prophecy":false,"unique":false}},{"type":"El\u0027Abin, Bloodeater","text":"El\u0027Abin, Bloodeater","flags":{"prophecy":false,"unique":false}},{"type":"Leli Goya, Daughter of Ash","text":"Leli Goya, Daughter of Ash","flags":{"prophecy":false,"unique":false}},{"type":"Bin\u0027aia, Crimson Rain","text":"Bin\u0027aia, Crimson Rain","flags":{"prophecy":false,"unique":false}},{"type":"Musky \u0022Two-Eyes\u0022 Grenn","text":"Musky \u0022Two-Eyes\u0022 Grenn","flags":{"prophecy":false,"unique":false}},{"type":"Susara, Siren of Pondium","text":"Susara, Siren of Pondium","flags":{"prophecy":false,"unique":false}},{"type":"Lussi \u0022Rotmother\u0022 Roth","text":"Lussi \u0022Rotmother\u0022 Roth","flags":{"prophecy":false,"unique":false}},{"type":"The Blacksmith","text":"The Blacksmith","flags":{"prophecy":false,"unique":false}},{"type":"Tolman, the Exhumer","text":"Tolman, the Exhumer","flags":{"prophecy":false,"unique":false}}]},{"label":"","entries":[{"name":"Booming Populace","type":"Ivory Watchstone","text":"Booming Populace Ivory Watchstone","flags":{"prophecy":false,"unique":true}},{"name":"Irresistable Temptation","type":"Ivory Watchstone","text":"Irresistable Temptation Ivory Watchstone","flags":{"prophecy":false,"unique":true}},{"name":"Misinformation","type":"Ivory Watchstone","text":"Misinformation Ivory Watchstone","flags":{"prophecy":false,"unique":true}},{"name":"Stalwart Defenders","type":"Ivory Watchstone","text":"Stalwart Defenders Ivory Watchstone","flags":{"prophecy":false,"unique":true}},{"name":"Territories Unknown","type":"Ivory Watchstone","text":"Territories Unknown Ivory Watchstone","flags":{"prophecy":false,"unique":true}},{"name":"Terror","type":"Ivory Watchstone","text":"Terror Ivory Watchstone","flags":{"prophecy":false,"unique":true}},{"name":"War Among the Stars","type":"Ivory Watchstone","text":"War Among the Stars Ivory Watchstone","flags":{"prophecy":false,"unique":true}},{"type":"Crimson Watchstone","text":"Crimson Watchstone","flags":{"prophecy":false,"unique":false}},{"type":"Cobalt Watchstone","text":"Cobalt Watchstone","flags":{"prophecy":false,"unique":false}},{"type":"Viridian Watchstone","text":"Viridian Watchstone","flags":{"prophecy":false,"unique":false}},{"type":"Golden Watchstone","text":"Golden Watchstone","flags":{"prophecy":false,"unique":false}},{"type":"Ivory Watchstone","text":"Ivory Watchstone","flags":{"prophecy":false,"unique":false}}]}] \ No newline at end of file +[{"label":"Accessories","entries":[{"name":"Ahkeli's Meadow","type":"Ruby Ring","text":"Ahkeli's Meadow Ruby Ring","flags":{"unique":true}},{"name":"Ahkeli's Mountain","type":"Ruby Ring","text":"Ahkeli's Mountain Ruby Ring","flags":{"unique":true}},{"name":"Ahkeli's Valley","type":"Ruby Ring","text":"Ahkeli's Valley Ruby Ring","flags":{"unique":true}},{"name":"Andvarius","type":"Gold Ring","text":"Andvarius Gold Ring","flags":{"unique":true}},{"name":"Angler's Plait","type":"Unset Ring","text":"Angler's Plait Unset Ring","flags":{"unique":true}},{"name":"Araku Tiki","type":"Coral Amulet","text":"Araku Tiki Coral Amulet","flags":{"unique":true}},{"name":"Ascent From Flesh","type":"Chain Belt","text":"Ascent From Flesh Chain Belt","flags":{"unique":true}},{"name":"Astral Projector","type":"Topaz Ring","text":"Astral Projector Topaz Ring","flags":{"unique":true}},{"name":"Astramentis","type":"Onyx Amulet","text":"Astramentis Onyx Amulet","flags":{"unique":true}},{"name":"Atziri's Foible","type":"Paua Amulet","text":"Atziri's Foible Paua Amulet","flags":{"unique":true}},{"name":"Aul's Uprising","type":"Onyx Amulet","text":"Aul's Uprising Onyx Amulet","flags":{"unique":true}},{"name":"Auxium","type":"Chain Belt","text":"Auxium Chain Belt","flags":{"unique":true}},{"name":"Auxium","type":"Crystal Belt","text":"Auxium Crystal Belt","flags":{"unique":true}},{"name":"Badge of the Brotherhood","type":"Turquoise Amulet","text":"Badge of the Brotherhood Turquoise Amulet","flags":{"unique":true}},{"name":"Bated Breath","type":"Chain Belt","text":"Bated Breath Chain Belt","flags":{"unique":true}},{"name":"Bear's Girdle","type":"Leather Belt","text":"Bear's Girdle Leather Belt","flags":{"unique":true}},{"name":"Belt of the Deceiver","type":"Heavy Belt","text":"Belt of the Deceiver Heavy Belt","flags":{"unique":true}},{"name":"Berek's Grip","type":"Two-Stone Ring","text":"Berek's Grip Two-Stone Ring","flags":{"unique":true}},{"name":"Berek's Pass","type":"Two-Stone Ring","text":"Berek's Pass Two-Stone Ring","flags":{"unique":true}},{"name":"Berek's Respite","type":"Two-Stone Ring","text":"Berek's Respite Two-Stone Ring","flags":{"unique":true}},{"name":"Bisco's Collar","type":"Gold Amulet","text":"Bisco's Collar Gold Amulet","flags":{"unique":true}},{"name":"Bisco's Leash","type":"Heavy Belt","text":"Bisco's Leash Heavy Belt","flags":{"unique":true}},{"name":"Blackheart","type":"Iron Ring","text":"Blackheart Iron Ring","flags":{"unique":true}},{"name":"Blightwell","type":"Clutching Talisman","text":"Blightwell Clutching Talisman","flags":{"unique":true}},{"name":"Bloodboil","type":"Coral Ring","text":"Bloodboil Coral Ring","flags":{"unique":true}},{"name":"Bloodgrip","type":"Marble Amulet","text":"Bloodgrip Marble Amulet","flags":{"unique":true}},{"name":"Bloodgrip","type":"Coral Amulet","text":"Bloodgrip Coral Amulet","flags":{"unique":true}},{"name":"Blood of Corruption","type":"Amber Amulet","text":"Blood of Corruption Amber Amulet","flags":{"unique":true}},{"name":"Brinerot Mark","type":"Unset Ring","text":"Brinerot Mark Unset Ring","flags":{"unique":true}},{"name":"Call of the Brotherhood","type":"Two-Stone Ring","text":"Call of the Brotherhood Two-Stone Ring","flags":{"unique":true}},{"name":"Carnage Heart","type":"Onyx Amulet","text":"Carnage Heart Onyx Amulet","flags":{"unique":true}},{"name":"Choir of the Storm","type":"Lapis Amulet","text":"Choir of the Storm Lapis Amulet","flags":{"unique":true}},{"name":"Circle of Anguish","type":"Ruby Ring","text":"Circle of Anguish Ruby Ring","flags":{"unique":true}},{"name":"Circle of Fear","type":"Sapphire Ring","text":"Circle of Fear Sapphire Ring","flags":{"unique":true}},{"name":"Circle of Guilt","type":"Iron Ring","text":"Circle of Guilt Iron Ring","flags":{"unique":true}},{"name":"Circle of Nostalgia","type":"Amethyst Ring","text":"Circle of Nostalgia Amethyst Ring","flags":{"unique":true}},{"name":"Circle of Regret","type":"Topaz Ring","text":"Circle of Regret Topaz Ring","flags":{"unique":true}},{"name":"Coward's Chains","type":"Chain Belt","text":"Coward's Chains Chain Belt","flags":{"unique":true}},{"name":"Coward's Legacy","type":"Chain Belt","text":"Coward's Legacy Chain Belt","flags":{"unique":true}},{"name":"Cyclopean Coil","type":"Leather Belt","text":"Cyclopean Coil Leather Belt","flags":{"unique":true}},{"name":"Daresso's Salute","type":"Citrine Amulet","text":"Daresso's Salute Citrine Amulet","flags":{"unique":true}},{"name":"Darkness Enthroned","type":"Stygian Vise","text":"Darkness Enthroned Stygian Vise","flags":{"unique":true}},{"name":"Death Rush","type":"Amethyst Ring","text":"Death Rush Amethyst Ring","flags":{"unique":true}},{"name":"Demigod's Bounty","type":"Golden Obi","text":"Demigod's Bounty Golden Obi","flags":{"unique":true}},{"name":"Demigod's Eye","type":"Golden Hoop","text":"Demigod's Eye Golden Hoop","flags":{"unique":true}},{"name":"Demigod's Presence","type":"Gold Amulet","text":"Demigod's Presence Gold Amulet","flags":{"unique":true}},{"name":"Doedre's Damning","type":"Paua Ring","text":"Doedre's Damning Paua Ring","flags":{"unique":true}},{"name":"Doryani's Invitation","type":"Heavy Belt","text":"Doryani's Invitation Heavy Belt","flags":{"unique":true}},{"name":"Dream Fragments","type":"Sapphire Ring","text":"Dream Fragments Sapphire Ring","flags":{"unique":true}},{"name":"Dyadian Dawn","type":"Heavy Belt","text":"Dyadian Dawn Heavy Belt","flags":{"unique":true}},{"name":"Emberwake","type":"Ruby Ring","text":"Emberwake Ruby Ring","flags":{"unique":true}},{"name":"Essence Worm","type":"Unset Ring","text":"Essence Worm Unset Ring","flags":{"unique":true}},{"name":"Extractor Mentis","type":"Agate Amulet","text":"Extractor Mentis Agate Amulet","flags":{"unique":true}},{"name":"Eye of Chayula","type":"Onyx Amulet","text":"Eye of Chayula Onyx Amulet","flags":{"unique":true}},{"name":"Eye of Innocence","type":"Citrine Amulet","text":"Eye of Innocence Citrine Amulet","flags":{"unique":true}},{"name":"Eyes of the Greatwolf","type":"Greatwolf Talisman","text":"Eyes of the Greatwolf Greatwolf Talisman","flags":{"unique":true}},{"name":"Faminebind","type":"Rustic Sash","text":"Faminebind Rustic Sash","flags":{"unique":true}},{"name":"Feastbind","type":"Rustic Sash","text":"Feastbind Rustic Sash","flags":{"unique":true}},{"name":"Fury Valve","type":"Turquoise Amulet","text":"Fury Valve Turquoise Amulet","flags":{"unique":true}},{"name":"Gifts from Above","type":"Diamond Ring","text":"Gifts from Above Diamond Ring","flags":{"unique":true}},{"name":"Gloomfang","type":"Blue Pearl Amulet","text":"Gloomfang Blue Pearl Amulet","flags":{"unique":true}},{"name":"Gluttony","type":"Leather Belt","text":"Gluttony Leather Belt","flags":{"unique":true}},{"name":"Hallowed Ground","type":"Unset Ring","text":"Hallowed Ground Unset Ring","flags":{"unique":true}},{"name":"Headhunter","type":"Leather Belt","text":"Headhunter Leather Belt","flags":{"unique":true}},{"name":"Heartbound Loop","type":"Moonstone Ring","text":"Heartbound Loop Moonstone Ring","flags":{"unique":true}},{"name":"Hinekora's Sight","type":"Onyx Amulet","text":"Hinekora's Sight Onyx Amulet","flags":{"unique":true}},{"name":"Hyperboreus","type":"Leather Belt","text":"Hyperboreus Leather Belt","flags":{"unique":true}},{"name":"Hyrri's Truth","type":"Jade Amulet","text":"Hyrri's Truth Jade Amulet","flags":{"unique":true}},{"name":"Icefang Orbit","type":"Iron Ring","text":"Icefang Orbit Iron Ring","flags":{"unique":true}},{"name":"Immortal Flesh","type":"Leather Belt","text":"Immortal Flesh Leather Belt","flags":{"unique":true}},{"name":"Impresence","type":"Onyx Amulet","text":"Impresence Onyx Amulet","flags":{"unique":true}},{"name":"Kaom's Sign","type":"Coral Ring","text":"Kaom's Sign Coral Ring","flags":{"unique":true}},{"name":"Kaom's Way","type":"Coral Ring","text":"Kaom's Way Coral Ring","flags":{"unique":true}},{"name":"Karui Charge","type":"Jade Amulet","text":"Karui Charge Jade Amulet","flags":{"unique":true}},{"name":"Karui Ward","type":"Jade Amulet","text":"Karui Ward Jade Amulet","flags":{"unique":true}},{"name":"Kikazaru","type":"Topaz Ring","text":"Kikazaru Topaz Ring","flags":{"unique":true}},{"name":"Leash of Oblation","type":"Leather Belt","text":"Leash of Oblation Leather Belt","flags":{"unique":true}},{"name":"Le Heup of All","type":"Iron Ring","text":"Le Heup of All Iron Ring","flags":{"unique":true}},{"name":"Lori's Lantern","type":"Prismatic Ring","text":"Lori's Lantern Prismatic Ring","flags":{"unique":true}},{"name":"Malachai's Artifice","type":"Unset Ring","text":"Malachai's Artifice Unset Ring","flags":{"unique":true}},{"name":"Maligaro's Cruelty","type":"Turquoise Amulet","text":"Maligaro's Cruelty Turquoise Amulet","flags":{"unique":true}},{"name":"Maligaro's Restraint","type":"Chain Belt","text":"Maligaro's Restraint Chain Belt","flags":{"unique":true}},{"name":"Mark of Submission","type":"Unset Ring","text":"Mark of Submission Unset Ring","flags":{"unique":true}},{"name":"Mark of the Elder","type":"Steel Ring","text":"Mark of the Elder Steel Ring","flags":{"unique":true}},{"name":"Mark of the Shaper","type":"Opal Ring","text":"Mark of the Shaper Opal Ring","flags":{"unique":true}},{"name":"Marylene's Fallacy","type":"Lapis Amulet","text":"Marylene's Fallacy Lapis Amulet","flags":{"unique":true}},{"name":"Meginord's Girdle","type":"Heavy Belt","text":"Meginord's Girdle Heavy Belt","flags":{"unique":true}},{"name":"Ming's Heart","type":"Amethyst Ring","text":"Ming's Heart Amethyst Ring","flags":{"unique":true}},{"name":"Mokou's Embrace","type":"Ruby Ring","text":"Mokou's Embrace Ruby Ring","flags":{"unique":true}},{"name":"Mother's Embrace","type":"Heavy Belt","text":"Mother's Embrace Heavy Belt","flags":{"unique":true}},{"name":"Mutewind Seal","type":"Unset Ring","text":"Mutewind Seal Unset Ring","flags":{"unique":true}},{"name":"Natural Hierarchy","type":"Rotfeather Talisman","text":"Natural Hierarchy Rotfeather Talisman","flags":{"unique":true}},{"name":"Ngamahu's Sign","type":"Ruby Ring","text":"Ngamahu's Sign Ruby Ring","flags":{"unique":true}},{"name":"Ngamahu Tiki","type":"Coral Amulet","text":"Ngamahu Tiki Coral Amulet","flags":{"unique":true}},{"name":"Night's Hold","type":"Black Maw Talisman","text":"Night's Hold Black Maw Talisman","flags":{"unique":true}},{"name":"Perandus Blazon","type":"Cloth Belt","text":"Perandus Blazon Cloth Belt","flags":{"unique":true}},{"name":"Perandus Signet","type":"Paua Ring","text":"Perandus Signet Paua Ring","flags":{"unique":true}},{"name":"Perquil's Toe","type":"Gold Amulet","text":"Perquil's Toe Gold Amulet","flags":{"unique":true}},{"name":"Perseverance","type":"Vanguard Belt","text":"Perseverance Vanguard Belt","flags":{"unique":true}},{"name":"Praxis","type":"Paua Ring","text":"Praxis Paua Ring","flags":{"unique":true}},{"name":"Precursor's Emblem","type":"Two-Stone Ring","text":"Precursor's Emblem Two-Stone Ring","flags":{"unique":true}},{"name":"Precursor's Emblem","type":"Topaz Ring","text":"Precursor's Emblem Topaz Ring","flags":{"unique":true}},{"name":"Precursor's Emblem","type":"Sapphire Ring","text":"Precursor's Emblem Sapphire Ring","flags":{"unique":true}},{"name":"Precursor's Emblem","type":"Ruby Ring","text":"Precursor's Emblem Ruby Ring","flags":{"unique":true}},{"name":"Precursor's Emblem","type":"Prismatic Ring","text":"Precursor's Emblem Prismatic Ring","flags":{"unique":true}},{"name":"Presence of Chayula","type":"Onyx Amulet","text":"Presence of Chayula Onyx Amulet","flags":{"unique":true}},{"name":"Prismweave","type":"Rustic Sash","text":"Prismweave Rustic Sash","flags":{"unique":true}},{"name":"Profane Proxy","type":"Unset Ring","text":"Profane Proxy Unset Ring","flags":{"unique":true}},{"name":"Putembo's Meadow","type":"Topaz Ring","text":"Putembo's Meadow Topaz Ring","flags":{"unique":true}},{"name":"Putembo's Mountain","type":"Topaz Ring","text":"Putembo's Mountain Topaz Ring","flags":{"unique":true}},{"name":"Putembo's Valley","type":"Topaz Ring","text":"Putembo's Valley Topaz Ring","flags":{"unique":true}},{"name":"Pyre","type":"Sapphire Ring","text":"Pyre Sapphire Ring","flags":{"unique":true}},{"name":"Pyroshock Clasp","type":"Leather Belt","text":"Pyroshock Clasp Leather Belt","flags":{"unique":true}},{"name":"Rashkaldor's Patience","type":"Jade Amulet","text":"Rashkaldor's Patience Jade Amulet","flags":{"unique":true}},{"name":"Redblade Band","type":"Unset Ring","text":"Redblade Band Unset Ring","flags":{"unique":true}},{"name":"Replica Doedre's Damning","type":"Paua Ring","text":"Replica Doedre's Damning Paua Ring","flags":{"unique":true}},{"name":"Retaliation Charm","type":"Citrine Amulet","text":"Retaliation Charm Citrine Amulet","flags":{"unique":true}},{"name":"Rigwald's Crest","type":"Two-Stone Ring","text":"Rigwald's Crest Two-Stone Ring","flags":{"unique":true}},{"name":"Rigwald's Curse","type":"Wereclaw Talisman","text":"Rigwald's Curse Wereclaw Talisman","flags":{"unique":true}},{"name":"Romira's Banquet","type":"Diamond Ring","text":"Romira's Banquet Diamond Ring","flags":{"unique":true}},{"name":"Ryslatha's Coil","type":"Studded Belt","text":"Ryslatha's Coil Studded Belt","flags":{"unique":true}},{"name":"Sacrificial Heart","type":"Paua Amulet","text":"Sacrificial Heart Paua Amulet","flags":{"unique":true}},{"name":"Shaper's Seed","type":"Agate Amulet","text":"Shaper's Seed Agate Amulet","flags":{"unique":true}},{"name":"Shavronne's Revelation","type":"Moonstone Ring","text":"Shavronne's Revelation Moonstone Ring","flags":{"unique":true}},{"name":"Sibyl's Lament","type":"Coral Ring","text":"Sibyl's Lament Coral Ring","flags":{"unique":true}},{"name":"Sidhebreath","type":"Paua Amulet","text":"Sidhebreath Paua Amulet","flags":{"unique":true}},{"name":"Siegebreaker","type":"Heavy Belt","text":"Siegebreaker Heavy Belt","flags":{"unique":true}},{"name":"Snakepit","type":"Sapphire Ring","text":"Snakepit Sapphire Ring","flags":{"unique":true}},{"name":"Solstice Vigil","type":"Onyx Amulet","text":"Solstice Vigil Onyx Amulet","flags":{"unique":true}},{"name":"Soul Tether","type":"Cloth Belt","text":"Soul Tether Cloth Belt","flags":{"unique":true}},{"name":"Soulthirst","type":"Cloth Belt","text":"Soulthirst Cloth Belt","flags":{"unique":true}},{"name":"Star of Wraeclast","type":"Ruby Amulet","text":"Star of Wraeclast Ruby Amulet","flags":{"unique":true}},{"name":"Stone of Lazhwar","type":"Lapis Amulet","text":"Stone of Lazhwar Lapis Amulet","flags":{"unique":true}},{"name":"Stormfire","type":"Opal Ring","text":"Stormfire Opal Ring","flags":{"unique":true}},{"name":"Storm Secret","type":"Topaz Ring","text":"Storm Secret Topaz Ring","flags":{"unique":true}},{"name":"String of Servitude","type":"Heavy Belt","text":"String of Servitude Heavy Belt","flags":{"unique":true}},{"name":"Sunblast","type":"Cloth Belt","text":"Sunblast Cloth Belt","flags":{"unique":true}},{"name":"Talisman of the Victor","type":"Jet Amulet","text":"Talisman of the Victor Jet Amulet","flags":{"unique":true}},{"name":"Tasalio's Sign","type":"Sapphire Ring","text":"Tasalio's Sign Sapphire Ring","flags":{"unique":true}},{"name":"Tavukai","type":"Coral Amulet","text":"Tavukai Coral Amulet","flags":{"unique":true}},{"name":"Tear of Purity","type":"Lapis Amulet","text":"Tear of Purity Lapis Amulet","flags":{"unique":true}},{"name":"The Anvil","type":"Amber Amulet","text":"The Anvil Amber Amulet","flags":{"unique":true}},{"name":"The Ascetic","type":"Gold Amulet","text":"The Ascetic Gold Amulet","flags":{"unique":true}},{"name":"The Aylardex","type":"Agate Amulet","text":"The Aylardex Agate Amulet","flags":{"unique":true}},{"name":"The Druggery","type":"Cloth Belt","text":"The Druggery Cloth Belt","flags":{"unique":true}},{"name":"The Effigon","type":"Gold Amulet","text":"The Effigon Gold Amulet","flags":{"unique":true}},{"name":"The Ephemeral Bond","type":"Lapis Amulet","text":"The Ephemeral Bond Lapis Amulet","flags":{"unique":true}},{"name":"The Felbog Fang","type":"Citrine Amulet","text":"The Felbog Fang Citrine Amulet","flags":{"unique":true}},{"name":"The Flow Untethered","type":"Cloth Belt","text":"The Flow Untethered Cloth Belt","flags":{"unique":true}},{"name":"The Halcyon","type":"Jade Amulet","text":"The Halcyon Jade Amulet","flags":{"unique":true}},{"name":"The Highwayman","type":"Gold Ring","text":"The Highwayman Gold Ring","flags":{"unique":true}},{"name":"The Hungry Loop","type":"Unset Ring","text":"The Hungry Loop Unset Ring","flags":{"unique":true}},{"name":"The Ignomon","type":"Gold Amulet","text":"The Ignomon Gold Amulet","flags":{"unique":true}},{"name":"The Jinxed Juju","type":"Citrine Amulet","text":"The Jinxed Juju Citrine Amulet","flags":{"unique":true}},{"name":"The Magnate","type":"Studded Belt","text":"The Magnate Studded Belt","flags":{"unique":true}},{"name":"The Nomad","type":"Studded Belt","text":"The Nomad Studded Belt","flags":{"unique":true}},{"name":"The Pandemonius","type":"Jade Amulet","text":"The Pandemonius Jade Amulet","flags":{"unique":true}},{"name":"The Pariah","type":"Unset Ring","text":"The Pariah Unset Ring","flags":{"unique":true}},{"name":"The Primordial Chain","type":"Coral Amulet","text":"The Primordial Chain Coral Amulet","flags":{"unique":true}},{"name":"The Retch","type":"Rustic Sash","text":"The Retch Rustic Sash","flags":{"unique":true}},{"name":"The Tactician","type":"Studded Belt","text":"The Tactician Studded Belt","flags":{"unique":true}},{"name":"The Taming","type":"Prismatic Ring","text":"The Taming Prismatic Ring","flags":{"unique":true}},{"name":"The Torrent's Reclamation","type":"Cloth Belt","text":"The Torrent's Reclamation Cloth Belt","flags":{"unique":true}},{"name":"The Warden's Brand","type":"Iron Ring","text":"The Warden's Brand Iron Ring","flags":{"unique":true}},{"name":"Thief's Torment","type":"Prismatic Ring","text":"Thief's Torment Prismatic Ring","flags":{"unique":true}},{"name":"Timeclasp","type":"Moonstone Ring","text":"Timeclasp Moonstone Ring","flags":{"unique":true}},{"name":"Timetwist","type":"Moonstone Ring","text":"Timetwist Moonstone Ring","flags":{"unique":true}},{"name":"Umbilicus Immortalis","type":"Leather Belt","text":"Umbilicus Immortalis Leather Belt","flags":{"unique":true}},{"name":"Ungil's Harmony","type":"Turquoise Amulet","text":"Ungil's Harmony Turquoise Amulet","flags":{"unique":true}},{"name":"Uzaza's Meadow","type":"Sapphire Ring","text":"Uzaza's Meadow Sapphire Ring","flags":{"unique":true}},{"name":"Uzaza's Mountain","type":"Sapphire Ring","text":"Uzaza's Mountain Sapphire Ring","flags":{"unique":true}},{"name":"Uzaza's Valley","type":"Sapphire Ring","text":"Uzaza's Valley Sapphire Ring","flags":{"unique":true}},{"name":"Valako's Sign","type":"Topaz Ring","text":"Valako's Sign Topaz Ring","flags":{"unique":true}},{"name":"Valyrium","type":"Moonstone Ring","text":"Valyrium Moonstone Ring","flags":{"unique":true}},{"name":"Venopuncture","type":"Iron Ring","text":"Venopuncture Iron Ring","flags":{"unique":true}},{"name":"Ventor's Gamble","type":"Gold Ring","text":"Ventor's Gamble Gold Ring","flags":{"unique":true}},{"name":"Victario's Acuity","type":"Turquoise Amulet","text":"Victario's Acuity Turquoise Amulet","flags":{"unique":true}},{"name":"Vivinsect","type":"Unset Ring","text":"Vivinsect Unset Ring","flags":{"unique":true}},{"name":"Voice of the Storm","type":"Lapis Amulet","text":"Voice of the Storm Lapis Amulet","flags":{"unique":true}},{"name":"Voideye","type":"Unset Ring","text":"Voideye Unset Ring","flags":{"unique":true}},{"name":"Voidheart","type":"Iron Ring","text":"Voidheart Iron Ring","flags":{"unique":true}},{"name":"Voll's Devotion","type":"Agate Amulet","text":"Voll's Devotion Agate Amulet","flags":{"unique":true}},{"name":"Warped Timepiece","type":"Turquoise Amulet","text":"Warped Timepiece Turquoise Amulet","flags":{"unique":true}},{"name":"Warrior's Legacy","type":"Ruby Ring","text":"Warrior's Legacy Ruby Ring","flags":{"unique":true}},{"name":"Willowgift","type":"Jade Amulet","text":"Willowgift Jade Amulet","flags":{"unique":true}},{"name":"Winterheart","type":"Gold Amulet","text":"Winterheart Gold Amulet","flags":{"unique":true}},{"name":"Winterweave","type":"Coral Ring","text":"Winterweave Coral Ring","flags":{"unique":true}},{"name":"Wurm's Molt","type":"Leather Belt","text":"Wurm's Molt Leather Belt","flags":{"unique":true}},{"name":"Xoph's Blood","type":"Amber Amulet","text":"Xoph's Blood Amber Amulet","flags":{"unique":true}},{"name":"Xoph's Heart","type":"Amber Amulet","text":"Xoph's Heart Amber Amulet","flags":{"unique":true}},{"name":"Yoke of Suffering","type":"Onyx Amulet","text":"Yoke of Suffering Onyx Amulet","flags":{"unique":true}},{"name":"Zerphi's Heart","type":"Paua Amulet","text":"Zerphi's Heart Paua Amulet","flags":{"unique":true}},{"type":"Blue Pearl Amulet","text":"Blue Pearl Amulet"},{"type":"Marble Amulet","text":"Marble Amulet"},{"type":"Jet Amulet","text":"Jet Amulet"},{"type":"Paua Amulet","text":"Paua Amulet"},{"type":"Citrine Amulet","text":"Citrine Amulet"},{"type":"Ruby Amulet","text":"Ruby Amulet"},{"type":"Coral Amulet","text":"Coral Amulet"},{"type":"Amber Amulet","text":"Amber Amulet"},{"type":"Jade Amulet","text":"Jade Amulet"},{"type":"Lapis Amulet","text":"Lapis Amulet"},{"type":"Gold Amulet","text":"Gold Amulet"},{"type":"Onyx Amulet","text":"Onyx Amulet"},{"type":"Turquoise Amulet","text":"Turquoise Amulet"},{"type":"Agate Amulet","text":"Agate Amulet"},{"type":"Black Maw Talisman","text":"Black Maw Talisman"},{"type":"Mandible Talisman","text":"Mandible Talisman"},{"type":"Chrysalis Talisman","text":"Chrysalis Talisman"},{"type":"Writhing Talisman","text":"Writhing Talisman"},{"type":"Bonespire Talisman","text":"Bonespire Talisman"},{"type":"Ashscale Talisman","text":"Ashscale Talisman"},{"type":"Lone Antler Talisman","text":"Lone Antler Talisman"},{"type":"Deep One Talisman","text":"Deep One Talisman"},{"type":"Breakrib Talisman","text":"Breakrib Talisman"},{"type":"Deadhand Talisman","text":"Deadhand Talisman"},{"type":"Undying Flesh Talisman","text":"Undying Flesh Talisman"},{"type":"Rot Head Talisman","text":"Rot Head Talisman"},{"type":"Hexclaw Talisman","text":"Hexclaw Talisman"},{"type":"Primal Skull Talisman","text":"Primal Skull Talisman"},{"type":"Wereclaw Talisman","text":"Wereclaw Talisman"},{"type":"Splitnewt Talisman","text":"Splitnewt Talisman"},{"type":"Clutching Talisman","text":"Clutching Talisman"},{"type":"Avian Twins Talisman","text":"Avian Twins Talisman"},{"type":"Fangjaw Talisman","text":"Fangjaw Talisman"},{"type":"Horned Talisman","text":"Horned Talisman"},{"type":"Spinefuse Talisman","text":"Spinefuse Talisman"},{"type":"Three Rat Talisman","text":"Three Rat Talisman"},{"type":"Monkey Twins Talisman","text":"Monkey Twins Talisman"},{"type":"Longtooth Talisman","text":"Longtooth Talisman"},{"type":"Rotfeather Talisman","text":"Rotfeather Talisman"},{"type":"Monkey Paw Talisman","text":"Monkey Paw Talisman"},{"type":"Three Hands Talisman","text":"Three Hands Talisman"},{"type":"Greatwolf Talisman","text":"Greatwolf Talisman"},{"type":"Rustic Sash","text":"Rustic Sash"},{"type":"Chain Belt","text":"Chain Belt"},{"type":"Leather Belt","text":"Leather Belt"},{"type":"Heavy Belt","text":"Heavy Belt"},{"type":"Cloth Belt","text":"Cloth Belt"},{"type":"Studded Belt","text":"Studded Belt"},{"type":"Stygian Vise","text":"Stygian Vise"},{"type":"Vanguard Belt","text":"Vanguard Belt"},{"type":"Crystal Belt","text":"Crystal Belt"},{"type":"Golden Obi","text":"Golden Obi"},{"type":"Breach Ring","text":"Breach Ring"},{"type":"Iron Ring","text":"Iron Ring"},{"type":"Amethyst Ring","text":"Amethyst Ring"},{"type":"Diamond Ring","text":"Diamond Ring"},{"type":"Two-Stone Ring","text":"Two-Stone Ring"},{"type":"Unset Ring","text":"Unset Ring"},{"type":"Coral Ring","text":"Coral Ring"},{"type":"Paua Ring","text":"Paua Ring"},{"type":"Gold Ring","text":"Gold Ring"},{"type":"Topaz Ring","text":"Topaz Ring"},{"type":"Sapphire Ring","text":"Sapphire Ring"},{"type":"Ruby Ring","text":"Ruby Ring"},{"type":"Prismatic Ring","text":"Prismatic Ring"},{"type":"Moonstone Ring","text":"Moonstone Ring"},{"type":"Steel Ring","text":"Steel Ring"},{"type":"Opal Ring","text":"Opal Ring"},{"type":"Vermillion Ring","text":"Vermillion Ring"},{"type":"Cerulean Ring","text":"Cerulean Ring"},{"type":"Golden Hoop","text":"Golden Hoop"},{"type":"Thief's Trinket","text":"Thief's Trinket"}]},{"label":"Armour","entries":[{"name":"Abberath's Hooves","type":"Goathide Boots","text":"Abberath's Hooves Goathide Boots","flags":{"unique":true}},{"name":"Abhorrent Interrogation","type":"Ambush Mitts","text":"Abhorrent Interrogation Ambush Mitts","flags":{"unique":true}},{"name":"Abyssus","type":"Ezomyte Burgonet","text":"Abyssus Ezomyte Burgonet","flags":{"unique":true}},{"name":"Aegis Aurora","type":"Champion Kite Shield","text":"Aegis Aurora Champion Kite Shield","flags":{"unique":true}},{"name":"Ahn's Contempt","type":"Praetor Crown","text":"Ahn's Contempt Praetor Crown","flags":{"unique":true}},{"name":"Ahn's Heritage","type":"Colossal Tower Shield","text":"Ahn's Heritage Colossal Tower Shield","flags":{"unique":true}},{"name":"Alberon's Warpath","type":"Soldier Boots","text":"Alberon's Warpath Soldier Boots","flags":{"unique":true}},{"name":"Algor Mortis","type":"Carnal Mitts","text":"Algor Mortis Carnal Mitts","flags":{"unique":true}},{"name":"Allelopathy","type":"Sorcerer Gloves","text":"Allelopathy Sorcerer Gloves","flags":{"unique":true}},{"name":"Alpha's Howl","type":"Sinner Tricorne","text":"Alpha's Howl Sinner Tricorne","flags":{"unique":true}},{"name":"Ambu's Charge","type":"Crusader Chainmail","text":"Ambu's Charge Crusader Chainmail","flags":{"unique":true}},{"name":"Apep's Slumber","type":"Ancient Spirit Shield","text":"Apep's Slumber Ancient Spirit Shield","flags":{"unique":true}},{"name":"Apep's Supremacy","type":"Vaal Spirit Shield","text":"Apep's Supremacy Vaal Spirit Shield","flags":{"unique":true}},{"name":"Architect's Hand","type":"Strapped Mitts","text":"Architect's Hand Strapped Mitts","flags":{"unique":true}},{"name":"Asenath's Chant","type":"Iron Circlet","text":"Asenath's Chant Iron Circlet","flags":{"unique":true}},{"name":"Asenath's Gentle Touch","type":"Silk Gloves","text":"Asenath's Gentle Touch Silk Gloves","flags":{"unique":true}},{"name":"Asenath's Mark","type":"Iron Circlet","text":"Asenath's Mark Iron Circlet","flags":{"unique":true}},{"name":"Ashrend","type":"Buckskin Tunic","text":"Ashrend Buckskin Tunic","flags":{"unique":true}},{"name":"Asphyxia's Wrath","type":"Two-Point Arrow Quiver","text":"Asphyxia's Wrath Two-Point Arrow Quiver","flags":{"unique":true}},{"name":"Assailum","type":"Sinner Tricorne","text":"Assailum Sinner Tricorne","flags":{"unique":true}},{"name":"Atziri's Acuity","type":"Vaal Gauntlets","text":"Atziri's Acuity Vaal Gauntlets","flags":{"unique":true}},{"name":"Atziri's Mirror","type":"Golden Buckler","text":"Atziri's Mirror Golden Buckler","flags":{"unique":true}},{"name":"Atziri's Reflection","type":"Golden Buckler","text":"Atziri's Reflection Golden Buckler","flags":{"unique":true}},{"name":"Atziri's Splendour","type":"Sacrificial Garb","text":"Atziri's Splendour Sacrificial Garb","flags":{"unique":true}},{"name":"Atziri's Step","type":"Slink Boots","text":"Atziri's Step Slink Boots","flags":{"unique":true}},{"name":"Aukuna's Will","type":"Clasped Mitts","text":"Aukuna's Will Clasped Mitts","flags":{"unique":true}},{"name":"Aurseize","type":"Steelscale Gauntlets","text":"Aurseize Steelscale Gauntlets","flags":{"unique":true}},{"name":"Beacon of Madness","type":"Two-Toned Boots","text":"Beacon of Madness Two-Toned Boots","flags":{"unique":true}},{"name":"Belly of the Beast","type":"Full Wyrmscale","text":"Belly of the Beast Full Wyrmscale","flags":{"unique":true}},{"name":"Bitterbind Point","type":"Titanium Spirit Shield","text":"Bitterbind Point Titanium Spirit Shield","flags":{"unique":true}},{"name":"Blackgleam","type":"Cured Quiver","text":"Blackgleam Cured Quiver","flags":{"unique":true}},{"name":"Blackgleam","type":"Fire Arrow Quiver","text":"Blackgleam Fire Arrow Quiver","flags":{"unique":true}},{"name":"Black Sun Crest","type":"Lacquered Helmet","text":"Black Sun Crest Lacquered Helmet","flags":{"unique":true}},{"name":"Blasphemer's Grasp","type":"Assassin's Mitts","text":"Blasphemer's Grasp Assassin's Mitts","flags":{"unique":true}},{"name":"Bloodbond","type":"Bone Armour","text":"Bloodbond Bone Armour","flags":{"unique":true}},{"name":"Bones of Ullr","type":"Silk Slippers","text":"Bones of Ullr Silk Slippers","flags":{"unique":true}},{"name":"Bramblejack","type":"Plate Vest","text":"Bramblejack Plate Vest","flags":{"unique":true}},{"name":"Breathstealer","type":"Hydrascale Gauntlets","text":"Breathstealer Hydrascale Gauntlets","flags":{"unique":true}},{"name":"Brinerot Flag","type":"Tarnished Spirit Shield","text":"Brinerot Flag Tarnished Spirit Shield","flags":{"unique":true}},{"name":"Brinerot Whalers","type":"Trapper Boots","text":"Brinerot Whalers Trapper Boots","flags":{"unique":true}},{"name":"Briskwrap","type":"Strapped Leather","text":"Briskwrap Strapped Leather","flags":{"unique":true}},{"name":"Broadstroke","type":"Heavy Quiver","text":"Broadstroke Heavy Quiver","flags":{"unique":true}},{"name":"Broken Faith","type":"Archon Kite Shield","text":"Broken Faith Archon Kite Shield","flags":{"unique":true}},{"name":"Bronn's Lithe","type":"Cutthroat's Garb","text":"Bronn's Lithe Cutthroat's Garb","flags":{"unique":true}},{"name":"Bubonic Trail","type":"Murder Boots","text":"Bubonic Trail Murder Boots","flags":{"unique":true}},{"name":"Carcass Jack","type":"Varnished Coat","text":"Carcass Jack Varnished Coat","flags":{"unique":true}},{"name":"Chains of Command","type":"Saintly Chainmail","text":"Chains of Command Saintly Chainmail","flags":{"unique":true}},{"name":"Chalice of Horrors","type":"War Buckler","text":"Chalice of Horrors War Buckler","flags":{"unique":true}},{"name":"Chernobog's Pillar","type":"Ebony Tower Shield","text":"Chernobog's Pillar Ebony Tower Shield","flags":{"unique":true}},{"name":"Cherrubim's Maleficence","type":"Triumphant Lamellar","text":"Cherrubim's Maleficence Triumphant Lamellar","flags":{"unique":true}},{"name":"Chitus' Apex","type":"Necromancer Circlet","text":"Chitus' Apex Necromancer Circlet","flags":{"unique":true}},{"name":"Cloak of Defiance","type":"Lacquered Garb","text":"Cloak of Defiance Lacquered Garb","flags":{"unique":true}},{"name":"Cloak of Flame","type":"Scholar's Robe","text":"Cloak of Flame Scholar's Robe","flags":{"unique":true}},{"name":"Cloak of Tawm'r Isley","type":"Savant's Robe","text":"Cloak of Tawm'r Isley Savant's Robe","flags":{"unique":true}},{"name":"Command of the Pit","type":"Riveted Gloves","text":"Command of the Pit Riveted Gloves","flags":{"unique":true}},{"name":"Cospri's Will","type":"Assassin's Garb","text":"Cospri's Will Assassin's Garb","flags":{"unique":true}},{"name":"Cowl of the Ceraunophile","type":"Solaris Circlet","text":"Cowl of the Ceraunophile Solaris Circlet","flags":{"unique":true}},{"name":"Cowl of the Cryophile","type":"Silken Hood","text":"Cowl of the Cryophile Silken Hood","flags":{"unique":true}},{"name":"Cowl of the Thermophile","type":"Ezomyte Burgonet","text":"Cowl of the Thermophile Ezomyte Burgonet","flags":{"unique":true}},{"name":"Cragfall","type":"Serrated Arrow Quiver","text":"Cragfall Serrated Arrow Quiver","flags":{"unique":true}},{"name":"Craghead","type":"Serrated Arrow Quiver","text":"Craghead Serrated Arrow Quiver","flags":{"unique":true}},{"name":"Craiceann's Carapace","type":"Golden Plate","text":"Craiceann's Carapace Golden Plate","flags":{"unique":true}},{"name":"Craiceann's Chitin","type":"Magistrate Crown","text":"Craiceann's Chitin Magistrate Crown","flags":{"unique":true}},{"name":"Craiceann's Pincers","type":"Titan Gauntlets","text":"Craiceann's Pincers Titan Gauntlets","flags":{"unique":true}},{"name":"Craiceann's Tracks","type":"Goliath Greaves","text":"Craiceann's Tracks Goliath Greaves","flags":{"unique":true}},{"name":"Crest of Perandus","type":"Pine Buckler","text":"Crest of Perandus Pine Buckler","flags":{"unique":true}},{"name":"Crown of Eyes","type":"Hubris Circlet","text":"Crown of Eyes Hubris Circlet","flags":{"unique":true}},{"name":"Crown of the Inward Eye","type":"Prophet Crown","text":"Crown of the Inward Eye Prophet Crown","flags":{"unique":true}},{"name":"Crown of the Pale King","type":"Regicide Mask","text":"Crown of the Pale King Regicide Mask","flags":{"unique":true}},{"name":"Crown of the Tyrant","type":"Magistrate Crown","text":"Crown of the Tyrant Magistrate Crown","flags":{"unique":true}},{"name":"Crown of Thorns","type":"Vine Circlet","text":"Crown of Thorns Vine Circlet","flags":{"unique":true}},{"name":"Crystal Vault","type":"Latticed Ringmail","text":"Crystal Vault Latticed Ringmail","flags":{"unique":true}},{"name":"Curtain Call","type":"Plague Mask","text":"Curtain Call Plague Mask","flags":{"unique":true}},{"name":"Dance of the Offered","type":"Shackled Boots","text":"Dance of the Offered Shackled Boots","flags":{"unique":true}},{"name":"Daresso's Courage","type":"Baroque Round Shield","text":"Daresso's Courage Baroque Round Shield","flags":{"unique":true}},{"name":"Daresso's Defiance","type":"Full Dragonscale","text":"Daresso's Defiance Full Dragonscale","flags":{"unique":true}},{"name":"Darkray Vectors","type":"Dragonscale Boots","text":"Darkray Vectors Dragonscale Boots","flags":{"unique":true}},{"name":"Death's Door","type":"Crusader Boots","text":"Death's Door Crusader Boots","flags":{"unique":true}},{"name":"Death's Oath","type":"Astral Plate","text":"Death's Oath Astral Plate","flags":{"unique":true}},{"name":"Deerstalker","type":"Deerskin Boots","text":"Deerstalker Deerskin Boots","flags":{"unique":true}},{"name":"Deidbell","type":"Gilded Sallet","text":"Deidbell Gilded Sallet","flags":{"unique":true}},{"name":"Deidbellow","type":"Gilded Sallet","text":"Deidbellow Gilded Sallet","flags":{"unique":true}},{"name":"Demigod's Beacon","type":"Golden Flame","text":"Demigod's Beacon Golden Flame","flags":{"unique":true}},{"name":"Demigod's Dominance","type":"Golden Mantle","text":"Demigod's Dominance Golden Mantle","flags":{"unique":true}},{"name":"Demigod's Immortality","type":"Golden Visage","text":"Demigod's Immortality Golden Visage","flags":{"unique":true}},{"name":"Demigod's Stride","type":"Golden Caligae","text":"Demigod's Stride Golden Caligae","flags":{"unique":true}},{"name":"Demigod's Touch","type":"Golden Bracers","text":"Demigod's Touch Golden Bracers","flags":{"unique":true}},{"name":"Demigod's Triumph","type":"Golden Wreath","text":"Demigod's Triumph Golden Wreath","flags":{"unique":true}},{"name":"Demon Stitcher","type":"Satin Gloves","text":"Demon Stitcher Satin Gloves","flags":{"unique":true}},{"name":"Dendrobate","type":"Sentinel Jacket","text":"Dendrobate Sentinel Jacket","flags":{"unique":true}},{"name":"Deshret's Vise","type":"Steel Gauntlets","text":"Deshret's Vise Steel Gauntlets","flags":{"unique":true}},{"name":"Devoto's Devotion","type":"Nightmare Bascinet","text":"Devoto's Devotion Nightmare Bascinet","flags":{"unique":true}},{"name":"Dialla's Malefaction","type":"Sage's Robe","text":"Dialla's Malefaction Sage's Robe","flags":{"unique":true}},{"name":"Doedre's Malevolence","type":"Velvet Gloves","text":"Doedre's Malevolence Velvet Gloves","flags":{"unique":true}},{"name":"Doedre's Scorn","type":"Lunaris Circlet","text":"Doedre's Scorn Lunaris Circlet","flags":{"unique":true}},{"name":"Doedre's Skin","type":"Widowsilk Robe","text":"Doedre's Skin Widowsilk Robe","flags":{"unique":true}},{"name":"Doedre's Tenure","type":"Velvet Gloves","text":"Doedre's Tenure Velvet Gloves","flags":{"unique":true}},{"name":"Doryani's Delusion","type":"Slink Boots","text":"Doryani's Delusion Slink Boots","flags":{"unique":true}},{"name":"Doryani's Delusion","type":"Sorcerer Boots","text":"Doryani's Delusion Sorcerer Boots","flags":{"unique":true}},{"name":"Doryani's Delusion","type":"Titan Greaves","text":"Doryani's Delusion Titan Greaves","flags":{"unique":true}},{"name":"Doryani's Fist","type":"Vaal Gauntlets","text":"Doryani's Fist Vaal Gauntlets","flags":{"unique":true}},{"name":"Doryani's Prototype","type":"Saint's Hauberk","text":"Doryani's Prototype Saint's Hauberk","flags":{"unique":true}},{"name":"Drillneck","type":"Penetrating Arrow Quiver","text":"Drillneck Penetrating Arrow Quiver","flags":{"unique":true}},{"name":"Duskblight","type":"Leatherscale Boots","text":"Duskblight Leatherscale Boots","flags":{"unique":true}},{"name":"Duskblight","type":"Ironscale Boots","text":"Duskblight Ironscale Boots","flags":{"unique":true}},{"name":"Dusktoe","type":"Leatherscale Boots","text":"Dusktoe Leatherscale Boots","flags":{"unique":true}},{"name":"Dusktoe","type":"Ironscale Boots","text":"Dusktoe Ironscale Boots","flags":{"unique":true}},{"name":"Eber's Unification","type":"Hubris Circlet","text":"Eber's Unification Hubris Circlet","flags":{"unique":true}},{"name":"Emperor's Vigilance","type":"Steel Kite Shield","text":"Emperor's Vigilance Steel Kite Shield","flags":{"unique":true}},{"name":"Empire's Grasp","type":"Goliath Gauntlets","text":"Empire's Grasp Goliath Gauntlets","flags":{"unique":true}},{"name":"Esh's Mirror","type":"Thorium Spirit Shield","text":"Esh's Mirror Thorium Spirit Shield","flags":{"unique":true}},{"name":"Esh's Visage","type":"Vaal Spirit Shield","text":"Esh's Visage Vaal Spirit Shield","flags":{"unique":true}},{"name":"Eye of Malice","type":"Callous Mask","text":"Eye of Malice Callous Mask","flags":{"unique":true}},{"name":"Ezomyte Hold","type":"Iron Hat","text":"Ezomyte Hold Iron Hat","flags":{"unique":true}},{"name":"Ezomyte Peak","type":"Iron Hat","text":"Ezomyte Peak Iron Hat","flags":{"unique":true}},{"name":"Facebreaker","type":"Strapped Mitts","text":"Facebreaker Strapped Mitts","flags":{"unique":true}},{"name":"Fairgraves' Tricorne","type":"Tricorne","text":"Fairgraves' Tricorne Tricorne","flags":{"unique":true}},{"name":"Farrul's Bite","type":"Harlequin Mask","text":"Farrul's Bite Harlequin Mask","flags":{"unique":true}},{"name":"Farrul's Chase","type":"Slink Boots","text":"Farrul's Chase Slink Boots","flags":{"unique":true}},{"name":"Farrul's Fur","type":"Triumphant Lamellar","text":"Farrul's Fur Triumphant Lamellar","flags":{"unique":true}},{"name":"Farrul's Pounce","type":"Hydrascale Gauntlets","text":"Farrul's Pounce Hydrascale Gauntlets","flags":{"unique":true}},{"name":"Fenumus' Shroud","type":"Widowsilk Robe","text":"Fenumus' Shroud Widowsilk Robe","flags":{"unique":true}},{"name":"Fenumus' Spinnerets","type":"Assassin's Boots","text":"Fenumus' Spinnerets Assassin's Boots","flags":{"unique":true}},{"name":"Fenumus' Toxins","type":"Necromancer Circlet","text":"Fenumus' Toxins Necromancer Circlet","flags":{"unique":true}},{"name":"Fenumus' Weave","type":"Carnal Mitts","text":"Fenumus' Weave Carnal Mitts","flags":{"unique":true}},{"name":"Flamesight","type":"Solaris Circlet","text":"Flamesight Solaris Circlet","flags":{"unique":true}},{"name":"Flesh and Spirit","type":"Ironscale Gauntlets","text":"Flesh and Spirit Ironscale Gauntlets","flags":{"unique":true}},{"name":"Fleshcrafter","type":"Necromancer Silks","text":"Fleshcrafter Necromancer Silks","flags":{"unique":true}},{"name":"Forbidden Shako","type":"Great Crown","text":"Forbidden Shako Great Crown","flags":{"unique":true}},{"name":"Fox's Fortune","type":"Wild Leather","text":"Fox's Fortune Wild Leather","flags":{"unique":true}},{"name":"Foxshade","type":"Wild Leather","text":"Foxshade Wild Leather","flags":{"unique":true}},{"name":"Fractal Thoughts","type":"Vaal Mask","text":"Fractal Thoughts Vaal Mask","flags":{"unique":true}},{"name":"Frostferno","type":"Leather Hood","text":"Frostferno Leather Hood","flags":{"unique":true}},{"name":"Galesight","type":"Solaris Circlet","text":"Galesight Solaris Circlet","flags":{"unique":true}},{"name":"Gang's Momentum","type":"Legion Boots","text":"Gang's Momentum Legion Boots","flags":{"unique":true}},{"name":"Garb of the Ephemeral","type":"Savant's Robe","text":"Garb of the Ephemeral Savant's Robe","flags":{"unique":true}},{"name":"Garukhan's Flight","type":"Stealth Boots","text":"Garukhan's Flight Stealth Boots","flags":{"unique":true}},{"name":"Geofri's Crest","type":"Great Crown","text":"Geofri's Crest Great Crown","flags":{"unique":true}},{"name":"Geofri's Legacy","type":"Great Crown","text":"Geofri's Legacy Great Crown","flags":{"unique":true}},{"name":"Geofri's Sanctuary","type":"Elegant Ringmail","text":"Geofri's Sanctuary Elegant Ringmail","flags":{"unique":true}},{"name":"Giantsbane","type":"Bronze Gauntlets","text":"Giantsbane Bronze Gauntlets","flags":{"unique":true}},{"name":"Glitterdisc","type":"Burnished Spiked Shield","text":"Glitterdisc Burnished Spiked Shield","flags":{"unique":true}},{"name":"Goldrim","type":"Leather Cap","text":"Goldrim Leather Cap","flags":{"unique":true}},{"name":"Goldwyrm","type":"Nubuck Boots","text":"Goldwyrm Nubuck Boots","flags":{"unique":true}},{"name":"Gorgon's Gaze","type":"Regicide Mask","text":"Gorgon's Gaze Regicide Mask","flags":{"unique":true}},{"name":"Great Old One's Tentacles","type":"Eelskin Gloves","text":"Great Old One's Tentacles Eelskin Gloves","flags":{"unique":true}},{"name":"Great Old One's Ward","type":"Corrugated Buckler","text":"Great Old One's Ward Corrugated Buckler","flags":{"unique":true}},{"name":"Greed's Embrace","type":"Golden Plate","text":"Greed's Embrace Golden Plate","flags":{"unique":true}},{"name":"Greedtrap","type":"Velvet Slippers","text":"Greedtrap Velvet Slippers","flags":{"unique":true}},{"name":"Grip of the Council","type":"Arcanist Gloves","text":"Grip of the Council Arcanist Gloves","flags":{"unique":true}},{"name":"Gruthkul's Pelt","type":"Wyrmscale Doublet","text":"Gruthkul's Pelt Wyrmscale Doublet","flags":{"unique":true}},{"name":"Haemophilia","type":"Serpentscale Gauntlets","text":"Haemophilia Serpentscale Gauntlets","flags":{"unique":true}},{"name":"Hale Negator","type":"Mind Cage","text":"Hale Negator Mind Cage","flags":{"unique":true}},{"name":"Hands of the High Templar","type":"Crusader Gloves","text":"Hands of the High Templar Crusader Gloves","flags":{"unique":true}},{"name":"Heatshiver","type":"Leather Hood","text":"Heatshiver Leather Hood","flags":{"unique":true}},{"name":"Hellbringer","type":"Conjurer Gloves","text":"Hellbringer Conjurer Gloves","flags":{"unique":true}},{"name":"Heretic's Veil","type":"Deicide Mask","text":"Heretic's Veil Deicide Mask","flags":{"unique":true}},{"name":"Honourhome","type":"Soldier Helmet","text":"Honourhome Soldier Helmet","flags":{"unique":true}},{"name":"Hrimburn","type":"Goathide Gloves","text":"Hrimburn Goathide Gloves","flags":{"unique":true}},{"name":"Hrimnor's Resolve","type":"Samite Helmet","text":"Hrimnor's Resolve Samite Helmet","flags":{"unique":true}},{"name":"Hrimsorrow","type":"Goathide Gloves","text":"Hrimsorrow Goathide Gloves","flags":{"unique":true}},{"name":"Hyrri's Bite","type":"Sharktooth Arrow Quiver","text":"Hyrri's Bite Sharktooth Arrow Quiver","flags":{"unique":true}},{"name":"Hyrri's Demise","type":"Sharktooth Arrow Quiver","text":"Hyrri's Demise Sharktooth Arrow Quiver","flags":{"unique":true}},{"name":"Hyrri's Ire","type":"Zodiac Leather","text":"Hyrri's Ire Zodiac Leather","flags":{"unique":true}},{"name":"Icetomb","type":"Latticed Ringmail","text":"Icetomb Latticed Ringmail","flags":{"unique":true}},{"name":"Incandescent Heart","type":"Saintly Chainmail","text":"Incandescent Heart Saintly Chainmail","flags":{"unique":true}},{"name":"Indigon","type":"Hubris Circlet","text":"Indigon Hubris Circlet","flags":{"unique":true}},{"name":"Infernal Mantle","type":"Occultist's Vestment","text":"Infernal Mantle Occultist's Vestment","flags":{"unique":true}},{"name":"Infernal Mantle","type":"Widowsilk Robe","text":"Infernal Mantle Widowsilk Robe","flags":{"unique":true}},{"name":"Inpulsa's Broken Heart","type":"Sadist Garb","text":"Inpulsa's Broken Heart Sadist Garb","flags":{"unique":true}},{"name":"Invictus Solaris","type":"Archon Kite Shield","text":"Invictus Solaris Archon Kite Shield","flags":{"unique":true}},{"name":"Inya's Epiphany","type":"Arcanist Slippers","text":"Inya's Epiphany Arcanist Slippers","flags":{"unique":true}},{"name":"Iron Heart","type":"Crusader Plate","text":"Iron Heart Crusader Plate","flags":{"unique":true}},{"name":"Jaws of Agony","type":"Supreme Spiked Shield","text":"Jaws of Agony Supreme Spiked Shield","flags":{"unique":true}},{"name":"Kalisa's Grace","type":"Samite Gloves","text":"Kalisa's Grace Samite Gloves","flags":{"unique":true}},{"name":"Kaltenhalt","type":"Painted Buckler","text":"Kaltenhalt Painted Buckler","flags":{"unique":true}},{"name":"Kaltensoul","type":"Painted Buckler","text":"Kaltensoul Painted Buckler","flags":{"unique":true}},{"name":"Kaom's Heart","type":"Glorious Plate","text":"Kaom's Heart Glorious Plate","flags":{"unique":true}},{"name":"Kaom's Roots","type":"Titan Greaves","text":"Kaom's Roots Titan Greaves","flags":{"unique":true}},{"name":"Kingsguard","type":"Conquest Chainmail","text":"Kingsguard Conquest Chainmail","flags":{"unique":true}},{"name":"Kintsugi","type":"Exquisite Leather","text":"Kintsugi Exquisite Leather","flags":{"unique":true}},{"name":"Kitava's Thirst","type":"Zealot Helmet","text":"Kitava's Thirst Zealot Helmet","flags":{"unique":true}},{"name":"Kongming's Stratagem","type":"Ivory Spirit Shield","text":"Kongming's Stratagem Ivory Spirit Shield","flags":{"unique":true}},{"name":"Leer Cast","type":"Festival Mask","text":"Leer Cast Festival Mask","flags":{"unique":true}},{"name":"Leper's Alms","type":"Mirrored Spiked Shield","text":"Leper's Alms Mirrored Spiked Shield","flags":{"unique":true}},{"name":"Lightbane Raiment","type":"Ornate Ringmail","text":"Lightbane Raiment Ornate Ringmail","flags":{"unique":true}},{"name":"Lightning Coil","type":"Desert Brigandine","text":"Lightning Coil Desert Brigandine","flags":{"unique":true}},{"name":"Light of Lunaris","type":"Jingling Spirit Shield","text":"Light of Lunaris Jingling Spirit Shield","flags":{"unique":true}},{"name":"Lightpoacher","type":"Great Crown","text":"Lightpoacher Great Crown","flags":{"unique":true}},{"name":"Lioneye's Paws","type":"Bronzescale Boots","text":"Lioneye's Paws Bronzescale Boots","flags":{"unique":true}},{"name":"Lioneye's Remorse","type":"Pinnacle Tower Shield","text":"Lioneye's Remorse Pinnacle Tower Shield","flags":{"unique":true}},{"name":"Lioneye's Vision","type":"Crusader Plate","text":"Lioneye's Vision Crusader Plate","flags":{"unique":true}},{"name":"Lochtonial Caress","type":"Iron Gauntlets","text":"Lochtonial Caress Iron Gauntlets","flags":{"unique":true}},{"name":"Loreweave","type":"Elegant Ringmail","text":"Loreweave Elegant Ringmail","flags":{"unique":true}},{"name":"Lycosidae","type":"Rawhide Tower Shield","text":"Lycosidae Rawhide Tower Shield","flags":{"unique":true}},{"name":"Machina Mitts","type":"Murder Mitts","text":"Machina Mitts Murder Mitts","flags":{"unique":true}},{"name":"Magna Eclipsis","type":"Pinnacle Tower Shield","text":"Magna Eclipsis Pinnacle Tower Shield","flags":{"unique":true}},{"name":"Malachai's Awakening","type":"Iron Mask","text":"Malachai's Awakening Iron Mask","flags":{"unique":true}},{"name":"Malachai's Loop","type":"Harmonic Spirit Shield","text":"Malachai's Loop Harmonic Spirit Shield","flags":{"unique":true}},{"name":"Malachai's Mark","type":"Murder Mitts","text":"Malachai's Mark Murder Mitts","flags":{"unique":true}},{"name":"Malachai's Simula","type":"Iron Mask","text":"Malachai's Simula Iron Mask","flags":{"unique":true}},{"name":"Malachai's Vision","type":"Praetor Crown","text":"Malachai's Vision Praetor Crown","flags":{"unique":true}},{"name":"Maligaro's Lens","type":"Compound Spiked Shield","text":"Maligaro's Lens Compound Spiked Shield","flags":{"unique":true}},{"name":"Maligaro's Virtuosity","type":"Deerskin Gloves","text":"Maligaro's Virtuosity Deerskin Gloves","flags":{"unique":true}},{"name":"Maloney's Mechanism","type":"Ornate Quiver","text":"Maloney's Mechanism Ornate Quiver","flags":{"unique":true}},{"name":"Maloney's Nightfall","type":"Blunt Arrow Quiver","text":"Maloney's Nightfall Blunt Arrow Quiver","flags":{"unique":true}},{"name":"Manastorm","type":"Fossilised Spirit Shield","text":"Manastorm Fossilised Spirit Shield","flags":{"unique":true}},{"name":"March of the Legion","type":"Legion Boots","text":"March of the Legion Legion Boots","flags":{"unique":true}},{"name":"Mark of the Red Covenant","type":"Tribal Circlet","text":"Mark of the Red Covenant Tribal Circlet","flags":{"unique":true}},{"name":"Martyr's Crown","type":"Vine Circlet","text":"Martyr's Crown Vine Circlet","flags":{"unique":true}},{"name":"Mask of the Spirit Drinker","type":"Crusader Helmet","text":"Mask of the Spirit Drinker Crusader Helmet","flags":{"unique":true}},{"name":"Mask of the Stitched Demon","type":"Magistrate Crown","text":"Mask of the Stitched Demon Magistrate Crown","flags":{"unique":true}},{"name":"Mask of the Tribunal","type":"Magistrate Crown","text":"Mask of the Tribunal Magistrate Crown","flags":{"unique":true}},{"name":"Matua Tupuna","type":"Tarnished Spirit Shield","text":"Matua Tupuna Tarnished Spirit Shield","flags":{"unique":true}},{"name":"Maw of Conquest","type":"Steel Circlet","text":"Maw of Conquest Steel Circlet","flags":{"unique":true}},{"name":"Meginord's Vise","type":"Steel Gauntlets","text":"Meginord's Vise Steel Gauntlets","flags":{"unique":true}},{"name":"Memory Vault","type":"Praetor Crown","text":"Memory Vault Praetor Crown","flags":{"unique":true}},{"name":"Mercenary's Lot","type":"Slink Gloves","text":"Mercenary's Lot Slink Gloves","flags":{"unique":true}},{"name":"Mind of the Council","type":"Harlequin Mask","text":"Mind of the Council Harlequin Mask","flags":{"unique":true}},{"name":"Mindspiral","type":"Aventail Helmet","text":"Mindspiral Aventail Helmet","flags":{"unique":true}},{"name":"Mistwall","type":"Lacquered Buckler","text":"Mistwall Lacquered Buckler","flags":{"unique":true}},{"name":"Mutewind Pennant","type":"Enameled Buckler","text":"Mutewind Pennant Enameled Buckler","flags":{"unique":true}},{"name":"Mutewind Whispersteps","type":"Serpentscale Boots","text":"Mutewind Whispersteps Serpentscale Boots","flags":{"unique":true}},{"name":"Nomic's Storm","type":"Strapped Boots","text":"Nomic's Storm Strapped Boots","flags":{"unique":true}},{"name":"Null and Void","type":"Legion Gloves","text":"Null and Void Legion Gloves","flags":{"unique":true}},{"name":"Obscurantis","type":"Lion Pelt","text":"Obscurantis Lion Pelt","flags":{"unique":true}},{"name":"Offering to the Serpent","type":"Legion Gloves","text":"Offering to the Serpent Legion Gloves","flags":{"unique":true}},{"name":"Omeyocan","type":"Carnal Boots","text":"Omeyocan Carnal Boots","flags":{"unique":true}},{"name":"Ondar's Clasp","type":"Wrapped Mitts","text":"Ondar's Clasp Wrapped Mitts","flags":{"unique":true}},{"name":"Victario's Flight","type":"Goathide Boots","text":"Victario's Flight Goathide Boots","flags":{"unique":true}},{"name":"Oskarm","type":"Nubuck Gloves","text":"Oskarm Nubuck Gloves","flags":{"unique":true}},{"name":"Painseeker","type":"Shagreen Gloves","text":"Painseeker Shagreen Gloves","flags":{"unique":true}},{"name":"Perepiteia","type":"Ezomyte Spiked Shield","text":"Perepiteia Ezomyte Spiked Shield","flags":{"unique":true}},{"name":"Perfidy","type":"Glorious Plate","text":"Perfidy Glorious Plate","flags":{"unique":true}},{"name":"Plume of Pursuit","type":"Bone Circlet","text":"Plume of Pursuit Bone Circlet","flags":{"unique":true}},{"name":"Prism Guardian","type":"Archon Kite Shield","text":"Prism Guardian Archon Kite Shield","flags":{"unique":true}},{"name":"Queen of the Forest","type":"Destiny Leather","text":"Queen of the Forest Destiny Leather","flags":{"unique":true}},{"name":"Rainbowstride","type":"Conjurer Boots","text":"Rainbowstride Conjurer Boots","flags":{"unique":true}},{"name":"Ralakesh's Impatience","type":"Riveted Boots","text":"Ralakesh's Impatience Riveted Boots","flags":{"unique":true}},{"name":"Rathpith Globe","type":"Titanium Spirit Shield","text":"Rathpith Globe Titanium Spirit Shield","flags":{"unique":true}},{"name":"Rat's Nest","type":"Ursine Pelt","text":"Rat's Nest Ursine Pelt","flags":{"unique":true}},{"name":"Rearguard","type":"Broadhead Arrow Quiver","text":"Rearguard Broadhead Arrow Quiver","flags":{"unique":true}},{"name":"Reckless Defence","type":"Lacquered Garb","text":"Reckless Defence Lacquered Garb","flags":{"unique":true}},{"name":"Redblade Banner","type":"Painted Tower Shield","text":"Redblade Banner Painted Tower Shield","flags":{"unique":true}},{"name":"Redblade Tramplers","type":"Ancient Greaves","text":"Redblade Tramplers Ancient Greaves","flags":{"unique":true}},{"name":"Repentance","type":"Crusader Gloves","text":"Repentance Crusader Gloves","flags":{"unique":true}},{"name":"Rigwald's Quills","type":"Two-Point Arrow Quiver","text":"Rigwald's Quills Two-Point Arrow Quiver","flags":{"unique":true}},{"name":"Rime Gaze","type":"Mind Cage","text":"Rime Gaze Mind Cage","flags":{"unique":true}},{"name":"Rise of the Phoenix","type":"Mosaic Kite Shield","text":"Rise of the Phoenix Mosaic Kite Shield","flags":{"unique":true}},{"name":"Rotting Legion","type":"Loricated Ringmail","text":"Rotting Legion Loricated Ringmail","flags":{"unique":true}},{"name":"Sadima's Touch","type":"Wool Gloves","text":"Sadima's Touch Wool Gloves","flags":{"unique":true}},{"name":"Saemus' Gift","type":"Spike-Point Arrow Quiver","text":"Saemus' Gift Spike-Point Arrow Quiver","flags":{"unique":true}},{"name":"Saffell's Frame","type":"Branded Kite Shield","text":"Saffell's Frame Branded Kite Shield","flags":{"unique":true}},{"name":"Saqawal's Flock","type":"Silken Hood","text":"Saqawal's Flock Silken Hood","flags":{"unique":true}},{"name":"Saqawal's Nest","type":"Blood Raiment","text":"Saqawal's Nest Blood Raiment","flags":{"unique":true}},{"name":"Saqawal's Talons","type":"Hydrascale Boots","text":"Saqawal's Talons Hydrascale Boots","flags":{"unique":true}},{"name":"Saqawal's Winds","type":"Soldier Gloves","text":"Saqawal's Winds Soldier Gloves","flags":{"unique":true}},{"name":"Scold's Bridle","type":"Mind Cage","text":"Scold's Bridle Mind Cage","flags":{"unique":true}},{"name":"Scorpion's Call","type":"Broadhead Arrow Quiver","text":"Scorpion's Call Broadhead Arrow Quiver","flags":{"unique":true}},{"name":"Sentari's Answer","type":"Brass Spirit Shield","text":"Sentari's Answer Brass Spirit Shield","flags":{"unique":true}},{"name":"Seven-League Step","type":"Rawhide Boots","text":"Seven-League Step Rawhide Boots","flags":{"unique":true}},{"name":"Shackles of the Wretched","type":"Chain Gloves","text":"Shackles of the Wretched Chain Gloves","flags":{"unique":true}},{"name":"Shadows and Dust","type":"Clasped Mitts","text":"Shadows and Dust Clasped Mitts","flags":{"unique":true}},{"name":"Shadowstitch","type":"Sacrificial Garb","text":"Shadowstitch Sacrificial Garb","flags":{"unique":true}},{"name":"Shaper's Touch","type":"Crusader Gloves","text":"Shaper's Touch Crusader Gloves","flags":{"unique":true}},{"name":"Shavronne's Gambit","type":"Scholar Boots","text":"Shavronne's Gambit Scholar Boots","flags":{"unique":true}},{"name":"Shavronne's Pace","type":"Scholar Boots","text":"Shavronne's Pace Scholar Boots","flags":{"unique":true}},{"name":"Shavronne's Wrappings","type":"Occultist's Vestment","text":"Shavronne's Wrappings Occultist's Vestment","flags":{"unique":true}},{"name":"Shroud of the Lightless","type":"Carnal Armour","text":"Shroud of the Lightless Carnal Armour","flags":{"unique":true}},{"name":"Sin Trek","type":"Stealth Boots","text":"Sin Trek Stealth Boots","flags":{"unique":true}},{"name":"Skin of the Lords","type":"Simple Robe","text":"Skin of the Lords Simple Robe","flags":{"unique":true}},{"name":"Skin of the Loyal","type":"Simple Robe","text":"Skin of the Loyal Simple Robe","flags":{"unique":true}},{"name":"Skirmish","type":"Two-Point Arrow Quiver","text":"Skirmish Two-Point Arrow Quiver","flags":{"unique":true}},{"name":"Skullhead","type":"Secutor Helm","text":"Skullhead Secutor Helm","flags":{"unique":true}},{"name":"Skyforth","type":"Sorcerer Boots","text":"Skyforth Sorcerer Boots","flags":{"unique":true}},{"name":"Slavedriver's Hand","type":"Ambush Mitts","text":"Slavedriver's Hand Ambush Mitts","flags":{"unique":true}},{"name":"Slitherpinch","type":"Bronzescale Gauntlets","text":"Slitherpinch Bronzescale Gauntlets","flags":{"unique":true}},{"name":"Snakebite","type":"Assassin's Mitts","text":"Snakebite Assassin's Mitts","flags":{"unique":true}},{"name":"Solaris Lorica","type":"Copper Plate","text":"Solaris Lorica Copper Plate","flags":{"unique":true}},{"name":"Soul Mantle","type":"Spidersilk Robe","text":"Soul Mantle Spidersilk Robe","flags":{"unique":true}},{"name":"Soul Strike","type":"Spike-Point Arrow Quiver","text":"Soul Strike Spike-Point Arrow Quiver","flags":{"unique":true}},{"name":"Southbound","type":"Soldier Gloves","text":"Southbound Soldier Gloves","flags":{"unique":true}},{"name":"Speaker's Wreath","type":"Prophet Crown","text":"Speaker's Wreath Prophet Crown","flags":{"unique":true}},{"name":"Sporeguard","type":"Saint's Hauberk","text":"Sporeguard Saint's Hauberk","flags":{"unique":true}},{"name":"Springleaf","type":"Plank Kite Shield","text":"Springleaf Plank Kite Shield","flags":{"unique":true}},{"name":"Starkonja's Head","type":"Silken Hood","text":"Starkonja's Head Silken Hood","flags":{"unique":true}},{"name":"Steppan Eard","type":"Sorcerer Boots","text":"Steppan Eard Sorcerer Boots","flags":{"unique":true}},{"name":"Stormcharger","type":"Plated Greaves","text":"Stormcharger Plated Greaves","flags":{"unique":true}},{"name":"Storm's Gift","type":"Assassin's Mitts","text":"Storm's Gift Assassin's Mitts","flags":{"unique":true}},{"name":"Sundance","type":"Clasped Boots","text":"Sundance Clasped Boots","flags":{"unique":true}},{"name":"Sunspite","type":"Clasped Boots","text":"Sunspite Clasped Boots","flags":{"unique":true}},{"name":"Surgebinders","type":"Dragonscale Gauntlets","text":"Surgebinders Dragonscale Gauntlets","flags":{"unique":true}},{"name":"Tabula Rasa","type":"Simple Robe","text":"Tabula Rasa Simple Robe","flags":{"unique":true}},{"name":"The Anticipation","type":"Ezomyte Tower Shield","text":"The Anticipation Ezomyte Tower Shield","flags":{"unique":true}},{"name":"The Baron","type":"Close Helmet","text":"The Baron Close Helmet","flags":{"unique":true}},{"name":"The Beast Fur Shawl","type":"Vaal Regalia","text":"The Beast Fur Shawl Vaal Regalia","flags":{"unique":true}},{"name":"The Blood Dance","type":"Sharkskin Boots","text":"The Blood Dance Sharkskin Boots","flags":{"unique":true}},{"name":"The Brass Dome","type":"Gladiator Plate","text":"The Brass Dome Gladiator Plate","flags":{"unique":true}},{"name":"The Brine Crown","type":"Prophet Crown","text":"The Brine Crown Prophet Crown","flags":{"unique":true}},{"name":"The Bringer of Rain","type":"Nightmare Bascinet","text":"The Bringer of Rain Nightmare Bascinet","flags":{"unique":true}},{"name":"The Broken Crown","type":"Prophet Crown","text":"The Broken Crown Prophet Crown","flags":{"unique":true}},{"name":"The Coming Calamity","type":"Destroyer Regalia","text":"The Coming Calamity Destroyer Regalia","flags":{"unique":true}},{"name":"The Covenant","type":"Spidersilk Robe","text":"The Covenant Spidersilk Robe","flags":{"unique":true}},{"name":"The Deep One's Hide","type":"Studded Round Shield","text":"The Deep One's Hide Studded Round Shield","flags":{"unique":true}},{"name":"The Devouring Diadem","type":"Necromancer Circlet","text":"The Devouring Diadem Necromancer Circlet","flags":{"unique":true}},{"name":"The Embalmer","type":"Carnal Mitts","text":"The Embalmer Carnal Mitts","flags":{"unique":true}},{"name":"The Eternal Apple","type":"Chiming Spirit Shield","text":"The Eternal Apple Chiming Spirit Shield","flags":{"unique":true}},{"name":"The Eternity Shroud","type":"Blood Raiment","text":"The Eternity Shroud Blood Raiment","flags":{"unique":true}},{"name":"The Formless Flame","type":"Siege Helmet","text":"The Formless Flame Siege Helmet","flags":{"unique":true}},{"name":"The Formless Inferno","type":"Royal Burgonet","text":"The Formless Inferno Royal Burgonet","flags":{"unique":true}},{"name":"The Fracturing Spinner","type":"Blunt Arrow Quiver","text":"The Fracturing Spinner Blunt Arrow Quiver","flags":{"unique":true}},{"name":"The Ghastly Theatre","type":"Teak Round Shield","text":"The Ghastly Theatre Teak Round Shield","flags":{"unique":true}},{"name":"The Gull","type":"Raven Mask","text":"The Gull Raven Mask","flags":{"unique":true}},{"name":"The Immortal Will","type":"Archon Kite Shield","text":"The Immortal Will Archon Kite Shield","flags":{"unique":true}},{"name":"The Infinite Pursuit","type":"Goliath Greaves","text":"The Infinite Pursuit Goliath Greaves","flags":{"unique":true}},{"name":"The Iron Fortress","type":"Crusader Plate","text":"The Iron Fortress Crusader Plate","flags":{"unique":true}},{"name":"The Ivory Tower","type":"Saint's Hauberk","text":"The Ivory Tower Saint's Hauberk","flags":{"unique":true}},{"name":"The Oak","type":"Plank Kite Shield","text":"The Oak Plank Kite Shield","flags":{"unique":true}},{"name":"The Peregrine","type":"Visored Sallet","text":"The Peregrine Visored Sallet","flags":{"unique":true}},{"name":"The Perfect Form","type":"Zodiac Leather","text":"The Perfect Form Zodiac Leather","flags":{"unique":true}},{"name":"The Queen's Hunger","type":"Vaal Regalia","text":"The Queen's Hunger Vaal Regalia","flags":{"unique":true}},{"name":"The Rat Cage","type":"Sharkskin Tunic","text":"The Rat Cage Sharkskin Tunic","flags":{"unique":true}},{"name":"The Red Trail","type":"Titan Greaves","text":"The Red Trail Titan Greaves","flags":{"unique":true}},{"name":"The Restless Ward","type":"Carnal Armour","text":"The Restless Ward Carnal Armour","flags":{"unique":true}},{"name":"The Shattered Divinity","type":"Blunt Arrow Quiver","text":"The Shattered Divinity Blunt Arrow Quiver","flags":{"unique":true}},{"name":"The Signal Fire","type":"Cured Quiver","text":"The Signal Fire Cured Quiver","flags":{"unique":true}},{"name":"The Signal Fire","type":"Fire Arrow Quiver","text":"The Signal Fire Fire Arrow Quiver","flags":{"unique":true}},{"name":"The Snowblind Grace","type":"Coronal Leather","text":"The Snowblind Grace Coronal Leather","flags":{"unique":true}},{"name":"The Stampede","type":"Assassin's Boots","text":"The Stampede Assassin's Boots","flags":{"unique":true}},{"name":"The Surrender","type":"Ezomyte Tower Shield","text":"The Surrender Ezomyte Tower Shield","flags":{"unique":true}},{"name":"The Tempest's Binding","type":"Callous Mask","text":"The Tempest's Binding Callous Mask","flags":{"unique":true}},{"name":"The Tempest's Liberation","type":"Callous Mask","text":"The Tempest's Liberation Callous Mask","flags":{"unique":true}},{"name":"The Three Dragons","type":"Golden Mask","text":"The Three Dragons Golden Mask","flags":{"unique":true}},{"name":"The Unshattered Will","type":"Archon Kite Shield","text":"The Unshattered Will Archon Kite Shield","flags":{"unique":true}},{"name":"The Vertex","type":"Vaal Mask","text":"The Vertex Vaal Mask","flags":{"unique":true}},{"name":"Thirst for Horrors","type":"War Buckler","text":"Thirst for Horrors War Buckler","flags":{"unique":true}},{"name":"Thousand Ribbons","type":"Simple Robe","text":"Thousand Ribbons Simple Robe","flags":{"unique":true}},{"name":"Thousand Teeth Temu","type":"Vaal Buckler","text":"Thousand Teeth Temu Vaal Buckler","flags":{"unique":true}},{"name":"Three-step Assault","type":"Shagreen Boots","text":"Three-step Assault Shagreen Boots","flags":{"unique":true}},{"name":"Thunderfist","type":"Murder Mitts","text":"Thunderfist Murder Mitts","flags":{"unique":true}},{"name":"Thundersight","type":"Solaris Circlet","text":"Thundersight Solaris Circlet","flags":{"unique":true}},{"name":"Tinkerskin","type":"Sadist Garb","text":"Tinkerskin Sadist Garb","flags":{"unique":true}},{"name":"Titucius' Span","type":"Reinforced Tower Shield","text":"Titucius' Span Reinforced Tower Shield","flags":{"unique":true}},{"name":"Titucus Span","type":"Reinforced Tower Shield","text":"Titucus Span Reinforced Tower Shield","flags":{"unique":true}},{"name":"Tombfist","type":"Steelscale Gauntlets","text":"Tombfist Steelscale Gauntlets","flags":{"unique":true}},{"name":"Torchoak Step","type":"Antique Greaves","text":"Torchoak Step Antique Greaves","flags":{"unique":true}},{"name":"Triad Grip","type":"Mesh Gloves","text":"Triad Grip Mesh Gloves","flags":{"unique":true}},{"name":"Trolltimber Spire","type":"Cedar Tower Shield","text":"Trolltimber Spire Cedar Tower Shield","flags":{"unique":true}},{"name":"Tukohama's Fortress","type":"Ebony Tower Shield","text":"Tukohama's Fortress Ebony Tower Shield","flags":{"unique":true}},{"name":"Unyielding Flame","type":"Archon Kite Shield","text":"Unyielding Flame Archon Kite Shield","flags":{"unique":true}},{"name":"Vaal Caress","type":"Bronzescale Gauntlets","text":"Vaal Caress Bronzescale Gauntlets","flags":{"unique":true}},{"name":"Veil of the Night","type":"Great Helmet","text":"Veil of the Night Great Helmet","flags":{"unique":true}},{"name":"Veruso's Battering Rams","type":"Titan Gauntlets","text":"Veruso's Battering Rams Titan Gauntlets","flags":{"unique":true}},{"name":"Victario's Charity","type":"Laminated Kite Shield","text":"Victario's Charity Laminated Kite Shield","flags":{"unique":true}},{"name":"Victario's Influence","type":"Lacquered Garb","text":"Victario's Influence Lacquered Garb","flags":{"unique":true}},{"name":"Viper's Scales","type":"Full Scale Armour","text":"Viper's Scales Full Scale Armour","flags":{"unique":true}},{"name":"Vis Mortis","type":"Necromancer Silks","text":"Vis Mortis Necromancer Silks","flags":{"unique":true}},{"name":"Vixen's Entrapment","type":"Embroidered Gloves","text":"Vixen's Entrapment Embroidered Gloves","flags":{"unique":true}},{"name":"Vix Lunaris","type":"Cardinal Round Shield","text":"Vix Lunaris Cardinal Round Shield","flags":{"unique":true}},{"name":"Voidbringer","type":"Conjurer Gloves","text":"Voidbringer Conjurer Gloves","flags":{"unique":true}},{"name":"Voidfletcher","type":"Penetrating Arrow Quiver","text":"Voidfletcher Penetrating Arrow Quiver","flags":{"unique":true}},{"name":"Voidwalker","type":"Murder Boots","text":"Voidwalker Murder Boots","flags":{"unique":true}},{"name":"Volkuur's Guidance","type":"Zealot Gloves","text":"Volkuur's Guidance Zealot Gloves","flags":{"unique":true}},{"name":"Voll's Protector","type":"Holy Chainmail","text":"Voll's Protector Holy Chainmail","flags":{"unique":true}},{"name":"Voll's Vision","type":"Praetor Crown","text":"Voll's Vision Praetor Crown","flags":{"unique":true}},{"name":"Wake of Destruction","type":"Mesh Boots","text":"Wake of Destruction Mesh Boots","flags":{"unique":true}},{"name":"Wall of Brambles","type":"Plate Vest","text":"Wall of Brambles Plate Vest","flags":{"unique":true}},{"name":"Wanderlust","type":"Wool Shoes","text":"Wanderlust Wool Shoes","flags":{"unique":true}},{"name":"Whakatutuki o Matua","type":"Tarnished Spirit Shield","text":"Whakatutuki o Matua Tarnished Spirit Shield","flags":{"unique":true}},{"name":"Wheel of the Stormsail","type":"Rotted Round Shield","text":"Wheel of the Stormsail Rotted Round Shield","flags":{"unique":true}},{"name":"Wildwrap","type":"Strapped Leather","text":"Wildwrap Strapped Leather","flags":{"unique":true}},{"name":"Willclash","type":"Golden Mask","text":"Willclash Golden Mask","flags":{"unique":true}},{"name":"Windscream","type":"Reinforced Greaves","text":"Windscream Reinforced Greaves","flags":{"unique":true}},{"name":"Windshriek","type":"Reinforced Greaves","text":"Windshriek Reinforced Greaves","flags":{"unique":true}},{"name":"Winds of Change","type":"Ancient Gauntlets","text":"Winds of Change Ancient Gauntlets","flags":{"unique":true}},{"name":"Wondertrap","type":"Velvet Slippers","text":"Wondertrap Velvet Slippers","flags":{"unique":true}},{"name":"Worldcarver","type":"Dragonscale Gauntlets","text":"Worldcarver Dragonscale Gauntlets","flags":{"unique":true}},{"name":"Wraithlord","type":"Bone Circlet","text":"Wraithlord Bone Circlet","flags":{"unique":true}},{"name":"Wreath of Phrecia","type":"Iron Circlet","text":"Wreath of Phrecia Iron Circlet","flags":{"unique":true}},{"name":"Wyrmsign","type":"Wyrmscale Gauntlets","text":"Wyrmsign Wyrmscale Gauntlets","flags":{"unique":true}},{"name":"Ylfeban's Trickery","type":"Hubris Circlet","text":"Ylfeban's Trickery Hubris Circlet","flags":{"unique":true}},{"name":"Yriel's Fostering","type":"Exquisite Leather","text":"Yriel's Fostering Exquisite Leather","flags":{"unique":true}},{"name":"Zahndethus' Cassock","type":"Sage's Robe","text":"Zahndethus' Cassock Sage's Robe","flags":{"unique":true}},{"name":"Zeel's Amplifier","type":"Polished Spiked Shield","text":"Zeel's Amplifier Polished Spiked Shield","flags":{"unique":true}},{"type":"Golden Mantle","text":"Golden Mantle"},{"type":"Shabby Jerkin","text":"Shabby Jerkin"},{"type":"Glorious Leather","text":"Glorious Leather"},{"type":"Coronal Leather","text":"Coronal Leather"},{"type":"Cutthroat's Garb","text":"Cutthroat's Garb"},{"type":"Sharkskin Tunic","text":"Sharkskin Tunic"},{"type":"Destiny Leather","text":"Destiny Leather"},{"type":"Exquisite Leather","text":"Exquisite Leather"},{"type":"Zodiac Leather","text":"Zodiac Leather"},{"type":"Assassin's Garb","text":"Assassin's Garb"},{"type":"Strapped Leather","text":"Strapped Leather"},{"type":"Buckskin Tunic","text":"Buckskin Tunic"},{"type":"Wild Leather","text":"Wild Leather"},{"type":"Full Leather","text":"Full Leather"},{"type":"Sun Leather","text":"Sun Leather"},{"type":"Thief's Garb","text":"Thief's Garb"},{"type":"Eelskin Tunic","text":"Eelskin Tunic"},{"type":"Frontier Leather","text":"Frontier Leather"},{"type":"Padded Vest","text":"Padded Vest"},{"type":"Crimson Raiment","text":"Crimson Raiment"},{"type":"Lacquered Garb","text":"Lacquered Garb"},{"type":"Crypt Armour","text":"Crypt Armour"},{"type":"Sentinel Jacket","text":"Sentinel Jacket"},{"type":"Varnished Coat","text":"Varnished Coat"},{"type":"Blood Raiment","text":"Blood Raiment"},{"type":"Sadist Garb","text":"Sadist Garb"},{"type":"Carnal Armour","text":"Carnal Armour"},{"type":"Oiled Vest","text":"Oiled Vest"},{"type":"Padded Jacket","text":"Padded Jacket"},{"type":"Oiled Coat","text":"Oiled Coat"},{"type":"Scarlet Raiment","text":"Scarlet Raiment"},{"type":"Waxed Garb","text":"Waxed Garb"},{"type":"Bone Armour","text":"Bone Armour"},{"type":"Quilted Jacket","text":"Quilted Jacket"},{"type":"Sleek Coat","text":"Sleek Coat"},{"type":"Simple Robe","text":"Simple Robe"},{"type":"Conjurer's Vestment","text":"Conjurer's Vestment"},{"type":"Spidersilk Robe","text":"Spidersilk Robe"},{"type":"Destroyer Regalia","text":"Destroyer Regalia"},{"type":"Savant's Robe","text":"Savant's Robe"},{"type":"Necromancer Silks","text":"Necromancer Silks"},{"type":"Occultist's Vestment","text":"Occultist's Vestment"},{"type":"Widowsilk Robe","text":"Widowsilk Robe"},{"type":"Vaal Regalia","text":"Vaal Regalia"},{"type":"Silken Vest","text":"Silken Vest"},{"type":"Scholar's Robe","text":"Scholar's Robe"},{"type":"Silken Garb","text":"Silken Garb"},{"type":"Mage's Vestment","text":"Mage's Vestment"},{"type":"Silk Robe","text":"Silk Robe"},{"type":"Cabalist Regalia","text":"Cabalist Regalia"},{"type":"Sage's Robe","text":"Sage's Robe"},{"type":"Silken Wrap","text":"Silken Wrap"},{"type":"Plate Vest","text":"Plate Vest"},{"type":"Sun Plate","text":"Sun Plate"},{"type":"Colosseum Plate","text":"Colosseum Plate"},{"type":"Majestic Plate","text":"Majestic Plate"},{"type":"Golden Plate","text":"Golden Plate"},{"type":"Crusader Plate","text":"Crusader Plate"},{"type":"Astral Plate","text":"Astral Plate"},{"type":"Gladiator Plate","text":"Gladiator Plate"},{"type":"Glorious Plate","text":"Glorious Plate"},{"type":"Chestplate","text":"Chestplate"},{"type":"Copper Plate","text":"Copper Plate"},{"type":"War Plate","text":"War Plate"},{"type":"Full Plate","text":"Full Plate"},{"type":"Arena Plate","text":"Arena Plate"},{"type":"Lordly Plate","text":"Lordly Plate"},{"type":"Bronze Plate","text":"Bronze Plate"},{"type":"Battle Plate","text":"Battle Plate"},{"type":"Scale Vest","text":"Scale Vest"},{"type":"Full Wyrmscale","text":"Full Wyrmscale"},{"type":"Commander's Brigandine","text":"Commander's Brigandine"},{"type":"Battle Lamellar","text":"Battle Lamellar"},{"type":"Dragonscale Doublet","text":"Dragonscale Doublet"},{"type":"Desert Brigandine","text":"Desert Brigandine"},{"type":"Full Dragonscale","text":"Full Dragonscale"},{"type":"General's Brigandine","text":"General's Brigandine"},{"type":"Triumphant Lamellar","text":"Triumphant Lamellar"},{"type":"Light Brigandine","text":"Light Brigandine"},{"type":"Scale Doublet","text":"Scale Doublet"},{"type":"Infantry Brigandine","text":"Infantry Brigandine"},{"type":"Full Scale Armour","text":"Full Scale Armour"},{"type":"Soldier's Brigandine","text":"Soldier's Brigandine"},{"type":"Field Lamellar","text":"Field Lamellar"},{"type":"Wyrmscale Doublet","text":"Wyrmscale Doublet"},{"type":"Hussar Brigandine","text":"Hussar Brigandine"},{"type":"Sacrificial Garb","text":"Sacrificial Garb"},{"type":"Chainmail Vest","text":"Chainmail Vest"},{"type":"Ornate Ringmail","text":"Ornate Ringmail"},{"type":"Chain Hauberk","text":"Chain Hauberk"},{"type":"Devout Chainmail","text":"Devout Chainmail"},{"type":"Loricated Ringmail","text":"Loricated Ringmail"},{"type":"Conquest Chainmail","text":"Conquest Chainmail"},{"type":"Elegant Ringmail","text":"Elegant Ringmail"},{"type":"Saint's Hauberk","text":"Saint's Hauberk"},{"type":"Saintly Chainmail","text":"Saintly Chainmail"},{"type":"Chainmail Tunic","text":"Chainmail Tunic"},{"type":"Ringmail Coat","text":"Ringmail Coat"},{"type":"Chainmail Doublet","text":"Chainmail Doublet"},{"type":"Full Ringmail","text":"Full Ringmail"},{"type":"Full Chainmail","text":"Full Chainmail"},{"type":"Holy Chainmail","text":"Holy Chainmail"},{"type":"Latticed Ringmail","text":"Latticed Ringmail"},{"type":"Crusader Chainmail","text":"Crusader Chainmail"},{"type":"Two-Toned Boots","text":"Two-Toned Boots"},{"type":"Golden Caligae","text":"Golden Caligae"},{"type":"Rawhide Boots","text":"Rawhide Boots"},{"type":"Goathide Boots","text":"Goathide Boots"},{"type":"Deerskin Boots","text":"Deerskin Boots"},{"type":"Nubuck Boots","text":"Nubuck Boots"},{"type":"Eelskin Boots","text":"Eelskin Boots"},{"type":"Sharkskin Boots","text":"Sharkskin Boots"},{"type":"Shagreen Boots","text":"Shagreen Boots"},{"type":"Stealth Boots","text":"Stealth Boots"},{"type":"Slink Boots","text":"Slink Boots"},{"type":"Wrapped Boots","text":"Wrapped Boots"},{"type":"Strapped Boots","text":"Strapped Boots"},{"type":"Clasped Boots","text":"Clasped Boots"},{"type":"Shackled Boots","text":"Shackled Boots"},{"type":"Trapper Boots","text":"Trapper Boots"},{"type":"Ambush Boots","text":"Ambush Boots"},{"type":"Carnal Boots","text":"Carnal Boots"},{"type":"Assassin's Boots","text":"Assassin's Boots"},{"type":"Murder Boots","text":"Murder Boots"},{"type":"Wool Shoes","text":"Wool Shoes"},{"type":"Velvet Slippers","text":"Velvet Slippers"},{"type":"Silk Slippers","text":"Silk Slippers"},{"type":"Scholar Boots","text":"Scholar Boots"},{"type":"Satin Slippers","text":"Satin Slippers"},{"type":"Samite Slippers","text":"Samite Slippers"},{"type":"Conjurer Boots","text":"Conjurer Boots"},{"type":"Arcanist Slippers","text":"Arcanist Slippers"},{"type":"Sorcerer Boots","text":"Sorcerer Boots"},{"type":"Iron Greaves","text":"Iron Greaves"},{"type":"Steel Greaves","text":"Steel Greaves"},{"type":"Plated Greaves","text":"Plated Greaves"},{"type":"Reinforced Greaves","text":"Reinforced Greaves"},{"type":"Antique Greaves","text":"Antique Greaves"},{"type":"Ancient Greaves","text":"Ancient Greaves"},{"type":"Goliath Greaves","text":"Goliath Greaves"},{"type":"Vaal Greaves","text":"Vaal Greaves"},{"type":"Titan Greaves","text":"Titan Greaves"},{"type":"Leatherscale Boots","text":"Leatherscale Boots"},{"type":"Ironscale Boots","text":"Ironscale Boots"},{"type":"Bronzescale Boots","text":"Bronzescale Boots"},{"type":"Steelscale Boots","text":"Steelscale Boots"},{"type":"Serpentscale Boots","text":"Serpentscale Boots"},{"type":"Wyrmscale Boots","text":"Wyrmscale Boots"},{"type":"Hydrascale Boots","text":"Hydrascale Boots"},{"type":"Dragonscale Boots","text":"Dragonscale Boots"},{"type":"Chain Boots","text":"Chain Boots"},{"type":"Ringmail Boots","text":"Ringmail Boots"},{"type":"Mesh Boots","text":"Mesh Boots"},{"type":"Riveted Boots","text":"Riveted Boots"},{"type":"Zealot Boots","text":"Zealot Boots"},{"type":"Soldier Boots","text":"Soldier Boots"},{"type":"Legion Boots","text":"Legion Boots"},{"type":"Crusader Boots","text":"Crusader Boots"},{"type":"Gripped Gloves","text":"Gripped Gloves"},{"type":"Fingerless Silk Gloves","text":"Fingerless Silk Gloves"},{"type":"Spiked Gloves","text":"Spiked Gloves"},{"type":"Golden Bracers","text":"Golden Bracers"},{"type":"Rawhide Gloves","text":"Rawhide Gloves"},{"type":"Goathide Gloves","text":"Goathide Gloves"},{"type":"Deerskin Gloves","text":"Deerskin Gloves"},{"type":"Nubuck Gloves","text":"Nubuck Gloves"},{"type":"Eelskin Gloves","text":"Eelskin Gloves"},{"type":"Sharkskin Gloves","text":"Sharkskin Gloves"},{"type":"Shagreen Gloves","text":"Shagreen Gloves"},{"type":"Stealth Gloves","text":"Stealth Gloves"},{"type":"Slink Gloves","text":"Slink Gloves"},{"type":"Wrapped Mitts","text":"Wrapped Mitts"},{"type":"Strapped Mitts","text":"Strapped Mitts"},{"type":"Clasped Mitts","text":"Clasped Mitts"},{"type":"Trapper Mitts","text":"Trapper Mitts"},{"type":"Ambush Mitts","text":"Ambush Mitts"},{"type":"Carnal Mitts","text":"Carnal Mitts"},{"type":"Assassin's Mitts","text":"Assassin's Mitts"},{"type":"Murder Mitts","text":"Murder Mitts"},{"type":"Wool Gloves","text":"Wool Gloves"},{"type":"Velvet Gloves","text":"Velvet Gloves"},{"type":"Silk Gloves","text":"Silk Gloves"},{"type":"Embroidered Gloves","text":"Embroidered Gloves"},{"type":"Satin Gloves","text":"Satin Gloves"},{"type":"Samite Gloves","text":"Samite Gloves"},{"type":"Conjurer Gloves","text":"Conjurer Gloves"},{"type":"Arcanist Gloves","text":"Arcanist Gloves"},{"type":"Sorcerer Gloves","text":"Sorcerer Gloves"},{"type":"Iron Gauntlets","text":"Iron Gauntlets"},{"type":"Plated Gauntlets","text":"Plated Gauntlets"},{"type":"Bronze Gauntlets","text":"Bronze Gauntlets"},{"type":"Steel Gauntlets","text":"Steel Gauntlets"},{"type":"Antique Gauntlets","text":"Antique Gauntlets"},{"type":"Ancient Gauntlets","text":"Ancient Gauntlets"},{"type":"Goliath Gauntlets","text":"Goliath Gauntlets"},{"type":"Vaal Gauntlets","text":"Vaal Gauntlets"},{"type":"Titan Gauntlets","text":"Titan Gauntlets"},{"type":"Fishscale Gauntlets","text":"Fishscale Gauntlets"},{"type":"Ironscale Gauntlets","text":"Ironscale Gauntlets"},{"type":"Bronzescale Gauntlets","text":"Bronzescale Gauntlets"},{"type":"Steelscale Gauntlets","text":"Steelscale Gauntlets"},{"type":"Serpentscale Gauntlets","text":"Serpentscale Gauntlets"},{"type":"Wyrmscale Gauntlets","text":"Wyrmscale Gauntlets"},{"type":"Hydrascale Gauntlets","text":"Hydrascale Gauntlets"},{"type":"Dragonscale Gauntlets","text":"Dragonscale Gauntlets"},{"type":"Chain Gloves","text":"Chain Gloves"},{"type":"Ringmail Gloves","text":"Ringmail Gloves"},{"type":"Mesh Gloves","text":"Mesh Gloves"},{"type":"Riveted Gloves","text":"Riveted Gloves"},{"type":"Zealot Gloves","text":"Zealot Gloves"},{"type":"Soldier Gloves","text":"Soldier Gloves"},{"type":"Legion Gloves","text":"Legion Gloves"},{"type":"Crusader Gloves","text":"Crusader Gloves"},{"type":"Bone Helmet","text":"Bone Helmet"},{"type":"Golden Visage","text":"Golden Visage"},{"type":"Leather Cap","text":"Leather Cap"},{"type":"Lion Pelt","text":"Lion Pelt"},{"type":"Tricorne","text":"Tricorne"},{"type":"Leather Hood","text":"Leather Hood"},{"type":"Wolf Pelt","text":"Wolf Pelt"},{"type":"Hunter Hood","text":"Hunter Hood"},{"type":"Noble Tricorne","text":"Noble Tricorne"},{"type":"Ursine Pelt","text":"Ursine Pelt"},{"type":"Silken Hood","text":"Silken Hood"},{"type":"Sinner Tricorne","text":"Sinner Tricorne"},{"type":"Scare Mask","text":"Scare Mask"},{"type":"Vaal Mask","text":"Vaal Mask"},{"type":"Deicide Mask","text":"Deicide Mask"},{"type":"Plague Mask","text":"Plague Mask"},{"type":"Iron Mask","text":"Iron Mask"},{"type":"Festival Mask","text":"Festival Mask"},{"type":"Golden Mask","text":"Golden Mask"},{"type":"Raven Mask","text":"Raven Mask"},{"type":"Callous Mask","text":"Callous Mask"},{"type":"Regicide Mask","text":"Regicide Mask"},{"type":"Harlequin Mask","text":"Harlequin Mask"},{"type":"Vine Circlet","text":"Vine Circlet"},{"type":"Mind Cage","text":"Mind Cage"},{"type":"Hubris Circlet","text":"Hubris Circlet"},{"type":"Iron Circlet","text":"Iron Circlet"},{"type":"Torture Cage","text":"Torture Cage"},{"type":"Tribal Circlet","text":"Tribal Circlet"},{"type":"Bone Circlet","text":"Bone Circlet"},{"type":"Lunaris Circlet","text":"Lunaris Circlet"},{"type":"Steel Circlet","text":"Steel Circlet"},{"type":"Necromancer Circlet","text":"Necromancer Circlet"},{"type":"Solaris Circlet","text":"Solaris Circlet"},{"type":"Iron Hat","text":"Iron Hat"},{"type":"Royal Burgonet","text":"Royal Burgonet"},{"type":"Eternal Burgonet","text":"Eternal Burgonet"},{"type":"Cone Helmet","text":"Cone Helmet"},{"type":"Barbute Helmet","text":"Barbute Helmet"},{"type":"Close Helmet","text":"Close Helmet"},{"type":"Gladiator Helmet","text":"Gladiator Helmet"},{"type":"Reaver Helmet","text":"Reaver Helmet"},{"type":"Siege Helmet","text":"Siege Helmet"},{"type":"Samite Helmet","text":"Samite Helmet"},{"type":"Ezomyte Burgonet","text":"Ezomyte Burgonet"},{"type":"Battered Helm","text":"Battered Helm"},{"type":"Nightmare Bascinet","text":"Nightmare Bascinet"},{"type":"Sallet","text":"Sallet"},{"type":"Visored Sallet","text":"Visored Sallet"},{"type":"Gilded Sallet","text":"Gilded Sallet"},{"type":"Secutor Helm","text":"Secutor Helm"},{"type":"Fencer Helm","text":"Fencer Helm"},{"type":"Lacquered Helmet","text":"Lacquered Helmet"},{"type":"Fluted Bascinet","text":"Fluted Bascinet"},{"type":"Pig-Faced Bascinet","text":"Pig-Faced Bascinet"},{"type":"Rusted Coif","text":"Rusted Coif"},{"type":"Praetor Crown","text":"Praetor Crown"},{"type":"Soldier Helmet","text":"Soldier Helmet"},{"type":"Great Helmet","text":"Great Helmet"},{"type":"Crusader Helmet","text":"Crusader Helmet"},{"type":"Aventail Helmet","text":"Aventail Helmet"},{"type":"Zealot Helmet","text":"Zealot Helmet"},{"type":"Great Crown","text":"Great Crown"},{"type":"Magistrate Crown","text":"Magistrate Crown"},{"type":"Prophet Crown","text":"Prophet Crown"},{"type":"Golden Wreath","text":"Golden Wreath"},{"type":"Golden Flame","text":"Golden Flame"},{"type":"Goathide Buckler","text":"Goathide Buckler"},{"type":"Battle Buckler","text":"Battle Buckler"},{"type":"Golden Buckler","text":"Golden Buckler"},{"type":"Ironwood Buckler","text":"Ironwood Buckler"},{"type":"Lacquered Buckler","text":"Lacquered Buckler"},{"type":"Vaal Buckler","text":"Vaal Buckler"},{"type":"Crusader Buckler","text":"Crusader Buckler"},{"type":"Imperial Buckler","text":"Imperial Buckler"},{"type":"Pine Buckler","text":"Pine Buckler"},{"type":"Painted Buckler","text":"Painted Buckler"},{"type":"Hammered Buckler","text":"Hammered Buckler"},{"type":"War Buckler","text":"War Buckler"},{"type":"Gilded Buckler","text":"Gilded Buckler"},{"type":"Oak Buckler","text":"Oak Buckler"},{"type":"Enameled Buckler","text":"Enameled Buckler"},{"type":"Corrugated Buckler","text":"Corrugated Buckler"},{"type":"Spiked Bundle","text":"Spiked Bundle"},{"type":"Alder Spiked Shield","text":"Alder Spiked Shield"},{"type":"Ezomyte Spiked Shield","text":"Ezomyte Spiked Shield"},{"type":"Mirrored Spiked Shield","text":"Mirrored Spiked Shield"},{"type":"Supreme Spiked Shield","text":"Supreme Spiked Shield"},{"type":"Driftwood Spiked Shield","text":"Driftwood Spiked Shield"},{"type":"Alloyed Spiked Shield","text":"Alloyed Spiked Shield"},{"type":"Burnished Spiked Shield","text":"Burnished Spiked Shield"},{"type":"Ornate Spiked Shield","text":"Ornate Spiked Shield"},{"type":"Redwood Spiked Shield","text":"Redwood Spiked Shield"},{"type":"Compound Spiked Shield","text":"Compound Spiked Shield"},{"type":"Polished Spiked Shield","text":"Polished Spiked Shield"},{"type":"Sovereign Spiked Shield","text":"Sovereign Spiked Shield"},{"type":"Twig Spirit Shield","text":"Twig Spirit Shield"},{"type":"Chiming Spirit Shield","text":"Chiming Spirit Shield"},{"type":"Thorium Spirit Shield","text":"Thorium Spirit Shield"},{"type":"Lacewood Spirit Shield","text":"Lacewood Spirit Shield"},{"type":"Fossilised Spirit Shield","text":"Fossilised Spirit Shield"},{"type":"Vaal Spirit Shield","text":"Vaal Spirit Shield"},{"type":"Harmonic Spirit Shield","text":"Harmonic Spirit Shield"},{"type":"Titanium Spirit Shield","text":"Titanium Spirit Shield"},{"type":"Yew Spirit Shield","text":"Yew Spirit Shield"},{"type":"Bone Spirit Shield","text":"Bone Spirit Shield"},{"type":"Tarnished Spirit Shield","text":"Tarnished Spirit Shield"},{"type":"Jingling Spirit Shield","text":"Jingling Spirit Shield"},{"type":"Brass Spirit Shield","text":"Brass Spirit Shield"},{"type":"Walnut Spirit Shield","text":"Walnut Spirit Shield"},{"type":"Ivory Spirit Shield","text":"Ivory Spirit Shield"},{"type":"Ancient Spirit Shield","text":"Ancient Spirit Shield"},{"type":"Splintered Tower Shield","text":"Splintered Tower Shield"},{"type":"Bronze Tower Shield","text":"Bronze Tower Shield"},{"type":"Girded Tower Shield","text":"Girded Tower Shield"},{"type":"Crested Tower Shield","text":"Crested Tower Shield"},{"type":"Shagreen Tower Shield","text":"Shagreen Tower Shield"},{"type":"Ebony Tower Shield","text":"Ebony Tower Shield"},{"type":"Ezomyte Tower Shield","text":"Ezomyte Tower Shield"},{"type":"Colossal Tower Shield","text":"Colossal Tower Shield"},{"type":"Pinnacle Tower Shield","text":"Pinnacle Tower Shield"},{"type":"Corroded Tower Shield","text":"Corroded Tower Shield"},{"type":"Rawhide Tower Shield","text":"Rawhide Tower Shield"},{"type":"Cedar Tower Shield","text":"Cedar Tower Shield"},{"type":"Copper Tower Shield","text":"Copper Tower Shield"},{"type":"Reinforced Tower Shield","text":"Reinforced Tower Shield"},{"type":"Painted Tower Shield","text":"Painted Tower Shield"},{"type":"Buckskin Tower Shield","text":"Buckskin Tower Shield"},{"type":"Mahogany Tower Shield","text":"Mahogany Tower Shield"},{"type":"Rotted Round Shield","text":"Rotted Round Shield"},{"type":"Teak Round Shield","text":"Teak Round Shield"},{"type":"Spiny Round Shield","text":"Spiny Round Shield"},{"type":"Cardinal Round Shield","text":"Cardinal Round Shield"},{"type":"Elegant Round Shield","text":"Elegant Round Shield"},{"type":"Fir Round Shield","text":"Fir Round Shield"},{"type":"Studded Round Shield","text":"Studded Round Shield"},{"type":"Scarlet Round Shield","text":"Scarlet Round Shield"},{"type":"Splendid Round Shield","text":"Splendid Round Shield"},{"type":"Maple Round Shield","text":"Maple Round Shield"},{"type":"Spiked Round Shield","text":"Spiked Round Shield"},{"type":"Crimson Round Shield","text":"Crimson Round Shield"},{"type":"Baroque Round Shield","text":"Baroque Round Shield"},{"type":"Plank Kite Shield","text":"Plank Kite Shield"},{"type":"Branded Kite Shield","text":"Branded Kite Shield"},{"type":"Champion Kite Shield","text":"Champion Kite Shield"},{"type":"Mosaic Kite Shield","text":"Mosaic Kite Shield"},{"type":"Archon Kite Shield","text":"Archon Kite Shield"},{"type":"Linden Kite Shield","text":"Linden Kite Shield"},{"type":"Reinforced Kite Shield","text":"Reinforced Kite Shield"},{"type":"Layered Kite Shield","text":"Layered Kite Shield"},{"type":"Ceremonial Kite Shield","text":"Ceremonial Kite Shield"},{"type":"Etched Kite Shield","text":"Etched Kite Shield"},{"type":"Steel Kite Shield","text":"Steel Kite Shield"},{"type":"Laminated Kite Shield","text":"Laminated Kite Shield"},{"type":"Angelic Kite Shield","text":"Angelic Kite Shield"},{"type":"Cured Quiver","text":"Cured Quiver"},{"type":"Fire Arrow Quiver","text":"Fire Arrow Quiver"},{"type":"Broadhead Arrow Quiver","text":"Broadhead Arrow Quiver"},{"type":"Penetrating Arrow Quiver","text":"Penetrating Arrow Quiver"},{"type":"Spike-Point Arrow Quiver","text":"Spike-Point Arrow Quiver"},{"type":"Ornate Quiver","text":"Ornate Quiver"},{"type":"Rugged Quiver","text":"Rugged Quiver"},{"type":"Conductive Quiver","text":"Conductive Quiver"},{"type":"Heavy Quiver","text":"Heavy Quiver"},{"type":"Light Quiver","text":"Light Quiver"},{"type":"Serrated Arrow Quiver","text":"Serrated Arrow Quiver"},{"type":"Two-Point Arrow Quiver","text":"Two-Point Arrow Quiver"},{"type":"Sharktooth Arrow Quiver","text":"Sharktooth Arrow Quiver"},{"type":"Blunt Arrow Quiver","text":"Blunt Arrow Quiver"}]},{"label":"Cards","entries":[{"type":"Abandoned Wealth","text":"Abandoned Wealth"},{"type":"A Dab of Ink","text":"A Dab of Ink"},{"type":"A Familiar Call","text":"A Familiar Call"},{"type":"Akil's Prophecy","text":"Akil's Prophecy"},{"type":"Alluring Bounty","text":"Alluring Bounty"},{"type":"Alone in the Darkness","text":"Alone in the Darkness"},{"type":"A Mother's Parting Gift","text":"A Mother's Parting Gift"},{"type":"Anarchy's Price","text":"Anarchy's Price"},{"type":"A Note in the Wind","text":"A Note in the Wind"},{"type":"Arrogance of the Vaal","text":"Arrogance of the Vaal"},{"type":"Assassin's Favour","text":"Assassin's Favour"},{"type":"Atziri's Arsenal","text":"Atziri's Arsenal"},{"type":"Audacity","text":"Audacity"},{"type":"Azyran's Reward","text":"Azyran's Reward"},{"type":"Baited Expectations","text":"Baited Expectations"},{"type":"Beauty Through Death","text":"Beauty Through Death"},{"type":"Birth of the Three","text":"Birth of the Three"},{"type":"Blessing of God","text":"Blessing of God"},{"type":"Blind Venture","text":"Blind Venture"},{"type":"Boon of Justice","text":"Boon of Justice"},{"type":"Boon of the First Ones","text":"Boon of the First Ones"},{"type":"Boundless Realms","text":"Boundless Realms"},{"type":"Bowyer's Dream","text":"Bowyer's Dream"},{"type":"Buried Treasure","text":"Buried Treasure"},{"type":"Burning Blood","text":"Burning Blood"},{"type":"Call to the First Ones","text":"Call to the First Ones"},{"type":"Cameria's Cut","text":"Cameria's Cut"},{"type":"Cartographer's Delight","text":"Cartographer's Delight"},{"type":"Chaotic Disposition","text":"Chaotic Disposition"},{"type":"Council of Cats","text":"Council of Cats"},{"type":"Coveted Possession","text":"Coveted Possession"},{"type":"Dark Dreams","text":"Dark Dreams"},{"type":"Dark Temptation","text":"Dark Temptation"},{"type":"Death","text":"Death"},{"type":"Deathly Designs","text":"Deathly Designs"},{"type":"Demigod's Wager","text":"Demigod's Wager"},{"type":"Desecrated Virtue","text":"Desecrated Virtue"},{"type":"Destined to Crumble","text":"Destined to Crumble"},{"type":"Dialla's Subjugation","text":"Dialla's Subjugation"},{"type":"Divine Justice","text":"Divine Justice"},{"type":"Doedre's Madness","text":"Doedre's Madness"},{"type":"Dying Anguish","text":"Dying Anguish"},{"type":"Earth Drinker","text":"Earth Drinker"},{"type":"Echoes of Love","text":"Echoes of Love"},{"type":"Emperor of Purity","text":"Emperor of Purity"},{"type":"Emperor's Luck","text":"Emperor's Luck"},{"type":"Etched in Blood","text":"Etched in Blood"},{"type":"Forbidden Power","text":"Forbidden Power"},{"type":"Friendship","text":"Friendship"},{"type":"Gemcutter's Promise","text":"Gemcutter's Promise"},{"type":"Gift of Asenath","text":"Gift of Asenath"},{"type":"Gift of the Gemling Queen","text":"Gift of the Gemling Queen"},{"type":"Glimmer of Hope","text":"Glimmer of Hope"},{"type":"Grave Knowledge","text":"Grave Knowledge"},{"type":"Harmony of Souls","text":"Harmony of Souls"},{"type":"Her Mask","text":"Her Mask"},{"type":"Heterochromia","text":"Heterochromia"},{"type":"Hope","text":"Hope"},{"type":"House of Mirrors","text":"House of Mirrors"},{"type":"Hubris","text":"Hubris"},{"type":"Humility","text":"Humility"},{"type":"Hunter's Resolve","text":"Hunter's Resolve"},{"type":"Hunter's Reward","text":"Hunter's Reward"},{"type":"Immortal Resolve","text":"Immortal Resolve"},{"type":"Imperial Legacy","text":"Imperial Legacy"},{"type":"Jack in the Box","text":"Jack in the Box"},{"type":"Lantador's Lost Love","text":"Lantador's Lost Love"},{"type":"Last Hope","text":"Last Hope"},{"type":"Left to Fate","text":"Left to Fate"},{"type":"Light and Truth","text":"Light and Truth"},{"type":"Lingering Remnants","text":"Lingering Remnants"},{"type":"Lost Worlds","text":"Lost Worlds"},{"type":"Loyalty","text":"Loyalty"},{"type":"Lucky Connections","text":"Lucky Connections"},{"type":"Lucky Deck","text":"Lucky Deck"},{"type":"Lysah's Respite","text":"Lysah's Respite"},{"type":"Mawr Blaidd","text":"Mawr Blaidd"},{"type":"Merciless Armament","text":"Merciless Armament"},{"type":"Might is Right","text":"Might is Right"},{"type":"Mitts","text":"Mitts"},{"type":"Monochrome","text":"Monochrome"},{"type":"More is Never Enough","text":"More is Never Enough"},{"type":"Nook's Crown","text":"Nook's Crown"},{"type":"No Traces","text":"No Traces"},{"type":"Peaceful Moments","text":"Peaceful Moments"},{"type":"Perfection","text":"Perfection"},{"type":"Pride Before the Fall","text":"Pride Before the Fall"},{"type":"Pride of the First Ones","text":"Pride of the First Ones"},{"type":"Prometheus' Armoury","text":"Prometheus' Armoury"},{"type":"Prosperity","text":"Prosperity"},{"type":"Rain of Chaos","text":"Rain of Chaos"},{"type":"Rain Tempter","text":"Rain Tempter"},{"type":"Rats","text":"Rats"},{"type":"Rebirth","text":"Rebirth"},{"type":"Remembrance","text":"Remembrance"},{"type":"Sambodhi's Vow","text":"Sambodhi's Vow"},{"type":"Scholar of the Seas","text":"Scholar of the Seas"},{"type":"Seven Years Bad Luck","text":"Seven Years Bad Luck"},{"type":"Shard of Fate","text":"Shard of Fate"},{"type":"Squandered Prosperity","text":"Squandered Prosperity"},{"type":"Struck by Lightning","text":"Struck by Lightning"},{"type":"Succor of the Sinless","text":"Succor of the Sinless"},{"type":"The Academic","text":"The Academic"},{"type":"The Admirer","text":"The Admirer"},{"type":"The Aesthete","text":"The Aesthete"},{"type":"The Archmage's Right Hand","text":"The Archmage's Right Hand"},{"type":"The Arena Champion","text":"The Arena Champion"},{"type":"The Army of Blood","text":"The Army of Blood"},{"type":"The Artist","text":"The Artist"},{"type":"The Avenger","text":"The Avenger"},{"type":"The Awakened","text":"The Awakened"},{"type":"The Bargain","text":"The Bargain"},{"type":"The Battle Born","text":"The Battle Born"},{"type":"The Beast","text":"The Beast"},{"type":"The Betrayal","text":"The Betrayal"},{"type":"The Blazing Fire","text":"The Blazing Fire"},{"type":"The Body","text":"The Body"},{"type":"The Bones","text":"The Bones"},{"type":"The Breach","text":"The Breach"},{"type":"The Brittle Emperor","text":"The Brittle Emperor"},{"type":"The Cache","text":"The Cache"},{"type":"The Cacophony","text":"The Cacophony"},{"type":"The Calling","text":"The Calling"},{"type":"The Carrion Crow","text":"The Carrion Crow"},{"type":"The Cartographer","text":"The Cartographer"},{"type":"The Cataclysm","text":"The Cataclysm"},{"type":"The Catalyst","text":"The Catalyst"},{"type":"The Celestial Justicar","text":"The Celestial Justicar"},{"type":"The Celestial Stone","text":"The Celestial Stone"},{"type":"The Chains that Bind","text":"The Chains that Bind"},{"type":"The Cheater","text":"The Cheater"},{"type":"The Chosen","text":"The Chosen"},{"type":"The Coming Storm","text":"The Coming Storm"},{"type":"The Conduit","text":"The Conduit"},{"type":"The Craving","text":"The Craving"},{"type":"The Cursed King","text":"The Cursed King"},{"type":"The Damned","text":"The Damned"},{"type":"The Dapper Prodigy","text":"The Dapper Prodigy"},{"type":"The Darkest Dream","text":"The Darkest Dream"},{"type":"The Dark Mage","text":"The Dark Mage"},{"type":"The Deal","text":"The Deal"},{"type":"The Deceiver","text":"The Deceiver"},{"type":"The Deep Ones","text":"The Deep Ones"},{"type":"The Demon","text":"The Demon"},{"type":"The Demoness","text":"The Demoness"},{"type":"The Doctor","text":"The Doctor"},{"type":"The Doppelganger","text":"The Doppelganger"},{"type":"The Dragon","text":"The Dragon"},{"type":"The Dragon's Heart","text":"The Dragon's Heart"},{"type":"The Dreamer","text":"The Dreamer"},{"type":"The Dreamland","text":"The Dreamland"},{"type":"The Drunken Aristocrat","text":"The Drunken Aristocrat"},{"type":"The Easy Stroll","text":"The Easy Stroll"},{"type":"The Eldritch Decay","text":"The Eldritch Decay"},{"type":"The Encroaching Darkness","text":"The Encroaching Darkness"},{"type":"The Endless Darkness","text":"The Endless Darkness"},{"type":"The Endurance","text":"The Endurance"},{"type":"The Enlightened","text":"The Enlightened"},{"type":"The Escape","text":"The Escape"},{"type":"The Ethereal","text":"The Ethereal"},{"type":"The Explorer","text":"The Explorer"},{"type":"The Eye of Terror","text":"The Eye of Terror"},{"type":"The Eye of the Dragon","text":"The Eye of the Dragon"},{"type":"The Fathomless Depths","text":"The Fathomless Depths"},{"type":"The Feast","text":"The Feast"},{"type":"The Fiend","text":"The Fiend"},{"type":"The Fishmonger","text":"The Fishmonger"},{"type":"The Fletcher","text":"The Fletcher"},{"type":"The Flora's Gift","text":"The Flora's Gift"},{"type":"The Fool","text":"The Fool"},{"type":"The Formless Sea","text":"The Formless Sea"},{"type":"The Forsaken","text":"The Forsaken"},{"type":"The Fox","text":"The Fox"},{"type":"The Gambler","text":"The Gambler"},{"type":"The Garish Power","text":"The Garish Power"},{"type":"The Gemcutter","text":"The Gemcutter"},{"type":"The Gentleman","text":"The Gentleman"},{"type":"The Gladiator","text":"The Gladiator"},{"type":"The Golden Era","text":"The Golden Era"},{"type":"The Greatest Intentions","text":"The Greatest Intentions"},{"type":"The Gulf","text":"The Gulf"},{"type":"The Hale Heart","text":"The Hale Heart"},{"type":"The Harvester","text":"The Harvester"},{"type":"The Hermit","text":"The Hermit"},{"type":"The Heroic Shot","text":"The Heroic Shot"},{"type":"The Hive of Knowledge","text":"The Hive of Knowledge"},{"type":"The Hoarder","text":"The Hoarder"},{"type":"The Hunger","text":"The Hunger"},{"type":"The Immortal","text":"The Immortal"},{"type":"The Incantation","text":"The Incantation"},{"type":"The Innocent","text":"The Innocent"},{"type":"The Inoculated","text":"The Inoculated"},{"type":"The Insatiable","text":"The Insatiable"},{"type":"The Inventor","text":"The Inventor"},{"type":"The Iron Bard","text":"The Iron Bard"},{"type":"The Jester","text":"The Jester"},{"type":"The Jeweller's Boon","text":"The Jeweller's Boon"},{"type":"The Journalist","text":"The Journalist"},{"type":"The Journey","text":"The Journey"},{"type":"The King's Blade","text":"The King's Blade"},{"type":"The King's Heart","text":"The King's Heart"},{"type":"The Landing","text":"The Landing"},{"type":"The Last One Standing","text":"The Last One Standing"},{"type":"The Lich","text":"The Lich"},{"type":"The Life Thief","text":"The Life Thief"},{"type":"The Lion","text":"The Lion"},{"type":"The Long Con","text":"The Long Con"},{"type":"The Lord in Black","text":"The Lord in Black"},{"type":"The Lord of Celebration","text":"The Lord of Celebration"},{"type":"The Lover","text":"The Lover"},{"type":"The Lunaris Priestess","text":"The Lunaris Priestess"},{"type":"The Mad King","text":"The Mad King"},{"type":"The Master","text":"The Master"},{"type":"The Master Artisan","text":"The Master Artisan"},{"type":"The Mayor","text":"The Mayor"},{"type":"The Mercenary","text":"The Mercenary"},{"type":"The Messenger","text":"The Messenger"},{"type":"The Metalsmith's Gift","text":"The Metalsmith's Gift"},{"type":"The Mountain","text":"The Mountain"},{"type":"The Nurse","text":"The Nurse"},{"type":"The Oath","text":"The Oath"},{"type":"The Obscured","text":"The Obscured"},{"type":"The Offering","text":"The Offering"},{"type":"The Old Man","text":"The Old Man"},{"type":"The One With All","text":"The One With All"},{"type":"The Opulent","text":"The Opulent"},{"type":"The Pack Leader","text":"The Pack Leader"},{"type":"The Pact","text":"The Pact"},{"type":"The Penitent","text":"The Penitent"},{"type":"The Poet","text":"The Poet"},{"type":"The Polymath","text":"The Polymath"},{"type":"The Porcupine","text":"The Porcupine"},{"type":"The Price of Loyalty","text":"The Price of Loyalty"},{"type":"The Price of Protection","text":"The Price of Protection"},{"type":"The Primordial","text":"The Primordial"},{"type":"The Professor","text":"The Professor"},{"type":"The Progeny of Lunaris","text":"The Progeny of Lunaris"},{"type":"The Puzzle","text":"The Puzzle"},{"type":"The Queen","text":"The Queen"},{"type":"The Rabid Rhoa","text":"The Rabid Rhoa"},{"type":"The Realm","text":"The Realm"},{"type":"The Risk","text":"The Risk"},{"type":"The Rite of Elements","text":"The Rite of Elements"},{"type":"The Road to Power","text":"The Road to Power"},{"type":"The Ruthless Ceinture","text":"The Ruthless Ceinture"},{"type":"The Sacrifice","text":"The Sacrifice"},{"type":"The Saint's Treasure","text":"The Saint's Treasure"},{"type":"The Samurai's Eye","text":"The Samurai's Eye"},{"type":"The Scarred Meadow","text":"The Scarred Meadow"},{"type":"The Scavenger","text":"The Scavenger"},{"type":"The Scholar","text":"The Scholar"},{"type":"The Seeker","text":"The Seeker"},{"type":"The Sephirot","text":"The Sephirot"},{"type":"The Side Quest","text":"The Side Quest"},{"type":"The Sigil","text":"The Sigil"},{"type":"The Siren","text":"The Siren"},{"type":"The Skeleton","text":"The Skeleton"},{"type":"The Soul","text":"The Soul"},{"type":"The Spark and the Flame","text":"The Spark and the Flame"},{"type":"The Spoiled Prince","text":"The Spoiled Prince"},{"type":"The Standoff","text":"The Standoff"},{"type":"The Stormcaller","text":"The Stormcaller"},{"type":"The Strategist","text":"The Strategist"},{"type":"The Summoner","text":"The Summoner"},{"type":"The Sun","text":"The Sun"},{"type":"The Surgeon","text":"The Surgeon"},{"type":"The Surveyor","text":"The Surveyor"},{"type":"The Survivalist","text":"The Survivalist"},{"type":"The Sustenance","text":"The Sustenance"},{"type":"The Sword King's Salute","text":"The Sword King's Salute"},{"type":"The Thaumaturgist","text":"The Thaumaturgist"},{"type":"The Throne","text":"The Throne"},{"type":"The Tinkerer's Table","text":"The Tinkerer's Table"},{"type":"The Tower","text":"The Tower"},{"type":"The Traitor","text":"The Traitor"},{"type":"The Trial","text":"The Trial"},{"type":"The Tumbleweed","text":"The Tumbleweed"},{"type":"The Twilight Moon","text":"The Twilight Moon"},{"type":"The Twins","text":"The Twins"},{"type":"The Tyrant","text":"The Tyrant"},{"type":"The Undaunted","text":"The Undaunted"},{"type":"The Undisputed","text":"The Undisputed"},{"type":"The Unexpected Prize","text":"The Unexpected Prize"},{"type":"The Union","text":"The Union"},{"type":"The Valkyrie","text":"The Valkyrie"},{"type":"The Valley of Steel Boxes","text":"The Valley of Steel Boxes"},{"type":"The Vast","text":"The Vast"},{"type":"The Visionary","text":"The Visionary"},{"type":"The Void","text":"The Void"},{"type":"The Warden","text":"The Warden"},{"type":"The Warlord","text":"The Warlord"},{"type":"The Watcher","text":"The Watcher"},{"type":"The Web","text":"The Web"},{"type":"The White Knight","text":"The White Knight"},{"type":"The Wilted Rose","text":"The Wilted Rose"},{"type":"The Wind","text":"The Wind"},{"type":"The Witch","text":"The Witch"},{"type":"The Wolf","text":"The Wolf"},{"type":"The Wolf's Legacy","text":"The Wolf's Legacy"},{"type":"The Wolf's Shadow","text":"The Wolf's Shadow"},{"type":"The Wolven King's Bite","text":"The Wolven King's Bite"},{"type":"The Wolverine","text":"The Wolverine"},{"type":"The World Eater","text":"The World Eater"},{"type":"The Wrath","text":"The Wrath"},{"type":"The Wretched","text":"The Wretched"},{"type":"Thirst for Knowledge","text":"Thirst for Knowledge"},{"type":"Three Faces in the Dark","text":"Three Faces in the Dark"},{"type":"Three Voices","text":"Three Voices"},{"type":"Thunderous Skies","text":"Thunderous Skies"},{"type":"Time-Lost Relic","text":"Time-Lost Relic"},{"type":"Tranquillity","text":"Tranquillity"},{"type":"Treasure Hunter","text":"Treasure Hunter"},{"type":"Triskaidekaphobia","text":"Triskaidekaphobia"},{"type":"Turn the Other Cheek","text":"Turn the Other Cheek"},{"type":"Unchained","text":"Unchained"},{"type":"Underground Forest","text":"Underground Forest"},{"type":"Vanity","text":"Vanity"},{"type":"Vile Power","text":"Vile Power"},{"type":"Vinia's Token","text":"Vinia's Token"},{"type":"Void of the Elements","text":"Void of the Elements"},{"type":"Volatile Power","text":"Volatile Power"},{"type":"Wealth and Power","text":"Wealth and Power"}]},{"label":"Currency","entries":[{"name":"First Piece of the Arcane","type":"Legion Sword Piece","text":"First Piece of the Arcane Legion Sword Piece","flags":{"unique":true}},{"name":"First Piece of Brutality","type":"Imperial Staff Piece","text":"First Piece of Brutality Imperial Staff Piece","flags":{"unique":true}},{"name":"First Piece of Directions","type":"Blunt Arrow Quiver Piece","text":"First Piece of Directions Blunt Arrow Quiver Piece","flags":{"unique":true}},{"name":"First Piece of Focus","type":"Archon Kite Shield Piece","text":"First Piece of Focus Archon Kite Shield Piece","flags":{"unique":true}},{"name":"First Piece of Storms","type":"Callous Mask Piece","text":"First Piece of Storms Callous Mask Piece","flags":{"unique":true}},{"name":"First Piece of Time","type":"Cloth Belt Piece","text":"First Piece of Time Cloth Belt Piece","flags":{"unique":true}},{"name":"Fourth Piece of Focus","type":"Archon Kite Shield Piece","text":"Fourth Piece of Focus Archon Kite Shield Piece","flags":{"unique":true}},{"name":"Second Piece of the Arcane","type":"Legion Sword Piece","text":"Second Piece of the Arcane Legion Sword Piece","flags":{"unique":true}},{"name":"Second Piece of Brutality","type":"Imperial Staff Piece","text":"Second Piece of Brutality Imperial Staff Piece","flags":{"unique":true}},{"name":"Second Piece of Directions","type":"Blunt Arrow Quiver Piece","text":"Second Piece of Directions Blunt Arrow Quiver Piece","flags":{"unique":true}},{"name":"Second Piece of Focus","type":"Archon Kite Shield Piece","text":"Second Piece of Focus Archon Kite Shield Piece","flags":{"unique":true}},{"name":"Second Piece of Storms","type":"Callous Mask Piece","text":"Second Piece of Storms Callous Mask Piece","flags":{"unique":true}},{"name":"Second Piece of Time","type":"Cloth Belt Piece","text":"Second Piece of Time Cloth Belt Piece","flags":{"unique":true}},{"name":"Third Piece of the Arcane","type":"Legion Sword Piece","text":"Third Piece of the Arcane Legion Sword Piece","flags":{"unique":true}},{"name":"Third Piece of Brutality","type":"Imperial Staff Piece","text":"Third Piece of Brutality Imperial Staff Piece","flags":{"unique":true}},{"name":"Third Piece of Directions","type":"Blunt Arrow Quiver Piece","text":"Third Piece of Directions Blunt Arrow Quiver Piece","flags":{"unique":true}},{"name":"Third Piece of Focus","type":"Archon Kite Shield Piece","text":"Third Piece of Focus Archon Kite Shield Piece","flags":{"unique":true}},{"name":"Third Piece of Storms","type":"Callous Mask Piece","text":"Third Piece of Storms Callous Mask Piece","flags":{"unique":true}},{"type":"Crusader's Exalted Orb","text":"Crusader's Exalted Orb"},{"type":"Hunter's Exalted Orb","text":"Hunter's Exalted Orb"},{"type":"Redeemer's Exalted Orb","text":"Redeemer's Exalted Orb"},{"type":"Warlord's Exalted Orb","text":"Warlord's Exalted Orb"},{"type":"Awakener's Orb","text":"Awakener's Orb"},{"type":"Simple Rope Net","text":"Simple Rope Net"},{"type":"Thaumaturgical Net","text":"Thaumaturgical Net"},{"type":"Necromancy Net","text":"Necromancy Net"},{"type":"Reinforced Rope Net","text":"Reinforced Rope Net"},{"type":"Strong Rope Net","text":"Strong Rope Net"},{"type":"Simple Iron Net","text":"Simple Iron Net"},{"type":"Reinforced Iron Net","text":"Reinforced Iron Net"},{"type":"Strong Iron Net","text":"Strong Iron Net"},{"type":"Simple Steel Net","text":"Simple Steel Net"},{"type":"Reinforced Steel Net","text":"Reinforced Steel Net"},{"type":"Strong Steel Net","text":"Strong Steel Net"},{"type":"Simple Sextant","text":"Simple Sextant"},{"type":"Awakened Sextant","text":"Awakened Sextant"},{"type":"Prime Sextant","text":"Prime Sextant"},{"type":"Facetor's Lens","text":"Facetor's Lens"},{"type":"Orb of Augmentation","text":"Orb of Augmentation"},{"type":"Exalted Orb","text":"Exalted Orb"},{"type":"Exalted Shard","text":"Exalted Shard"},{"type":"Abyssal Delirium Orb","text":"Abyssal Delirium Orb"},{"type":"Armoursmith's Delirium Orb","text":"Armoursmith's Delirium Orb"},{"type":"Blighted Delirium Orb","text":"Blighted Delirium Orb"},{"type":"Obscured Delirium Orb","text":"Obscured Delirium Orb"},{"type":"Fine Delirium Orb","text":"Fine Delirium Orb"},{"type":"Diviner's Delirium Orb","text":"Diviner's Delirium Orb"},{"type":"Whispering Delirium Orb","text":"Whispering Delirium Orb"},{"type":"Fossilised Delirium Orb","text":"Fossilised Delirium Orb"},{"type":"Fragmented Delirium Orb","text":"Fragmented Delirium Orb"},{"type":"Thaumaturge's Delirium Orb","text":"Thaumaturge's Delirium Orb"},{"type":"Foreboding Delirium Orb","text":"Foreboding Delirium Orb"},{"type":"Timeless Delirium Orb","text":"Timeless Delirium Orb"},{"type":"Imperial Delirium Orb","text":"Imperial Delirium Orb"},{"type":"Cartographer's Delirium Orb","text":"Cartographer's Delirium Orb"},{"type":"Amorphous Delirium Orb","text":"Amorphous Delirium Orb"},{"type":"Decadent Delirium Orb","text":"Decadent Delirium Orb"},{"type":"Portentous Delirium Orb","text":"Portentous Delirium Orb"},{"type":"Skittering Delirium Orb","text":"Skittering Delirium Orb"},{"type":"Primal Delirium Orb","text":"Primal Delirium Orb"},{"type":"Jeweller's Delirium Orb","text":"Jeweller's Delirium Orb"},{"type":"Singular Delirium Orb","text":"Singular Delirium Orb"},{"type":"Blacksmith's Delirium Orb","text":"Blacksmith's Delirium Orb"},{"type":"Simulacrum Splinter","text":"Simulacrum Splinter"},{"type":"Armourer's Scrap","text":"Armourer's Scrap"},{"type":"Splinter of Chayula","text":"Splinter of Chayula"},{"type":"Splinter of Tul","text":"Splinter of Tul"},{"type":"Splinter of Xoph","text":"Splinter of Xoph"},{"type":"Splinter of Esh","text":"Splinter of Esh"},{"type":"Splinter of Uul-Netol","text":"Splinter of Uul-Netol"},{"type":"Blessing of Chayula","text":"Blessing of Chayula"},{"type":"Blessing of Tul","text":"Blessing of Tul"},{"type":"Blessing of Xoph","text":"Blessing of Xoph"},{"type":"Blessing of Esh","text":"Blessing of Esh"},{"type":"Blessing of Uul-Netol","text":"Blessing of Uul-Netol"},{"type":"Orb of Scouring","text":"Orb of Scouring"},{"type":"Vaal Orb","text":"Vaal Orb"},{"type":"Remnant of Corruption","text":"Remnant of Corruption"},{"type":"Hollow Fossil","text":"Hollow Fossil"},{"type":"Serrated Fossil","text":"Serrated Fossil"},{"type":"Corroded Fossil","text":"Corroded Fossil"},{"type":"Aetheric Fossil","text":"Aetheric Fossil"},{"type":"Aberrant Fossil","text":"Aberrant Fossil"},{"type":"Frigid Fossil","text":"Frigid Fossil"},{"type":"Glyphic Fossil","text":"Glyphic Fossil"},{"type":"Dense Fossil","text":"Dense Fossil"},{"type":"Prismatic Fossil","text":"Prismatic Fossil"},{"type":"Enchanted Fossil","text":"Enchanted Fossil"},{"type":"Scorched Fossil","text":"Scorched Fossil"},{"type":"Faceted Fossil","text":"Faceted Fossil"},{"type":"Pristine Fossil","text":"Pristine Fossil"},{"type":"Metallic Fossil","text":"Metallic Fossil"},{"type":"Sanctified Fossil","text":"Sanctified Fossil"},{"type":"Lucent Fossil","text":"Lucent Fossil"},{"type":"Bound Fossil","text":"Bound Fossil"},{"type":"Fractured Fossil","text":"Fractured Fossil"},{"type":"Jagged Fossil","text":"Jagged Fossil"},{"type":"Perfect Fossil","text":"Perfect Fossil"},{"type":"Tangled Fossil","text":"Tangled Fossil"},{"type":"Gilded Fossil","text":"Gilded Fossil"},{"type":"Encrusted Fossil","text":"Encrusted Fossil"},{"type":"Shuddering Fossil","text":"Shuddering Fossil"},{"type":"Bloodstained Fossil","text":"Bloodstained Fossil"},{"type":"Mirror of Kalandra","text":"Mirror of Kalandra"},{"type":"Mirror Shard","text":"Mirror Shard"},{"type":"Muttering Essence of Anger","text":"Muttering Essence of Anger"},{"type":"Weeping Essence of Anger","text":"Weeping Essence of Anger"},{"type":"Wailing Essence of Anger","text":"Wailing Essence of Anger"},{"type":"Screaming Essence of Anger","text":"Screaming Essence of Anger"},{"type":"Shrieking Essence of Anger","text":"Shrieking Essence of Anger"},{"type":"Deafening Essence of Anger","text":"Deafening Essence of Anger"},{"type":"Wailing Essence of Anguish","text":"Wailing Essence of Anguish"},{"type":"Screaming Essence of Anguish","text":"Screaming Essence of Anguish"},{"type":"Shrieking Essence of Anguish","text":"Shrieking Essence of Anguish"},{"type":"Deafening Essence of Anguish","text":"Deafening Essence of Anguish"},{"type":"Whispering Essence of Contempt","text":"Whispering Essence of Contempt"},{"type":"Muttering Essence of Contempt","text":"Muttering Essence of Contempt"},{"type":"Weeping Essence of Contempt","text":"Weeping Essence of Contempt"},{"type":"Wailing Essence of Contempt","text":"Wailing Essence of Contempt"},{"type":"Screaming Essence of Contempt","text":"Screaming Essence of Contempt"},{"type":"Shrieking Essence of Contempt","text":"Shrieking Essence of Contempt"},{"type":"Deafening Essence of Contempt","text":"Deafening Essence of Contempt"},{"type":"Essence of Delirium","text":"Essence of Delirium"},{"type":"Weeping Essence of Doubt","text":"Weeping Essence of Doubt"},{"type":"Wailing Essence of Doubt","text":"Wailing Essence of Doubt"},{"type":"Screaming Essence of Doubt","text":"Screaming Essence of Doubt"},{"type":"Shrieking Essence of Doubt","text":"Shrieking Essence of Doubt"},{"type":"Deafening Essence of Doubt","text":"Deafening Essence of Doubt"},{"type":"Screaming Essence of Dread","text":"Screaming Essence of Dread"},{"type":"Shrieking Essence of Dread","text":"Shrieking Essence of Dread"},{"type":"Deafening Essence of Dread","text":"Deafening Essence of Dread"},{"type":"Screaming Essence of Envy","text":"Screaming Essence of Envy"},{"type":"Shrieking Essence of Envy","text":"Shrieking Essence of Envy"},{"type":"Deafening Essence of Envy","text":"Deafening Essence of Envy"},{"type":"Muttering Essence of Fear","text":"Muttering Essence of Fear"},{"type":"Weeping Essence of Fear","text":"Weeping Essence of Fear"},{"type":"Wailing Essence of Fear","text":"Wailing Essence of Fear"},{"type":"Screaming Essence of Fear","text":"Screaming Essence of Fear"},{"type":"Shrieking Essence of Fear","text":"Shrieking Essence of Fear"},{"type":"Deafening Essence of Fear","text":"Deafening Essence of Fear"},{"type":"Whispering Essence of Greed","text":"Whispering Essence of Greed"},{"type":"Muttering Essence of Greed","text":"Muttering Essence of Greed"},{"type":"Weeping Essence of Greed","text":"Weeping Essence of Greed"},{"type":"Wailing Essence of Greed","text":"Wailing Essence of Greed"},{"type":"Screaming Essence of Greed","text":"Screaming Essence of Greed"},{"type":"Shrieking Essence of Greed","text":"Shrieking Essence of Greed"},{"type":"Deafening Essence of Greed","text":"Deafening Essence of Greed"},{"type":"Whispering Essence of Hatred","text":"Whispering Essence of Hatred"},{"type":"Muttering Essence of Hatred","text":"Muttering Essence of Hatred"},{"type":"Weeping Essence of Hatred","text":"Weeping Essence of Hatred"},{"type":"Wailing Essence of Hatred","text":"Wailing Essence of Hatred"},{"type":"Screaming Essence of Hatred","text":"Screaming Essence of Hatred"},{"type":"Shrieking Essence of Hatred","text":"Shrieking Essence of Hatred"},{"type":"Deafening Essence of Hatred","text":"Deafening Essence of Hatred"},{"type":"Essence of Horror","text":"Essence of Horror"},{"type":"Essence of Hysteria","text":"Essence of Hysteria"},{"type":"Essence of Insanity","text":"Essence of Insanity"},{"type":"Wailing Essence of Loathing","text":"Wailing Essence of Loathing"},{"type":"Screaming Essence of Loathing","text":"Screaming Essence of Loathing"},{"type":"Shrieking Essence of Loathing","text":"Shrieking Essence of Loathing"},{"type":"Deafening Essence of Loathing","text":"Deafening Essence of Loathing"},{"type":"Screaming Essence of Misery","text":"Screaming Essence of Misery"},{"type":"Shrieking Essence of Misery","text":"Shrieking Essence of Misery"},{"type":"Deafening Essence of Misery","text":"Deafening Essence of Misery"},{"type":"Weeping Essence of Rage","text":"Weeping Essence of Rage"},{"type":"Wailing Essence of Rage","text":"Wailing Essence of Rage"},{"type":"Screaming Essence of Rage","text":"Screaming Essence of Rage"},{"type":"Shrieking Essence of Rage","text":"Shrieking Essence of Rage"},{"type":"Deafening Essence of Rage","text":"Deafening Essence of Rage"},{"type":"Screaming Essence of Scorn","text":"Screaming Essence of Scorn"},{"type":"Shrieking Essence of Scorn","text":"Shrieking Essence of Scorn"},{"type":"Deafening Essence of Scorn","text":"Deafening Essence of Scorn"},{"type":"Muttering Essence of Sorrow","text":"Muttering Essence of Sorrow"},{"type":"Weeping Essence of Sorrow","text":"Weeping Essence of Sorrow"},{"type":"Wailing Essence of Sorrow","text":"Wailing Essence of Sorrow"},{"type":"Screaming Essence of Sorrow","text":"Screaming Essence of Sorrow"},{"type":"Shrieking Essence of Sorrow","text":"Shrieking Essence of Sorrow"},{"type":"Deafening Essence of Sorrow","text":"Deafening Essence of Sorrow"},{"type":"Wailing Essence of Spite","text":"Wailing Essence of Spite"},{"type":"Screaming Essence of Spite","text":"Screaming Essence of Spite"},{"type":"Shrieking Essence of Spite","text":"Shrieking Essence of Spite"},{"type":"Deafening Essence of Spite","text":"Deafening Essence of Spite"},{"type":"Weeping Essence of Suffering","text":"Weeping Essence of Suffering"},{"type":"Wailing Essence of Suffering","text":"Wailing Essence of Suffering"},{"type":"Screaming Essence of Suffering","text":"Screaming Essence of Suffering"},{"type":"Shrieking Essence of Suffering","text":"Shrieking Essence of Suffering"},{"type":"Deafening Essence of Suffering","text":"Deafening Essence of Suffering"},{"type":"Muttering Essence of Torment","text":"Muttering Essence of Torment"},{"type":"Weeping Essence of Torment","text":"Weeping Essence of Torment"},{"type":"Wailing Essence of Torment","text":"Wailing Essence of Torment"},{"type":"Screaming Essence of Torment","text":"Screaming Essence of Torment"},{"type":"Shrieking Essence of Torment","text":"Shrieking Essence of Torment"},{"type":"Deafening Essence of Torment","text":"Deafening Essence of Torment"},{"type":"Whispering Essence of Woe","text":"Whispering Essence of Woe"},{"type":"Muttering Essence of Woe","text":"Muttering Essence of Woe"},{"type":"Weeping Essence of Woe","text":"Weeping Essence of Woe"},{"type":"Wailing Essence of Woe","text":"Wailing Essence of Woe"},{"type":"Screaming Essence of Woe","text":"Screaming Essence of Woe"},{"type":"Shrieking Essence of Woe","text":"Shrieking Essence of Woe"},{"type":"Deafening Essence of Woe","text":"Deafening Essence of Woe"},{"type":"Weeping Essence of Wrath","text":"Weeping Essence of Wrath"},{"type":"Wailing Essence of Wrath","text":"Wailing Essence of Wrath"},{"type":"Screaming Essence of Wrath","text":"Screaming Essence of Wrath"},{"type":"Shrieking Essence of Wrath","text":"Shrieking Essence of Wrath"},{"type":"Deafening Essence of Wrath","text":"Deafening Essence of Wrath"},{"type":"Wailing Essence of Zeal","text":"Wailing Essence of Zeal"},{"type":"Screaming Essence of Zeal","text":"Screaming Essence of Zeal"},{"type":"Shrieking Essence of Zeal","text":"Shrieking Essence of Zeal"},{"type":"Deafening Essence of Zeal","text":"Deafening Essence of Zeal"},{"type":"Glassblower's Bauble","text":"Glassblower's Bauble"},{"type":"Gemcutter's Prism","text":"Gemcutter's Prism"},{"type":"Time-light Scroll","text":"Time-light Scroll"},{"type":"Deregulation Scroll","text":"Deregulation Scroll"},{"type":"Fragmentation Scroll","text":"Fragmentation Scroll"},{"type":"Specularity Scroll","text":"Specularity Scroll"},{"type":"Haemocombustion Scroll","text":"Haemocombustion Scroll"},{"type":"Electroshock Scroll","text":"Electroshock Scroll"},{"type":"Scroll of Wisdom","text":"Scroll of Wisdom"},{"type":"Scroll Fragment","text":"Scroll Fragment"},{"type":"Imprint","text":"Imprint"},{"type":"Eternal Orb","text":"Eternal Orb"},{"type":"Abyssal Incubator","text":"Abyssal Incubator"},{"type":"Geomancer's Incubator","text":"Geomancer's Incubator"},{"type":"Celestial Armoursmith's Incubator","text":"Celestial Armoursmith's Incubator"},{"type":"Feral Incubator","text":"Feral Incubator"},{"type":"Obscured Incubator","text":"Obscured Incubator"},{"type":"Fine Incubator","text":"Fine Incubator"},{"type":"Ornate Incubator","text":"Ornate Incubator"},{"type":"Diviner's Incubator","text":"Diviner's Incubator"},{"type":"Whispering Incubator","text":"Whispering Incubator"},{"type":"Infused Incubator","text":"Infused Incubator"},{"type":"Fossilised Incubator","text":"Fossilised Incubator"},{"type":"Fragmented Incubator","text":"Fragmented Incubator"},{"type":"Thaumaturge's Incubator","text":"Thaumaturge's Incubator"},{"type":"Gemcutter's Incubator","text":"Gemcutter's Incubator"},{"type":"Mysterious Incubator","text":"Mysterious Incubator"},{"type":"Foreboding Incubator","text":"Foreboding Incubator"},{"type":"Enchanted Incubator","text":"Enchanted Incubator"},{"type":"Eldritch Incubator","text":"Eldritch Incubator"},{"type":"Cartographer's Incubator","text":"Cartographer's Incubator"},{"type":"Decadent Incubator","text":"Decadent Incubator"},{"type":"Skittering Incubator","text":"Skittering Incubator"},{"type":"Primal Incubator","text":"Primal Incubator"},{"type":"Celestial Jeweller's Incubator","text":"Celestial Jeweller's Incubator"},{"type":"Time-Lost Incubator","text":"Time-Lost Incubator"},{"type":"Otherworldly Incubator","text":"Otherworldly Incubator"},{"type":"Singular Incubator","text":"Singular Incubator"},{"type":"Celestial Blacksmith's Incubator","text":"Celestial Blacksmith's Incubator"},{"type":"Vial of Sacrifice","text":"Vial of Sacrifice"},{"type":"Vial of the Ghost","text":"Vial of the Ghost"},{"type":"Vial of Transcendence","text":"Vial of Transcendence"},{"type":"Vial of Fate","text":"Vial of Fate"},{"type":"Vial of Summoning","text":"Vial of Summoning"},{"type":"Vial of the Ritual","text":"Vial of the Ritual"},{"type":"Vial of Consequence","text":"Vial of Consequence"},{"type":"Vial of Awakening","text":"Vial of Awakening"},{"type":"Vial of Dominance","text":"Vial of Dominance"},{"type":"Bestiary Orb","text":"Bestiary Orb"},{"type":"Abrasive Catalyst","text":"Abrasive Catalyst"},{"type":"Intrinsic Catalyst","text":"Intrinsic Catalyst"},{"type":"Imbued Catalyst","text":"Imbued Catalyst"},{"type":"Tempering Catalyst","text":"Tempering Catalyst"},{"type":"Turbulent Catalyst","text":"Turbulent Catalyst"},{"type":"Prismatic Catalyst","text":"Prismatic Catalyst"},{"type":"Fertile Catalyst","text":"Fertile Catalyst"},{"type":"Timeless Eternal Empire Splinter","text":"Timeless Eternal Empire Splinter"},{"type":"Timeless Karui Splinter","text":"Timeless Karui Splinter"},{"type":"Timeless Maraketh Splinter","text":"Timeless Maraketh Splinter"},{"type":"Timeless Templar Splinter","text":"Timeless Templar Splinter"},{"type":"Timeless Vaal Splinter","text":"Timeless Vaal Splinter"},{"type":"Cartographer's Chisel","text":"Cartographer's Chisel"},{"type":"Divine Orb","text":"Divine Orb"},{"type":"Orb of Regret","text":"Orb of Regret"},{"type":"Perandus Coin","text":"Perandus Coin"},{"type":"Portal Scroll","text":"Portal Scroll"},{"type":"Orb of Annulment","text":"Orb of Annulment"},{"type":"Annulment Shard","text":"Annulment Shard"},{"type":"Blessed Orb","text":"Blessed Orb"},{"type":"Orb of Alteration","text":"Orb of Alteration"},{"type":"Alteration Shard","text":"Alteration Shard"},{"type":"Orb of Horizons","text":"Orb of Horizons"},{"type":"Horizon Shard","text":"Horizon Shard"},{"type":"Chaos Orb","text":"Chaos Orb"},{"type":"Chaos Shard","text":"Chaos Shard"},{"type":"Prime Regrading Lens","text":"Prime Regrading Lens"},{"type":"Chromatic Orb","text":"Chromatic Orb"},{"type":"Orb of Fusing","text":"Orb of Fusing"},{"type":"Jeweller's Orb","text":"Jeweller's Orb"},{"type":"Ancient Orb","text":"Ancient Orb"},{"type":"Ancient Shard","text":"Ancient Shard"},{"type":"Unshaping Orb","text":"Unshaping Orb"},{"type":"Albino Rhoa Feather","text":"Albino Rhoa Feather"},{"type":"Master Cartographer's Seal","text":"Master Cartographer's Seal"},{"type":"Apprentice Cartographer's Seal","text":"Apprentice Cartographer's Seal"},{"type":"Journeyman Cartographer's Seal","text":"Journeyman Cartographer's Seal"},{"type":"Silver Coin","text":"Silver Coin"},{"type":"Engineer's Orb","text":"Engineer's Orb"},{"type":"Infused Engineer's Orb","text":"Infused Engineer's Orb"},{"type":"Engineer's Shard","text":"Engineer's Shard"},{"type":"Regal Orb","text":"Regal Orb"},{"type":"Regal Shard","text":"Regal Shard"},{"type":"Harbinger's Orb","text":"Harbinger's Orb"},{"type":"Harbinger's Shard","text":"Harbinger's Shard"},{"type":"Orb of Chance","text":"Orb of Chance"},{"type":"Orb of Transmutation","text":"Orb of Transmutation"},{"type":"Transmutation Shard","text":"Transmutation Shard"},{"type":"Orb of Alchemy","text":"Orb of Alchemy"},{"type":"Orb of Binding","text":"Orb of Binding"},{"type":"Binding Shard","text":"Binding Shard"},{"type":"Alchemy Shard","text":"Alchemy Shard"},{"type":"Blacksmith's Whetstone","text":"Blacksmith's Whetstone"},{"type":"Clear Oil","text":"Clear Oil"},{"type":"Opalescent Oil","text":"Opalescent Oil"},{"type":"Silver Oil","text":"Silver Oil"},{"type":"Golden Oil","text":"Golden Oil"},{"type":"Sepia Oil","text":"Sepia Oil"},{"type":"Amber Oil","text":"Amber Oil"},{"type":"Verdant Oil","text":"Verdant Oil"},{"type":"Teal Oil","text":"Teal Oil"},{"type":"Azure Oil","text":"Azure Oil"},{"type":"Indigo Oil","text":"Indigo Oil"},{"type":"Violet Oil","text":"Violet Oil"},{"type":"Crimson Oil","text":"Crimson Oil"},{"type":"Black Oil","text":"Black Oil"},{"type":"Primitive Chaotic Resonator","text":"Primitive Chaotic Resonator"},{"type":"Potent Chaotic Resonator","text":"Potent Chaotic Resonator"},{"type":"Powerful Chaotic Resonator","text":"Powerful Chaotic Resonator"},{"type":"Prime Chaotic Resonator","text":"Prime Chaotic Resonator"},{"type":"Primitive Alchemical Resonator","text":"Primitive Alchemical Resonator"},{"type":"Potent Alchemical Resonator","text":"Potent Alchemical Resonator"},{"type":"Powerful Alchemical Resonator","text":"Powerful Alchemical Resonator"},{"type":"Prime Alchemical Resonator","text":"Prime Alchemical Resonator"},{"type":"Stacked Deck","text":"Stacked Deck"},{"type":"Horticrafting Bud","text":"Horticrafting Bud"},{"type":"Horticrafting Flower","text":"Horticrafting Flower"},{"type":"Horticrafting Blossom","text":"Horticrafting Blossom"},{"type":"Lifeforce Bud","text":"Lifeforce Bud"},{"type":"Lifeforce Flower","text":"Lifeforce Flower"},{"type":"Lifeforce Blossom","text":"Lifeforce Blossom"},{"type":"Fortune Bud","text":"Fortune Bud"},{"type":"Fortune Flower","text":"Fortune Flower"},{"type":"Fortune Blossom","text":"Fortune Blossom"},{"type":"Primal Cleaveling Seed","text":"Primal Cleaveling Seed"},{"type":"Wild Thornfruit","text":"Wild Thornfruit"},{"type":"Wild Bristlebeast Grain","text":"Wild Bristlebeast Grain"},{"type":"Wild Bristle Matron Bulb","text":"Wild Bristle Matron Bulb"},{"type":"Primal Blisterfruit","text":"Primal Blisterfruit"},{"type":"Wild Thornmaw Bulb","text":"Wild Thornmaw Bulb"},{"type":"Vivid Whipleg Bulb","text":"Vivid Whipleg Bulb"},{"type":"Wild Brambleback Bulb","text":"Wild Brambleback Bulb"},{"type":"Vivid Scalefruit","text":"Vivid Scalefruit"},{"type":"Wild Chieftain Grain","text":"Wild Chieftain Grain"},{"type":"Primal Viper Grain","text":"Primal Viper Grain"},{"type":"Vivid Devourer Bulb","text":"Vivid Devourer Bulb"},{"type":"Wild Ursaling Seed","text":"Wild Ursaling Seed"},{"type":"Primal Maw Seed","text":"Primal Maw Seed"},{"type":"Primal Cystcaller Bulb","text":"Primal Cystcaller Bulb"},{"type":"Wild Hellion Seed","text":"Wild Hellion Seed"},{"type":"Wild Hellion Alpha Bulb","text":"Wild Hellion Alpha Bulb"},{"type":"Wild Snap Hound Grain","text":"Wild Snap Hound Grain"},{"type":"Vivid Sapsucker Grain","text":"Vivid Sapsucker Grain"},{"type":"Primal Chimeral Grain","text":"Primal Chimeral Grain"},{"type":"Wild Infestation Queen Bulb","text":"Wild Infestation Queen Bulb"},{"type":"Wild Hatchling Seed","text":"Wild Hatchling Seed"},{"type":"Primal Blisterlord Bulb","text":"Primal Blisterlord Bulb"},{"type":"Primal Reborn Bulb","text":"Primal Reborn Bulb"},{"type":"Vivid Arachnid Seed","text":"Vivid Arachnid Seed"},{"type":"Wild Homunculus Grain","text":"Wild Homunculus Grain"},{"type":"Wild Ape Seed","text":"Wild Ape Seed"},{"type":"Primal Crushclaw Bulb","text":"Primal Crushclaw Bulb"},{"type":"Vivid Leech Seed","text":"Vivid Leech Seed"},{"type":"Vivid Parasite Grain","text":"Vivid Parasite Grain"},{"type":"Vivid Nestback Grain","text":"Vivid Nestback Grain"},{"type":"Vivid Abberarach Bulb","text":"Vivid Abberarach Bulb"},{"type":"Primal Feasting Horror Seed","text":"Primal Feasting Horror Seed"},{"type":"Primal Rhex Grain","text":"Primal Rhex Grain"},{"type":"Primal Rhex Matriarch Bulb","text":"Primal Rhex Matriarch Bulb"},{"type":"Primal Rhoa Seed","text":"Primal Rhoa Seed"},{"type":"Vivid Razorleg Grain","text":"Vivid Razorleg Grain"},{"type":"Primal Scrabbler Grain","text":"Primal Scrabbler Grain"},{"type":"Primal Dustspitter Seed","text":"Primal Dustspitter Seed"},{"type":"Vivid Scorpion Seed","text":"Vivid Scorpion Seed"},{"type":"Vivid Striketail Grain","text":"Vivid Striketail Grain"},{"type":"Primal Dustcrab Grain","text":"Primal Dustcrab Grain"},{"type":"Wild Spikeback Grain","text":"Wild Spikeback Grain"},{"type":"Vivid Watcher Bulb","text":"Vivid Watcher Bulb"},{"type":"Vivid Thornweaver Seed","text":"Vivid Thornweaver Seed"},{"type":"Vivid Vulture Bulb","text":"Vivid Vulture Bulb"},{"type":"Vivid Weta Seed","text":"Vivid Weta Seed"},{"type":"Wild Thornwolf Seed","text":"Wild Thornwolf Seed"},{"type":"Rogue's Marker","text":"Rogue's Marker"},{"type":"Urn of Farud","text":"Urn of Farud"},{"type":"Ogham Candelabra","text":"Ogham Candelabra"},{"type":"Tusked Hominid Skull","text":"Tusked Hominid Skull"},{"type":"Celestial Stone","text":"Celestial Stone"},{"type":"Urn of the Original Ashes","text":"Urn of the Original Ashes"},{"type":"Heart Coil","text":"Heart Coil"},{"type":"Enigmatic Assembly A4","text":"Enigmatic Assembly A4"},{"type":"Enigmatic Assembly B2","text":"Enigmatic Assembly B2"},{"type":"Enigmatic Assembly C5","text":"Enigmatic Assembly C5"},{"type":"Enigmatic Assembly D1","text":"Enigmatic Assembly D1"},{"type":"Mirror of Teklatipitzi","text":"Mirror of Teklatipitzi"},{"type":"Box of Tripyxis","text":"Box of Tripyxis"},{"type":"Golden Hetzapal Idol","text":"Golden Hetzapal Idol"},{"type":"Flask of Welakath","text":"Flask of Welakath"},{"type":"Forbidden Lamp","text":"Forbidden Lamp"},{"type":"The Goddess of Water","text":"The Goddess of Water"},{"type":"The Golden Ibis","text":"The Golden Ibis"},{"type":"Impossible Crystal","text":"Impossible Crystal"},{"type":"Living Ice","text":"Living Ice"},{"type":"Seal of Lunaris","text":"Seal of Lunaris"},{"type":"Golden Matatl Idol","text":"Golden Matatl Idol"},{"type":"Incense of Keth","text":"Incense of Keth"},{"type":"The Sea Pearl Heirloom","text":"The Sea Pearl Heirloom"},{"type":"Seal of Solaris","text":"Seal of Solaris"},{"type":"Golden Napuatzi Idol","text":"Golden Napuatzi Idol"},{"type":"Essence Burner","text":"Essence Burner"},{"type":"Ancient Seal","text":"Ancient Seal"},{"type":"Dekhara's Resolve","text":"Dekhara's Resolve"},{"type":"Orbala's Fifth Adventure","text":"Orbala's Fifth Adventure"},{"type":"Sword of the Inverse Relic","text":"Sword of the Inverse Relic"},{"type":"Crest of Ezomyr","text":"Crest of Ezomyr"},{"type":"Golden Slave Idol","text":"Golden Slave Idol"},{"type":"Golden Xoplotli Idol","text":"Golden Xoplotli Idol"},{"type":"Ez Myrae Tome","text":"Ez Myrae Tome"},{"type":"Hand of Arimor","text":"Hand of Arimor"},{"type":"Abberathine Horns","text":"Abberathine Horns"},{"type":"Admiral Proclar's Pipe","text":"Admiral Proclar's Pipe"},{"type":"Alchemical Chalice","text":"Alchemical Chalice"},{"type":"Captured Soul of Mephod, the Earth Scorcher","text":"Captured Soul of Mephod, the Earth Scorcher"},{"type":"Captured Soul of Thraxia","text":"Captured Soul of Thraxia"},{"type":"Captured Soul of Glace","text":"Captured Soul of Glace"},{"type":"Captured Soul of Champion of the Hollows","text":"Captured Soul of Champion of the Hollows"},{"type":"Captured Soul of Stalker of the Endless Dunes","text":"Captured Soul of Stalker of the Endless Dunes"},{"type":"Captured Soul of Shock and Horror","text":"Captured Soul of Shock and Horror"},{"type":"Cloth Belt Piece","text":"Cloth Belt Piece"},{"type":"Callous Mask Piece","text":"Callous Mask Piece"},{"type":"Blunt Arrow Quiver Piece","text":"Blunt Arrow Quiver Piece"},{"type":"Archon Kite Shield Piece","text":"Archon Kite Shield Piece"},{"type":"Imperial Staff Piece","text":"Imperial Staff Piece"},{"type":"Legion Sword Piece","text":"Legion Sword Piece"}]},{"label":"Flasks","entries":[{"name":"Atziri's Promise","type":"Amethyst Flask","text":"Atziri's Promise Amethyst Flask","flags":{"unique":true}},{"name":"Blood of the Karui","type":"Sanctified Life Flask","text":"Blood of the Karui Sanctified Life Flask","flags":{"unique":true}},{"name":"Bottled Faith","type":"Sulphur Flask","text":"Bottled Faith Sulphur Flask","flags":{"unique":true}},{"name":"Cinderswallow Urn","type":"Silver Flask","text":"Cinderswallow Urn Silver Flask","flags":{"unique":true}},{"name":"Coralito's Signature","type":"Diamond Flask","text":"Coralito's Signature Diamond Flask","flags":{"unique":true}},{"name":"Coruscating Elixir","type":"Ruby Flask","text":"Coruscating Elixir Ruby Flask","flags":{"unique":true}},{"name":"Divination Distillate","type":"Large Hybrid Flask","text":"Divination Distillate Large Hybrid Flask","flags":{"unique":true}},{"name":"Doedre's Elixir","type":"Greater Mana Flask","text":"Doedre's Elixir Greater Mana Flask","flags":{"unique":true}},{"name":"Dying Sun","type":"Ruby Flask","text":"Dying Sun Ruby Flask","flags":{"unique":true}},{"name":"Forbidden Taste","type":"Quartz Flask","text":"Forbidden Taste Quartz Flask","flags":{"unique":true}},{"name":"Kiara's Determination","type":"Silver Flask","text":"Kiara's Determination Silver Flask","flags":{"unique":true}},{"name":"Lavianga's Spirit","type":"Sanctified Mana Flask","text":"Lavianga's Spirit Sanctified Mana Flask","flags":{"unique":true}},{"name":"Lion's Roar","type":"Granite Flask","text":"Lion's Roar Granite Flask","flags":{"unique":true}},{"name":"Rotgut","type":"Quicksilver Flask","text":"Rotgut Quicksilver Flask","flags":{"unique":true}},{"name":"Rumi's Concoction","type":"Granite Flask","text":"Rumi's Concoction Granite Flask","flags":{"unique":true}},{"name":"Sin's Rebirth","type":"Stibnite Flask","text":"Sin's Rebirth Stibnite Flask","flags":{"unique":true}},{"name":"Soul Catcher","type":"Quartz Flask","text":"Soul Catcher Quartz Flask","flags":{"unique":true}},{"name":"Soul Ripper","type":"Quartz Flask","text":"Soul Ripper Quartz Flask","flags":{"unique":true}},{"name":"Taste of Hate","type":"Sapphire Flask","text":"Taste of Hate Sapphire Flask","flags":{"unique":true}},{"name":"The Overflowing Chalice","type":"Sulphur Flask","text":"The Overflowing Chalice Sulphur Flask","flags":{"unique":true}},{"name":"The Sorrow of the Divine","type":"Sulphur Flask","text":"The Sorrow of the Divine Sulphur Flask","flags":{"unique":true}},{"name":"The Wise Oak","type":"Bismuth Flask","text":"The Wise Oak Bismuth Flask","flags":{"unique":true}},{"name":"The Writhing Jar","type":"Hallowed Hybrid Flask","text":"The Writhing Jar Hallowed Hybrid Flask","flags":{"unique":true}},{"name":"Vessel of Vinktar","type":"Topaz Flask","text":"Vessel of Vinktar Topaz Flask","flags":{"unique":true}},{"name":"Witchfire Brew","type":"Stibnite Flask","text":"Witchfire Brew Stibnite Flask","flags":{"unique":true}},{"name":"Zerphi's Last Breath","type":"Grand Mana Flask","text":"Zerphi's Last Breath Grand Mana Flask","flags":{"unique":true}},{"type":"Small Hybrid Flask","text":"Small Hybrid Flask"},{"type":"Medium Hybrid Flask","text":"Medium Hybrid Flask"},{"type":"Large Hybrid Flask","text":"Large Hybrid Flask"},{"type":"Colossal Hybrid Flask","text":"Colossal Hybrid Flask"},{"type":"Sacred Hybrid Flask","text":"Sacred Hybrid Flask"},{"type":"Hallowed Hybrid Flask","text":"Hallowed Hybrid Flask"},{"type":"Small Life Flask","text":"Small Life Flask"},{"type":"Sanctified Life Flask","text":"Sanctified Life Flask"},{"type":"Divine Life Flask","text":"Divine Life Flask"},{"type":"Eternal Life Flask","text":"Eternal Life Flask"},{"type":"Medium Life Flask","text":"Medium Life Flask"},{"type":"Large Life Flask","text":"Large Life Flask"},{"type":"Greater Life Flask","text":"Greater Life Flask"},{"type":"Grand Life Flask","text":"Grand Life Flask"},{"type":"Giant Life Flask","text":"Giant Life Flask"},{"type":"Colossal Life Flask","text":"Colossal Life Flask"},{"type":"Sacred Life Flask","text":"Sacred Life Flask"},{"type":"Hallowed Life Flask","text":"Hallowed Life Flask"},{"type":"Small Mana Flask","text":"Small Mana Flask"},{"type":"Sanctified Mana Flask","text":"Sanctified Mana Flask"},{"type":"Divine Mana Flask","text":"Divine Mana Flask"},{"type":"Eternal Mana Flask","text":"Eternal Mana Flask"},{"type":"Medium Mana Flask","text":"Medium Mana Flask"},{"type":"Large Mana Flask","text":"Large Mana Flask"},{"type":"Greater Mana Flask","text":"Greater Mana Flask"},{"type":"Grand Mana Flask","text":"Grand Mana Flask"},{"type":"Giant Mana Flask","text":"Giant Mana Flask"},{"type":"Colossal Mana Flask","text":"Colossal Mana Flask"},{"type":"Sacred Mana Flask","text":"Sacred Mana Flask"},{"type":"Hallowed Mana Flask","text":"Hallowed Mana Flask"},{"type":"Diamond Flask","text":"Diamond Flask"},{"type":"Basalt Flask","text":"Basalt Flask"},{"type":"Aquamarine Flask","text":"Aquamarine Flask"},{"type":"Stibnite Flask","text":"Stibnite Flask"},{"type":"Sulphur Flask","text":"Sulphur Flask"},{"type":"Silver Flask","text":"Silver Flask"},{"type":"Bismuth Flask","text":"Bismuth Flask"},{"type":"Ruby Flask","text":"Ruby Flask"},{"type":"Sapphire Flask","text":"Sapphire Flask"},{"type":"Topaz Flask","text":"Topaz Flask"},{"type":"Granite Flask","text":"Granite Flask"},{"type":"Quicksilver Flask","text":"Quicksilver Flask"},{"type":"Amethyst Flask","text":"Amethyst Flask"},{"type":"Quartz Flask","text":"Quartz Flask"},{"type":"Jade Flask","text":"Jade Flask"}]},{"label":"Gems","entries":[{"type":"Infernal Cry","text":"Infernal Cry"},{"type":"Ancestral Cry","text":"Ancestral Cry"},{"type":"Ancestral Warchief","text":"Ancestral Warchief"},{"type":"Anger","text":"Anger"},{"type":"Animate Guardian","text":"Animate Guardian"},{"type":"Animate Weapon","text":"Animate Weapon"},{"type":"Arc","text":"Arc"},{"type":"Arcane Cloak","text":"Arcane Cloak"},{"type":"Arcanist Brand","text":"Arcanist Brand"},{"type":"Arctic Armour","text":"Arctic Armour"},{"type":"Creeping Frost","text":"Creeping Frost"},{"type":"Armageddon Brand","text":"Armageddon Brand"},{"type":"Artillery Ballista","text":"Artillery Ballista"},{"type":"Ball Lightning","text":"Ball Lightning"},{"type":"Barrage","text":"Barrage"},{"type":"Bear Trap","text":"Bear Trap"},{"type":"Berserk","text":"Berserk"},{"type":"Blade Blast","text":"Blade Blast"},{"type":"Bladefall","text":"Bladefall"},{"type":"Bladestorm","text":"Bladestorm"},{"type":"Blade Vortex","text":"Blade Vortex"},{"type":"Blast Rain","text":"Blast Rain"},{"type":"Blazing Salvo","text":"Blazing Salvo"},{"type":"Blight","text":"Blight"},{"type":"Blink Arrow","text":"Blink Arrow"},{"type":"Blood and Sand","text":"Blood and Sand"},{"type":"Blood Rage","text":"Blood Rage"},{"type":"Unearth","text":"Unearth"},{"type":"Bone Offering","text":"Bone Offering"},{"type":"Burning Arrow","text":"Burning Arrow"},{"type":"Chain Hook","text":"Chain Hook"},{"type":"Blade Flurry","text":"Blade Flurry"},{"type":"Charged Dash","text":"Charged Dash"},{"type":"Clarity","text":"Clarity"},{"type":"Cleave","text":"Cleave"},{"type":"Cobra Lash","text":"Cobra Lash"},{"type":"Purity of Ice","text":"Purity of Ice"},{"type":"Cold Snap","text":"Cold Snap"},{"type":"Conductivity","text":"Conductivity"},{"type":"Consecrated Path","text":"Consecrated Path"},{"type":"Contagion","text":"Contagion"},{"type":"Conversion Trap","text":"Conversion Trap"},{"type":"Convocation","text":"Convocation"},{"type":"Cremation","text":"Cremation"},{"type":"Bodyswap","text":"Bodyswap"},{"type":"Crackling Lance","text":"Crackling Lance"},{"type":"Assassin's Mark","text":"Assassin's Mark"},{"type":"Cyclone","text":"Cyclone"},{"type":"Malevolence","text":"Malevolence"},{"type":"Dark Pact","text":"Dark Pact"},{"type":"Bane","text":"Bane"},{"type":"Dash","text":"Dash"},{"type":"Decoy Totem","text":"Decoy Totem"},{"type":"Desecrate","text":"Desecrate"},{"type":"Determination","text":"Determination"},{"type":"Detonate Dead","text":"Detonate Dead"},{"type":"Detonate Mines","text":"Detonate Mines"},{"type":"Devouring Totem","text":"Devouring Totem"},{"type":"Discharge","text":"Discharge"},{"type":"Discipline","text":"Discipline"},{"type":"Divine Ire","text":"Divine Ire"},{"type":"Dominating Blow","text":"Dominating Blow"},{"type":"Double Strike","text":"Double Strike"},{"type":"Dread Banner","text":"Dread Banner"},{"type":"Dual Strike","text":"Dual Strike"},{"type":"Earthquake","text":"Earthquake"},{"type":"Earthshatter","text":"Earthshatter"},{"type":"Elemental Hit","text":"Elemental Hit"},{"type":"Elemental Weakness","text":"Elemental Weakness"},{"type":"Enduring Cry","text":"Enduring Cry"},{"type":"Enfeeble","text":"Enfeeble"},{"type":"Ensnaring Arrow","text":"Ensnaring Arrow"},{"type":"Essence Drain","text":"Essence Drain"},{"type":"Ethereal Knives","text":"Ethereal Knives"},{"type":"Explosive Arrow","text":"Explosive Arrow"},{"type":"Fireball","text":"Fireball"},{"type":"Scorching Ray","text":"Scorching Ray"},{"type":"Pyroclast Mine","text":"Pyroclast Mine"},{"type":"Purity of Fire","text":"Purity of Fire"},{"type":"Firestorm","text":"Firestorm"},{"type":"Fire Trap","text":"Fire Trap"},{"type":"Flameblast","text":"Flameblast"},{"type":"Flame Dash","text":"Flame Dash"},{"type":"Flamethrower Trap","text":"Flamethrower Trap"},{"type":"Holy Flame Totem","text":"Holy Flame Totem"},{"type":"Flame Wall","text":"Flame Wall"},{"type":"Flame Surge","text":"Flame Surge"},{"type":"Flammability","text":"Flammability"},{"type":"Flesh and Stone","text":"Flesh and Stone"},{"type":"Flesh Offering","text":"Flesh Offering"},{"type":"Flicker Strike","text":"Flicker Strike"},{"type":"Icicle Mine","text":"Icicle Mine"},{"type":"Freezing Pulse","text":"Freezing Pulse"},{"type":"Frenzy","text":"Frenzy"},{"type":"Frostbite","text":"Frostbite"},{"type":"Frost Blades","text":"Frost Blades"},{"type":"Frostblink","text":"Frostblink"},{"type":"Frostbolt","text":"Frostbolt"},{"type":"Vortex","text":"Vortex"},{"type":"Frost Bomb","text":"Frost Bomb"},{"type":"Frost Shield","text":"Frost Shield"},{"type":"Frost Wall","text":"Frost Wall"},{"type":"General's Cry","text":"General's Cry"},{"type":"Glacial Cascade","text":"Glacial Cascade"},{"type":"Glacial Hammer","text":"Glacial Hammer"},{"type":"Grace","text":"Grace"},{"type":"Ground Slam","text":"Ground Slam"},{"type":"Haste","text":"Haste"},{"type":"Hatred","text":"Hatred"},{"type":"Heavy Strike","text":"Heavy Strike"},{"type":"Herald of Agony","text":"Herald of Agony"},{"type":"Herald of Ash","text":"Herald of Ash"},{"type":"Herald of Ice","text":"Herald of Ice"},{"type":"Herald of Purity","text":"Herald of Purity"},{"type":"Herald of Thunder","text":"Herald of Thunder"},{"type":"Hexblast","text":"Hexblast"},{"type":"Ice Crash","text":"Ice Crash"},{"type":"Ice Nova","text":"Ice Nova"},{"type":"Ice Shot","text":"Ice Shot"},{"type":"Siphoning Trap","text":"Siphoning Trap"},{"type":"Ice Spear","text":"Ice Spear"},{"type":"Ice Trap","text":"Ice Trap"},{"type":"Immortal Call","text":"Immortal Call"},{"type":"Incinerate","text":"Incinerate"},{"type":"Infernal Blow","text":"Infernal Blow"},{"type":"Intimidating Cry","text":"Intimidating Cry"},{"type":"Kinetic Blast","text":"Kinetic Blast"},{"type":"Kinetic Bolt","text":"Kinetic Bolt"},{"type":"Lacerate","text":"Lacerate"},{"type":"Lancing Steel","text":"Lancing Steel"},{"type":"Leap Slam","text":"Leap Slam"},{"type":"Lightning Arrow","text":"Lightning Arrow"},{"type":"Purity of Lightning","text":"Purity of Lightning"},{"type":"Lightning Strike","text":"Lightning Strike"},{"type":"Lightning Tendrils","text":"Lightning Tendrils"},{"type":"Lightning Spire Trap","text":"Lightning Spire Trap"},{"type":"Lightning Trap","text":"Lightning Trap"},{"type":"Lightning Warp","text":"Lightning Warp"},{"type":"Magma Orb","text":"Magma Orb"},{"type":"Ancestral Protector","text":"Ancestral Protector"},{"type":"Mirror Arrow","text":"Mirror Arrow"},{"type":"Molten Shell","text":"Molten Shell"},{"type":"Molten Strike","text":"Molten Strike"},{"type":"Vulnerability","text":"Vulnerability"},{"type":"Orb of Storms","text":"Orb of Storms"},{"type":"Penance Brand","text":"Penance Brand"},{"type":"Perforate","text":"Perforate"},{"type":"Pestilent Strike","text":"Pestilent Strike"},{"type":"Phase Run","text":"Phase Run"},{"type":"Seismic Trap","text":"Seismic Trap"},{"type":"Plague Bearer","text":"Plague Bearer"},{"type":"Poacher's Mark","text":"Poacher's Mark"},{"type":"Caustic Arrow","text":"Caustic Arrow"},{"type":"Portal","text":"Portal"},{"type":"Power Siphon","text":"Power Siphon"},{"type":"Precision","text":"Precision"},{"type":"Pride","text":"Pride"},{"type":"Sniper's Mark","text":"Sniper's Mark"},{"type":"Puncture","text":"Puncture"},{"type":"Punishment","text":"Punishment"},{"type":"Wave of Conviction","text":"Wave of Conviction"},{"type":"Purity of Elements","text":"Purity of Elements"},{"type":"Rain of Arrows","text":"Rain of Arrows"},{"type":"Raise Spectre","text":"Raise Spectre"},{"type":"Raise Zombie","text":"Raise Zombie"},{"type":"Rallying Cry","text":"Rallying Cry"},{"type":"Reave","text":"Reave"},{"type":"Brand Recall","text":"Brand Recall"},{"type":"Reckoning","text":"Reckoning"},{"type":"Rejuvenation Totem","text":"Rejuvenation Totem"},{"type":"Righteous Fire","text":"Righteous Fire"},{"type":"Riposte","text":"Riposte"},{"type":"Purifying Flame","text":"Purifying Flame"},{"type":"Scourge Arrow","text":"Scourge Arrow"},{"type":"Searing Bond","text":"Searing Bond"},{"type":"Seismic Cry","text":"Seismic Cry"},{"type":"Shattering Steel","text":"Shattering Steel"},{"type":"Shield Charge","text":"Shield Charge"},{"type":"Shock Nova","text":"Shock Nova"},{"type":"Shockwave Totem","text":"Shockwave Totem"},{"type":"Shrapnel Ballista","text":"Shrapnel Ballista"},{"type":"Galvanic Arrow","text":"Galvanic Arrow"},{"type":"Explosive Trap","text":"Explosive Trap"},{"type":"Siege Ballista","text":"Siege Ballista"},{"type":"Sigil of Power","text":"Sigil of Power"},{"type":"Smite","text":"Smite"},{"type":"Smoke Mine","text":"Smoke Mine"},{"type":"Soulrend","text":"Soulrend"},{"type":"Spark","text":"Spark"},{"type":"Zealotry","text":"Zealotry"},{"type":"Spellslinger","text":"Spellslinger"},{"type":"Spirit Offering","text":"Spirit Offering"},{"type":"Split Arrow","text":"Split Arrow"},{"type":"Splitting Steel","text":"Splitting Steel"},{"type":"Static Strike","text":"Static Strike"},{"type":"Steelskin","text":"Steelskin"},{"type":"Stormbind","text":"Stormbind"},{"type":"Stormblast Mine","text":"Stormblast Mine"},{"type":"Storm Brand","text":"Storm Brand"},{"type":"Storm Burst","text":"Storm Burst"},{"type":"Storm Call","text":"Storm Call"},{"type":"Summon Carrion Golem","text":"Summon Carrion Golem"},{"type":"Summon Chaos Golem","text":"Summon Chaos Golem"},{"type":"Summon Flame Golem","text":"Summon Flame Golem"},{"type":"Summon Ice Golem","text":"Summon Ice Golem"},{"type":"Summon Lightning Golem","text":"Summon Lightning Golem"},{"type":"Summon Raging Spirit","text":"Summon Raging Spirit"},{"type":"Summon Holy Relic","text":"Summon Holy Relic"},{"type":"Summon Stone Golem","text":"Summon Stone Golem"},{"type":"Summon Skeletons","text":"Summon Skeletons"},{"type":"Summon Skitterbots","text":"Summon Skitterbots"},{"type":"Sunder","text":"Sunder"},{"type":"Sweep","text":"Sweep"},{"type":"Tectonic Slam","text":"Tectonic Slam"},{"type":"Tempest Shield","text":"Tempest Shield"},{"type":"Temporal Chains","text":"Temporal Chains"},{"type":"Spectral Shield Throw","text":"Spectral Shield Throw"},{"type":"Spectral Throw","text":"Spectral Throw"},{"type":"Tornado Shot","text":"Tornado Shot"},{"type":"Toxic Rain","text":"Toxic Rain"},{"type":"Vaal Ancestral Warchief","text":"Vaal Ancestral Warchief"},{"type":"Vaal Arc","text":"Vaal Arc"},{"type":"Vaal Blade Vortex","text":"Vaal Blade Vortex"},{"type":"Vaal Blight","text":"Vaal Blight"},{"type":"Vaal Burning Arrow","text":"Vaal Burning Arrow"},{"type":"Vaal Clarity","text":"Vaal Clarity"},{"type":"Vaal Impurity of Ice","text":"Vaal Impurity of Ice"},{"type":"Vaal Cold Snap","text":"Vaal Cold Snap"},{"type":"Vaal Cyclone","text":"Vaal Cyclone"},{"type":"Vaal Detonate Dead","text":"Vaal Detonate Dead"},{"type":"Vaal Discipline","text":"Vaal Discipline"},{"type":"Vaal Double Strike","text":"Vaal Double Strike"},{"type":"Vaal Earthquake","text":"Vaal Earthquake"},{"type":"Vaal Fireball","text":"Vaal Fireball"},{"type":"Vaal Impurity of Fire","text":"Vaal Impurity of Fire"},{"type":"Vaal Flameblast","text":"Vaal Flameblast"},{"type":"Vaal Glacial Hammer","text":"Vaal Glacial Hammer"},{"type":"Vaal Grace","text":"Vaal Grace"},{"type":"Vaal Ground Slam","text":"Vaal Ground Slam"},{"type":"Vaal Haste","text":"Vaal Haste"},{"type":"Vaal Ice Nova","text":"Vaal Ice Nova"},{"type":"Vaal Immortal Call","text":"Vaal Immortal Call"},{"type":"Vaal Impurity of Lightning","text":"Vaal Impurity of Lightning"},{"type":"Vaal Lightning Strike","text":"Vaal Lightning Strike"},{"type":"Vaal Lightning Trap","text":"Vaal Lightning Trap"},{"type":"Vaal Lightning Warp","text":"Vaal Lightning Warp"},{"type":"Vaal Molten Shell","text":"Vaal Molten Shell"},{"type":"Vaal Breach","text":"Vaal Breach"},{"type":"Vaal Power Siphon","text":"Vaal Power Siphon"},{"type":"Vaal Rain of Arrows","text":"Vaal Rain of Arrows"},{"type":"Vaal Reave","text":"Vaal Reave"},{"type":"Vaal Righteous Fire","text":"Vaal Righteous Fire"},{"type":"Vaal Spark","text":"Vaal Spark"},{"type":"Vaal Storm Call","text":"Vaal Storm Call"},{"type":"Vaal Summon Skeletons","text":"Vaal Summon Skeletons"},{"type":"Vaal Spectral Throw","text":"Vaal Spectral Throw"},{"type":"Vengeance","text":"Vengeance"},{"type":"Venom Gyre","text":"Venom Gyre"},{"type":"Vigilant Strike","text":"Vigilant Strike"},{"type":"Viper Strike","text":"Viper Strike"},{"type":"Vitality","text":"Vitality"},{"type":"Void Sphere","text":"Void Sphere"},{"type":"Volatile Dead","text":"Volatile Dead"},{"type":"Despair","text":"Despair"},{"type":"War Banner","text":"War Banner"},{"type":"Warlord's Mark","text":"Warlord's Mark"},{"type":"Whirling Blades","text":"Whirling Blades"},{"type":"Wild Strike","text":"Wild Strike"},{"type":"Winter Orb","text":"Winter Orb"},{"type":"Wintertide Brand","text":"Wintertide Brand"},{"type":"Wither","text":"Wither"},{"type":"Withering Step","text":"Withering Step"},{"type":"Wrath","text":"Wrath"},{"type":"Added Chaos Damage Support","text":"Added Chaos Damage Support"},{"type":"Awakened Added Chaos Damage Support","text":"Awakened Added Chaos Damage Support"},{"type":"Added Cold Damage Support","text":"Added Cold Damage Support"},{"type":"Awakened Added Cold Damage Support","text":"Awakened Added Cold Damage Support"},{"type":"Added Fire Damage Support","text":"Added Fire Damage Support"},{"type":"Awakened Added Fire Damage Support","text":"Awakened Added Fire Damage Support"},{"type":"Added Lightning Damage Support","text":"Added Lightning Damage Support"},{"type":"Awakened Added Lightning Damage Support","text":"Awakened Added Lightning Damage Support"},{"type":"Additional Accuracy Support","text":"Additional Accuracy Support"},{"type":"Empower Support","text":"Empower Support"},{"type":"Enhance Support","text":"Enhance Support"},{"type":"Enlighten Support","text":"Enlighten Support"},{"type":"Awakened Ancestral Call Support","text":"Awakened Ancestral Call Support"},{"type":"Arcane Surge Support","text":"Arcane Surge Support"},{"type":"Archmage Support","text":"Archmage Support"},{"type":"Arrow Nova Support","text":"Arrow Nova Support"},{"type":"Awakened Arrow Nova Support","text":"Awakened Arrow Nova Support"},{"type":"Barrage Support","text":"Barrage Support"},{"type":"Blasphemy Support","text":"Blasphemy Support"},{"type":"Awakened Blasphemy Support","text":"Awakened Blasphemy Support"},{"type":"Blind Support","text":"Blind Support"},{"type":"Block Chance Reduction Support","text":"Block Chance Reduction Support"},{"type":"Bloodlust Support","text":"Bloodlust Support"},{"type":"Blood Magic Support","text":"Blood Magic Support"},{"type":"Bonechill Support","text":"Bonechill Support"},{"type":"Brutality Support","text":"Brutality Support"},{"type":"Awakened Brutality Support","text":"Awakened Brutality Support"},{"type":"Awakened Burning Damage Support","text":"Awakened Burning Damage Support"},{"type":"Cast On Critical Strike Support","text":"Cast On Critical Strike Support"},{"type":"Awakened Cast On Critical Strike Support","text":"Awakened Cast On Critical Strike Support"},{"type":"Cast when Damage Taken Support","text":"Cast when Damage Taken Support"},{"type":"Cast on Death Support","text":"Cast on Death Support"},{"type":"Cast on Melee Kill Support","text":"Cast on Melee Kill Support"},{"type":"Cast when Stunned Support","text":"Cast when Stunned Support"},{"type":"Cast while Channelling Support","text":"Cast while Channelling Support"},{"type":"Awakened Cast While Channelling Support","text":"Awakened Cast While Channelling Support"},{"type":"Chain Support","text":"Chain Support"},{"type":"Awakened Chain Support","text":"Awakened Chain Support"},{"type":"Chance to Bleed Support","text":"Chance to Bleed Support"},{"type":"Chance to Flee Support","text":"Chance to Flee Support"},{"type":"Combustion Support","text":"Combustion Support"},{"type":"Withering Touch Support","text":"Withering Touch Support"},{"type":"Charged Mines Support","text":"Charged Mines Support"},{"type":"Close Combat Support","text":"Close Combat Support"},{"type":"Cluster Traps Support","text":"Cluster Traps Support"},{"type":"Cold Penetration Support","text":"Cold Penetration Support"},{"type":"Awakened Cold Penetration Support","text":"Awakened Cold Penetration Support"},{"type":"Cold to Fire Support","text":"Cold to Fire Support"},{"type":"Concentrated Effect Support","text":"Concentrated Effect Support"},{"type":"Controlled Destruction Support","text":"Controlled Destruction Support"},{"type":"Awakened Controlled Destruction Support","text":"Awakened Controlled Destruction Support"},{"type":"Culling Strike Support","text":"Culling Strike Support"},{"type":"Hextouch Support","text":"Hextouch Support"},{"type":"Awakened Hextouch Support","text":"Awakened Hextouch Support"},{"type":"Hypothermia Support","text":"Hypothermia Support"},{"type":"Deadly Ailments Support","text":"Deadly Ailments Support"},{"type":"Awakened Deadly Ailments Support","text":"Awakened Deadly Ailments Support"},{"type":"Predator Support","text":"Predator Support"},{"type":"Decay Support","text":"Decay Support"},{"type":"Efficacy Support","text":"Efficacy Support"},{"type":"Elemental Focus Support","text":"Elemental Focus Support"},{"type":"Awakened Elemental Focus Support","text":"Awakened Elemental Focus Support"},{"type":"Elemental Proliferation Support","text":"Elemental Proliferation Support"},{"type":"Endurance Charge on Melee Stun Support","text":"Endurance Charge on Melee Stun Support"},{"type":"Energy Leech Support","text":"Energy Leech Support"},{"type":"Faster Attacks Support","text":"Faster Attacks Support"},{"type":"Faster Casting Support","text":"Faster Casting Support"},{"type":"Faster Projectiles Support","text":"Faster Projectiles Support"},{"type":"Feeding Frenzy Support","text":"Feeding Frenzy Support"},{"type":"Fire Penetration Support","text":"Fire Penetration Support"},{"type":"Awakened Fire Penetration Support","text":"Awakened Fire Penetration Support"},{"type":"Fist of War Support","text":"Fist of War Support"},{"type":"Fork Support","text":"Fork Support"},{"type":"Awakened Fork Support","text":"Awakened Fork Support"},{"type":"Fortify Support","text":"Fortify Support"},{"type":"Ice Bite Support","text":"Ice Bite Support"},{"type":"Charged Traps Support","text":"Charged Traps Support"},{"type":"Generosity Support","text":"Generosity Support"},{"type":"Awakened Generosity Support","text":"Awakened Generosity Support"},{"type":"Greater Multiple Projectiles Support","text":"Greater Multiple Projectiles Support"},{"type":"Awakened Greater Multiple Projectiles Support","text":"Awakened Greater Multiple Projectiles Support"},{"type":"Greater Volley Support","text":"Greater Volley Support"},{"type":"Unleash Support","text":"Unleash Support"},{"type":"Intensify Support","text":"Intensify Support"},{"type":"High-Impact Mine Support","text":"High-Impact Mine Support"},{"type":"Ignite Proliferation Support","text":"Ignite Proliferation Support"},{"type":"Immolate Support","text":"Immolate Support"},{"type":"Impale Support","text":"Impale Support"},{"type":"Impending Doom Support","text":"Impending Doom Support"},{"type":"Increased Area of Effect Support","text":"Increased Area of Effect Support"},{"type":"Awakened Increased Area of Effect Support","text":"Awakened Increased Area of Effect Support"},{"type":"Burning Damage Support","text":"Burning Damage Support"},{"type":"Increased Critical Damage Support","text":"Increased Critical Damage Support"},{"type":"Increased Critical Strikes Support","text":"Increased Critical Strikes Support"},{"type":"Increased Duration Support","text":"Increased Duration Support"},{"type":"Infernal Legion Support","text":"Infernal Legion Support"},{"type":"Iron Grip Support","text":"Iron Grip Support"},{"type":"Iron Will Support","text":"Iron Will Support"},{"type":"Item Quantity Support","text":"Item Quantity Support"},{"type":"Item Rarity Support","text":"Item Rarity Support"},{"type":"Knockback Support","text":"Knockback Support"},{"type":"Lesser Multiple Projectiles Support","text":"Lesser Multiple Projectiles Support"},{"type":"Lesser Poison Support","text":"Lesser Poison Support"},{"type":"Life Gain on Hit Support","text":"Life Gain on Hit Support"},{"type":"Life Leech Support","text":"Life Leech Support"},{"type":"Lightning Penetration Support","text":"Lightning Penetration Support"},{"type":"Awakened Lightning Penetration Support","text":"Awakened Lightning Penetration Support"},{"type":"Maim Support","text":"Maim Support"},{"type":"Mana Leech Support","text":"Mana Leech Support"},{"type":"Meat Shield Support","text":"Meat Shield Support"},{"type":"Damage on Full Life Support","text":"Damage on Full Life Support"},{"type":"Melee Physical Damage Support","text":"Melee Physical Damage Support"},{"type":"Awakened Melee Physical Damage Support","text":"Awakened Melee Physical Damage Support"},{"type":"Melee Splash Support","text":"Melee Splash Support"},{"type":"Awakened Melee Splash Support","text":"Awakened Melee Splash Support"},{"type":"Minefield Support","text":"Minefield Support"},{"type":"Minion Damage Support","text":"Minion Damage Support"},{"type":"Awakened Minion Damage Support","text":"Awakened Minion Damage Support"},{"type":"Minion Life Support","text":"Minion Life Support"},{"type":"Minion Speed Support","text":"Minion Speed Support"},{"type":"Mirage Archer Support","text":"Mirage Archer Support"},{"type":"Spell Echo Support","text":"Spell Echo Support"},{"type":"Multistrike Support","text":"Multistrike Support"},{"type":"Awakened Multistrike Support","text":"Awakened Multistrike Support"},{"type":"Multiple Totems Support","text":"Multiple Totems Support"},{"type":"Multiple Traps Support","text":"Multiple Traps Support"},{"type":"Nightblade Support","text":"Nightblade Support"},{"type":"Onslaught Support","text":"Onslaught Support"},{"type":"Innervate Support","text":"Innervate Support"},{"type":"Volley Support","text":"Volley Support"},{"type":"Vicious Projectiles Support","text":"Vicious Projectiles Support"},{"type":"Physical to Lightning Support","text":"Physical to Lightning Support"},{"type":"Pierce Support","text":"Pierce Support"},{"type":"Pinpoint Support","text":"Pinpoint Support"},{"type":"Point Blank Support","text":"Point Blank Support"},{"type":"Poison Support","text":"Poison Support"},{"type":"Power Charge On Critical Support","text":"Power Charge On Critical Support"},{"type":"Pulverise Support","text":"Pulverise Support"},{"type":"Rage Support","text":"Rage Support"},{"type":"Ballista Totem Support","text":"Ballista Totem Support"},{"type":"Swift Affliction Support","text":"Swift Affliction Support"},{"type":"Less Duration Support","text":"Less Duration Support"},{"type":"Inspiration Support","text":"Inspiration Support"},{"type":"Blastchain Mine Support","text":"Blastchain Mine Support"},{"type":"Ruthless Support","text":"Ruthless Support"},{"type":"Second Wind Support","text":"Second Wind Support"},{"type":"Shockwave Support","text":"Shockwave Support"},{"type":"Slower Projectiles Support","text":"Slower Projectiles Support"},{"type":"Spell Cascade Support","text":"Spell Cascade Support"},{"type":"Awakened Spell Cascade Support","text":"Awakened Spell Cascade Support"},{"type":"Awakened Spell Echo Support","text":"Awakened Spell Echo Support"},{"type":"Spell Totem Support","text":"Spell Totem Support"},{"type":"Ancestral Call Support","text":"Ancestral Call Support"},{"type":"Infused Channelling Support","text":"Infused Channelling Support"},{"type":"Stun Support","text":"Stun Support"},{"type":"Elemental Army Support","text":"Elemental Army Support"},{"type":"Summon Phantasm Support","text":"Summon Phantasm Support"},{"type":"Awakened Swift Affliction Support","text":"Awakened Swift Affliction Support"},{"type":"Swift Assembly Support","text":"Swift Assembly Support"},{"type":"Swiftbrand Support","text":"Swiftbrand Support"},{"type":"Trap Support","text":"Trap Support"},{"type":"Trap and Mine Damage Support","text":"Trap and Mine Damage Support"},{"type":"Advanced Traps Support","text":"Advanced Traps Support"},{"type":"Unbound Ailments Support","text":"Unbound Ailments Support"},{"type":"Awakened Unbound Ailments Support","text":"Awakened Unbound Ailments Support"},{"type":"Awakened Unleash Support","text":"Awakened Unleash Support"},{"type":"Urgent Orders Support","text":"Urgent Orders Support"},{"type":"Awakened Vicious Projectiles Support","text":"Awakened Vicious Projectiles Support"},{"type":"Vile Toxins Support","text":"Vile Toxins Support"},{"type":"Void Manipulation Support","text":"Void Manipulation Support"},{"type":"Awakened Void Manipulation Support","text":"Awakened Void Manipulation Support"},{"type":"Elemental Damage with Attacks Support","text":"Elemental Damage with Attacks Support"},{"type":"Awakened Elemental Damage with Attacks Support","text":"Awakened Elemental Damage with Attacks Support"}]},{"label":"Jewels","entries":[{"name":"Anatomical Knowledge","type":"Cobalt Jewel","text":"Anatomical Knowledge Cobalt Jewel","flags":{"unique":true}},{"name":"Ancient Waystones","type":"Crimson Jewel","text":"Ancient Waystones Crimson Jewel","flags":{"unique":true}},{"name":"Apparitions","type":"Viridian Jewel","text":"Apparitions Viridian Jewel","flags":{"unique":true}},{"name":"To Dust","type":"Cobalt Jewel","text":"To Dust Cobalt Jewel","flags":{"unique":true}},{"name":"Assassin's Haste","type":"Cobalt Jewel","text":"Assassin's Haste Cobalt Jewel","flags":{"unique":true}},{"name":"Atziri's Reign","type":"Crimson Jewel","text":"Atziri's Reign Crimson Jewel","flags":{"unique":true}},{"name":"Blood Sacrifice","type":"Crimson Jewel","text":"Blood Sacrifice Crimson Jewel","flags":{"unique":true}},{"name":"Brawn","type":"Crimson Jewel","text":"Brawn Crimson Jewel","flags":{"unique":true}},{"name":"Brittle Barrier","type":"Cobalt Jewel","text":"Brittle Barrier Cobalt Jewel","flags":{"unique":true}},{"name":"Brutal Restraint","type":"Timeless Jewel","text":"Brutal Restraint Timeless Jewel","flags":{"unique":true}},{"name":"Brute Force Solution","type":"Cobalt Jewel","text":"Brute Force Solution Cobalt Jewel","flags":{"unique":true}},{"name":"Fortified Legion","type":"Cobalt Jewel","text":"Fortified Legion Cobalt Jewel","flags":{"unique":true}},{"name":"Calamitous Visions","type":"Small Cluster Jewel","text":"Calamitous Visions Small Cluster Jewel","flags":{"unique":true}},{"name":"Careful Planning","type":"Viridian Jewel","text":"Careful Planning Viridian Jewel","flags":{"unique":true}},{"name":"Cheap Construction","type":"Viridian Jewel","text":"Cheap Construction Viridian Jewel","flags":{"unique":true}},{"name":"Chill of Corruption","type":"Viridian Jewel","text":"Chill of Corruption Viridian Jewel","flags":{"unique":true}},{"name":"Clear Mind","type":"Cobalt Jewel","text":"Clear Mind Cobalt Jewel","flags":{"unique":true}},{"name":"Coated Shrapnel","type":"Crimson Jewel","text":"Coated Shrapnel Crimson Jewel","flags":{"unique":true}},{"name":"Cold Steel","type":"Viridian Jewel","text":"Cold Steel Viridian Jewel","flags":{"unique":true}},{"name":"Collateral Damage","type":"Viridian Jewel","text":"Collateral Damage Viridian Jewel","flags":{"unique":true}},{"name":"Combat Focus","type":"Viridian Jewel","text":"Combat Focus Viridian Jewel","flags":{"unique":true}},{"name":"Combat Focus","type":"Cobalt Jewel","text":"Combat Focus Cobalt Jewel","flags":{"unique":true}},{"name":"Combat Focus","type":"Crimson Jewel","text":"Combat Focus Crimson Jewel","flags":{"unique":true}},{"name":"Combustibles","type":"Crimson Jewel","text":"Combustibles Crimson Jewel","flags":{"unique":true}},{"name":"Conqueror's Efficiency","type":"Crimson Jewel","text":"Conqueror's Efficiency Crimson Jewel","flags":{"unique":true}},{"name":"Conqueror's Longevity","type":"Viridian Jewel","text":"Conqueror's Longevity Viridian Jewel","flags":{"unique":true}},{"name":"Conqueror's Potency","type":"Cobalt Jewel","text":"Conqueror's Potency Cobalt Jewel","flags":{"unique":true}},{"name":"Corrupted Energy","type":"Cobalt Jewel","text":"Corrupted Energy Cobalt Jewel","flags":{"unique":true}},{"name":"Dead Reckoning","type":"Cobalt Jewel","text":"Dead Reckoning Cobalt Jewel","flags":{"unique":true}},{"name":"Divide and Conquer","type":"Viridian Jewel","text":"Divide and Conquer Viridian Jewel","flags":{"unique":true}},{"name":"Efficient Training","type":"Crimson Jewel","text":"Efficient Training Crimson Jewel","flags":{"unique":true}},{"name":"Eldritch Knowledge","type":"Cobalt Jewel","text":"Eldritch Knowledge Cobalt Jewel","flags":{"unique":true}},{"name":"Elegant Hubris","type":"Timeless Jewel","text":"Elegant Hubris Timeless Jewel","flags":{"unique":true}},{"name":"Emperor's Cunning","type":"Viridian Jewel","text":"Emperor's Cunning Viridian Jewel","flags":{"unique":true}},{"name":"Emperor's Mastery","type":"Prismatic Jewel","text":"Emperor's Mastery Prismatic Jewel","flags":{"unique":true}},{"name":"Emperor's Might","type":"Crimson Jewel","text":"Emperor's Might Crimson Jewel","flags":{"unique":true}},{"name":"Emperor's Wit","type":"Cobalt Jewel","text":"Emperor's Wit Cobalt Jewel","flags":{"unique":true}},{"name":"Endless Misery","type":"Cobalt Jewel","text":"Endless Misery Cobalt Jewel","flags":{"unique":true}},{"name":"Energised Armour","type":"Crimson Jewel","text":"Energised Armour Crimson Jewel","flags":{"unique":true}},{"name":"Energy From Within","type":"Cobalt Jewel","text":"Energy From Within Cobalt Jewel","flags":{"unique":true}},{"name":"Fertile Mind","type":"Cobalt Jewel","text":"Fertile Mind Cobalt Jewel","flags":{"unique":true}},{"name":"Fevered Mind","type":"Cobalt Jewel","text":"Fevered Mind Cobalt Jewel","flags":{"unique":true}},{"name":"Fight for Survival","type":"Viridian Jewel","text":"Fight for Survival Viridian Jewel","flags":{"unique":true}},{"name":"Fireborn","type":"Crimson Jewel","text":"Fireborn Crimson Jewel","flags":{"unique":true}},{"name":"First Snow","type":"Cobalt Jewel","text":"First Snow Cobalt Jewel","flags":{"unique":true}},{"name":"Fluid Motion","type":"Viridian Jewel","text":"Fluid Motion Viridian Jewel","flags":{"unique":true}},{"name":"Fortress Covenant","type":"Cobalt Jewel","text":"Fortress Covenant Cobalt Jewel","flags":{"unique":true}},{"name":"Fragile Bloom","type":"Crimson Jewel","text":"Fragile Bloom Crimson Jewel","flags":{"unique":true}},{"name":"Fragility","type":"Crimson Jewel","text":"Fragility Crimson Jewel","flags":{"unique":true}},{"name":"From Dust","type":"Cobalt Jewel","text":"From Dust Cobalt Jewel","flags":{"unique":true}},{"name":"Frozen Trail","type":"Cobalt Jewel","text":"Frozen Trail Cobalt Jewel","flags":{"unique":true}},{"name":"Glorious Vanity","type":"Timeless Jewel","text":"Glorious Vanity Timeless Jewel","flags":{"unique":true}},{"name":"Grand Spectrum","type":"Viridian Jewel","text":"Grand Spectrum Viridian Jewel","flags":{"unique":true}},{"name":"Grand Spectrum","type":"Cobalt Jewel","text":"Grand Spectrum Cobalt Jewel","flags":{"unique":true}},{"name":"Grand Spectrum","type":"Crimson Jewel","text":"Grand Spectrum Crimson Jewel","flags":{"unique":true}},{"name":"Growing Agony","type":"Viridian Jewel","text":"Growing Agony Viridian Jewel","flags":{"unique":true}},{"name":"Hair Trigger","type":"Viridian Jewel","text":"Hair Trigger Viridian Jewel","flags":{"unique":true}},{"name":"Hazardous Research","type":"Cobalt Jewel","text":"Hazardous Research Cobalt Jewel","flags":{"unique":true}},{"name":"Healthy Mind","type":"Cobalt Jewel","text":"Healthy Mind Cobalt Jewel","flags":{"unique":true}},{"name":"Hidden Potential","type":"Viridian Jewel","text":"Hidden Potential Viridian Jewel","flags":{"unique":true}},{"name":"Hotheaded","type":"Viridian Jewel","text":"Hotheaded Viridian Jewel","flags":{"unique":true}},{"name":"Hungry Abyss","type":"Viridian Jewel","text":"Hungry Abyss Viridian Jewel","flags":{"unique":true}},{"name":"Inertia","type":"Crimson Jewel","text":"Inertia Crimson Jewel","flags":{"unique":true}},{"name":"Inevitability","type":"Cobalt Jewel","text":"Inevitability Cobalt Jewel","flags":{"unique":true}},{"name":"Inspired Learning","type":"Crimson Jewel","text":"Inspired Learning Crimson Jewel","flags":{"unique":true}},{"name":"Intuitive Leap","type":"Viridian Jewel","text":"Intuitive Leap Viridian Jewel","flags":{"unique":true}},{"name":"Izaro's Turmoil","type":"Crimson Jewel","text":"Izaro's Turmoil Crimson Jewel","flags":{"unique":true}},{"name":"Kitava's Teachings","type":"Small Cluster Jewel","text":"Kitava's Teachings Small Cluster Jewel","flags":{"unique":true}},{"name":"Lethal Pride","type":"Timeless Jewel","text":"Lethal Pride Timeless Jewel","flags":{"unique":true}},{"name":"Lioneye's Fall","type":"Viridian Jewel","text":"Lioneye's Fall Viridian Jewel","flags":{"unique":true}},{"name":"Lord of Steel","type":"Viridian Jewel","text":"Lord of Steel Viridian Jewel","flags":{"unique":true}},{"name":"Malicious Intent","type":"Cobalt Jewel","text":"Malicious Intent Cobalt Jewel","flags":{"unique":true}},{"name":"Mantra of Flames","type":"Crimson Jewel","text":"Mantra of Flames Crimson Jewel","flags":{"unique":true}},{"name":"Martial Artistry","type":"Crimson Jewel","text":"Martial Artistry Crimson Jewel","flags":{"unique":true}},{"name":"Megalomaniac","type":"Medium Cluster Jewel","text":"Megalomaniac Medium Cluster Jewel","flags":{"unique":true}},{"name":"Might and Influence","type":"Viridian Jewel","text":"Might and Influence Viridian Jewel","flags":{"unique":true}},{"name":"Might in All Forms","type":"Crimson Jewel","text":"Might in All Forms Crimson Jewel","flags":{"unique":true}},{"name":"Might of the Meek","type":"Crimson Jewel","text":"Might of the Meek Crimson Jewel","flags":{"unique":true}},{"name":"Militant Faith","type":"Timeless Jewel","text":"Militant Faith Timeless Jewel","flags":{"unique":true}},{"name":"Mutated Growth","type":"Cobalt Jewel","text":"Mutated Growth Cobalt Jewel","flags":{"unique":true}},{"name":"Natural Affinity","type":"Small Cluster Jewel","text":"Natural Affinity Small Cluster Jewel","flags":{"unique":true}},{"name":"Omen on the Winds","type":"Viridian Jewel","text":"Omen on the Winds Viridian Jewel","flags":{"unique":true}},{"name":"One With Nothing","type":"Small Cluster Jewel","text":"One With Nothing Small Cluster Jewel","flags":{"unique":true}},{"name":"Overwhelming Odds","type":"Crimson Jewel","text":"Overwhelming Odds Crimson Jewel","flags":{"unique":true}},{"name":"Pacifism","type":"Viridian Jewel","text":"Pacifism Viridian Jewel","flags":{"unique":true}},{"name":"Pitch Darkness","type":"Viridian Jewel","text":"Pitch Darkness Viridian Jewel","flags":{"unique":true}},{"name":"Poacher's Aim","type":"Viridian Jewel","text":"Poacher's Aim Viridian Jewel","flags":{"unique":true}},{"name":"Powerlessness","type":"Cobalt Jewel","text":"Powerlessness Cobalt Jewel","flags":{"unique":true}},{"name":"Primordial Eminence","type":"Viridian Jewel","text":"Primordial Eminence Viridian Jewel","flags":{"unique":true}},{"name":"Primordial Harmony","type":"Cobalt Jewel","text":"Primordial Harmony Cobalt Jewel","flags":{"unique":true}},{"name":"Primordial Might","type":"Crimson Jewel","text":"Primordial Might Crimson Jewel","flags":{"unique":true}},{"name":"Pugilist","type":"Viridian Jewel","text":"Pugilist Viridian Jewel","flags":{"unique":true}},{"name":"Pure Talent","type":"Viridian Jewel","text":"Pure Talent Viridian Jewel","flags":{"unique":true}},{"name":"Quickening Covenant","type":"Viridian Jewel","text":"Quickening Covenant Viridian Jewel","flags":{"unique":true}},{"name":"Rain of Splinters","type":"Crimson Jewel","text":"Rain of Splinters Crimson Jewel","flags":{"unique":true}},{"name":"Rapid Expansion","type":"Crimson Jewel","text":"Rapid Expansion Crimson Jewel","flags":{"unique":true}},{"name":"Reckless Defence","type":"Cobalt Jewel","text":"Reckless Defence Cobalt Jewel","flags":{"unique":true}},{"name":"Ring of Blades","type":"Viridian Jewel","text":"Ring of Blades Viridian Jewel","flags":{"unique":true}},{"name":"Rolling Flames","type":"Cobalt Jewel","text":"Rolling Flames Cobalt Jewel","flags":{"unique":true}},{"name":"Sacrificial Harvest","type":"Viridian Jewel","text":"Sacrificial Harvest Viridian Jewel","flags":{"unique":true}},{"name":"Self-Flagellation","type":"Viridian Jewel","text":"Self-Flagellation Viridian Jewel","flags":{"unique":true}},{"name":"Shattered Chains","type":"Crimson Jewel","text":"Shattered Chains Crimson Jewel","flags":{"unique":true}},{"name":"Soul's Wick","type":"Cobalt Jewel","text":"Soul's Wick Cobalt Jewel","flags":{"unique":true}},{"name":"Spire of Stone","type":"Crimson Jewel","text":"Spire of Stone Crimson Jewel","flags":{"unique":true}},{"name":"Spirited Response","type":"Cobalt Jewel","text":"Spirited Response Cobalt Jewel","flags":{"unique":true}},{"name":"Spirit Guards","type":"Viridian Jewel","text":"Spirit Guards Viridian Jewel","flags":{"unique":true}},{"name":"Split Personality","type":"Crimson Jewel","text":"Split Personality Crimson Jewel","flags":{"unique":true}},{"name":"Spreading Rot","type":"Cobalt Jewel","text":"Spreading Rot Cobalt Jewel","flags":{"unique":true}},{"name":"Static Electricity","type":"Viridian Jewel","text":"Static Electricity Viridian Jewel","flags":{"unique":true}},{"name":"Steel Spirit","type":"Viridian Jewel","text":"Steel Spirit Viridian Jewel","flags":{"unique":true}},{"name":"Sudden Ignition","type":"Viridian Jewel","text":"Sudden Ignition Viridian Jewel","flags":{"unique":true}},{"name":"Survival Instincts","type":"Viridian Jewel","text":"Survival Instincts Viridian Jewel","flags":{"unique":true}},{"name":"Survival Secrets","type":"Cobalt Jewel","text":"Survival Secrets Cobalt Jewel","flags":{"unique":true}},{"name":"Survival Skills","type":"Crimson Jewel","text":"Survival Skills Crimson Jewel","flags":{"unique":true}},{"name":"Tempered Flesh","type":"Crimson Jewel","text":"Tempered Flesh Crimson Jewel","flags":{"unique":true}},{"name":"Tempered Mind","type":"Cobalt Jewel","text":"Tempered Mind Cobalt Jewel","flags":{"unique":true}},{"name":"Tempered Spirit","type":"Viridian Jewel","text":"Tempered Spirit Viridian Jewel","flags":{"unique":true}},{"name":"The Anima Stone","type":"Prismatic Jewel","text":"The Anima Stone Prismatic Jewel","flags":{"unique":true}},{"name":"The Blue Dream","type":"Cobalt Jewel","text":"The Blue Dream Cobalt Jewel","flags":{"unique":true}},{"name":"The Blue Nightmare","type":"Cobalt Jewel","text":"The Blue Nightmare Cobalt Jewel","flags":{"unique":true}},{"name":"The Front Line","type":"Small Cluster Jewel","text":"The Front Line Small Cluster Jewel","flags":{"unique":true}},{"name":"The Golden Rule","type":"Viridian Jewel","text":"The Golden Rule Viridian Jewel","flags":{"unique":true}},{"name":"The Green Dream","type":"Viridian Jewel","text":"The Green Dream Viridian Jewel","flags":{"unique":true}},{"name":"The Green Nightmare","type":"Viridian Jewel","text":"The Green Nightmare Viridian Jewel","flags":{"unique":true}},{"name":"The Interrogation","type":"Small Cluster Jewel","text":"The Interrogation Small Cluster Jewel","flags":{"unique":true}},{"name":"The Long Winter","type":"Cobalt Jewel","text":"The Long Winter Cobalt Jewel","flags":{"unique":true}},{"name":"The Red Dream","type":"Crimson Jewel","text":"The Red Dream Crimson Jewel","flags":{"unique":true}},{"name":"The Red Nightmare","type":"Crimson Jewel","text":"The Red Nightmare Crimson Jewel","flags":{"unique":true}},{"name":"The Siege","type":"Small Cluster Jewel","text":"The Siege Small Cluster Jewel","flags":{"unique":true}},{"name":"The Vigil","type":"Crimson Jewel","text":"The Vigil Crimson Jewel","flags":{"unique":true}},{"name":"Thread of Hope","type":"Crimson Jewel","text":"Thread of Hope Crimson Jewel","flags":{"unique":true}},{"name":"Transcendent Flesh","type":"Crimson Jewel","text":"Transcendent Flesh Crimson Jewel","flags":{"unique":true}},{"name":"Transcendent Mind","type":"Cobalt Jewel","text":"Transcendent Mind Cobalt Jewel","flags":{"unique":true}},{"name":"Transcendent Spirit","type":"Viridian Jewel","text":"Transcendent Spirit Viridian Jewel","flags":{"unique":true}},{"name":"Unending Hunger","type":"Cobalt Jewel","text":"Unending Hunger Cobalt Jewel","flags":{"unique":true}},{"name":"Unnatural Instinct","type":"Viridian Jewel","text":"Unnatural Instinct Viridian Jewel","flags":{"unique":true}},{"name":"Unstable Payload","type":"Cobalt Jewel","text":"Unstable Payload Cobalt Jewel","flags":{"unique":true}},{"name":"Vaal Sentencing","type":"Cobalt Jewel","text":"Vaal Sentencing Cobalt Jewel","flags":{"unique":true}},{"name":"Violent Dead","type":"Cobalt Jewel","text":"Violent Dead Cobalt Jewel","flags":{"unique":true}},{"name":"Voices","type":"Large Cluster Jewel","text":"Voices Large Cluster Jewel","flags":{"unique":true}},{"name":"Volley Fire","type":"Viridian Jewel","text":"Volley Fire Viridian Jewel","flags":{"unique":true}},{"name":"Warlord's Reach","type":"Crimson Jewel","text":"Warlord's Reach Crimson Jewel","flags":{"unique":true}},{"name":"Watcher's Eye","type":"Prismatic Jewel","text":"Watcher's Eye Prismatic Jewel","flags":{"unique":true}},{"name":"Weight of Sin","type":"Viridian Jewel","text":"Weight of Sin Viridian Jewel","flags":{"unique":true}},{"name":"Weight of the Empire","type":"Crimson Jewel","text":"Weight of the Empire Crimson Jewel","flags":{"unique":true}},{"name":"Wildfire","type":"Crimson Jewel","text":"Wildfire Crimson Jewel","flags":{"unique":true}},{"name":"Winter Burial","type":"Crimson Jewel","text":"Winter Burial Crimson Jewel","flags":{"unique":true}},{"name":"Winter's Bounty","type":"Cobalt Jewel","text":"Winter's Bounty Cobalt Jewel","flags":{"unique":true}},{"type":"Hypnotic Eye Jewel","text":"Hypnotic Eye Jewel"},{"type":"Murderous Eye Jewel","text":"Murderous Eye Jewel"},{"type":"Searching Eye Jewel","text":"Searching Eye Jewel"},{"type":"Ghastly Eye Jewel","text":"Ghastly Eye Jewel"},{"type":"Viridian Jewel","text":"Viridian Jewel"},{"type":"Cobalt Jewel","text":"Cobalt Jewel"},{"type":"Large Cluster Jewel","text":"Large Cluster Jewel"},{"type":"Medium Cluster Jewel","text":"Medium Cluster Jewel"},{"type":"Small Cluster Jewel","text":"Small Cluster Jewel"},{"type":"Prismatic Jewel","text":"Prismatic Jewel"},{"type":"Crimson Jewel","text":"Crimson Jewel"},{"type":"Timeless Jewel","text":"Timeless Jewel"}]},{"label":"Maps","entries":[{"name":"Acton's Nightmare","type":"Overgrown Shrine Map","disc":"warfortheatlas","text":"Acton's Nightmare Overgrown Shrine Map","flags":{"unique":true}},{"name":"Altered Distant Memory","type":"Siege Map","disc":"warfortheatlas","text":"Altered Distant Memory Siege Map","flags":{"unique":true}},{"name":"Augmented Distant Memory","type":"Courthouse Map","disc":"warfortheatlas","text":"Augmented Distant Memory Courthouse Map","flags":{"unique":true}},{"name":"Caer Blaidd, Wolfpack's Den","type":"Underground River Map","disc":"warfortheatlas","text":"Caer Blaidd, Wolfpack's Den Underground River Map","flags":{"unique":true}},{"name":"Cortex","type":"Relic Chambers Map","disc":"warfortheatlas","text":"Cortex Relic Chambers Map","flags":{"unique":true}},{"name":"Death and Taxes","type":"Necropolis Map","disc":"warfortheatlas","text":"Death and Taxes Necropolis Map","flags":{"unique":true}},{"name":"Doryani's Machinarium","type":"Maze Map","disc":"warfortheatlas","text":"Doryani's Machinarium Maze Map","flags":{"unique":true}},{"name":"Hall of Grandmasters","type":"Promenade Map","disc":"warfortheatlas","text":"Hall of Grandmasters Promenade Map","flags":{"unique":true}},{"name":"Hallowed Ground","type":"Cemetery Map","disc":"warfortheatlas","text":"Hallowed Ground Cemetery Map","flags":{"unique":true}},{"name":"Infused Beachhead","type":"Harbinger Map","disc":"warfortheatlas","text":"Infused Beachhead Harbinger Map","flags":{"unique":true}},{"name":"Maelstr\u00f6m of Chaos","type":"Atoll Map","disc":"warfortheatlas","text":"Maelstr\u00f6m of Chaos Atoll Map","flags":{"unique":true}},{"name":"Mao Kun","type":"Shore Map","disc":"warfortheatlas","text":"Mao Kun Shore Map","flags":{"unique":true}},{"name":"Oba's Cursed Trove","type":"Primordial Blocks Map","disc":"warfortheatlas","text":"Oba's Cursed Trove Primordial Blocks Map","flags":{"unique":true}},{"name":"Oba's Cursed Trove","type":"Underground Sea Map","disc":"warfortheatlas","text":"Oba's Cursed Trove Underground Sea Map","flags":{"unique":true}},{"name":"Olmec's Sanctum","type":"Bone Crypt Map","disc":"warfortheatlas","text":"Olmec's Sanctum Bone Crypt Map","flags":{"unique":true}},{"name":"Pillars of Arun","type":"Dunes Map","disc":"warfortheatlas","text":"Pillars of Arun Dunes Map","flags":{"unique":true}},{"name":"Poorjoy's Asylum","type":"Temple Map","disc":"warfortheatlas","text":"Poorjoy's Asylum Temple Map","flags":{"unique":true}},{"name":"Rewritten Distant Memory","type":"Basilica Map","disc":"warfortheatlas","text":"Rewritten Distant Memory Basilica Map","flags":{"unique":true}},{"name":"The Beachhead","type":"Harbinger Map","disc":"warfortheatlas","text":"The Beachhead Harbinger Map","flags":{"unique":true}},{"name":"The Coward's Trial","type":"Cursed Crypt Map","disc":"warfortheatlas","text":"The Coward's Trial Cursed Crypt Map","flags":{"unique":true}},{"name":"The Perandus Manor","type":"Chateau Map","disc":"warfortheatlas","text":"The Perandus Manor Chateau Map","flags":{"unique":true}},{"name":"The Putrid Cloister","type":"Museum Map","disc":"warfortheatlas","text":"The Putrid Cloister Museum Map","flags":{"unique":true}},{"name":"The Twilight Temple","type":"Moon Temple Map","disc":"warfortheatlas","text":"The Twilight Temple Moon Temple Map","flags":{"unique":true}},{"name":"The Vinktar Square","type":"Courtyard Map","disc":"warfortheatlas","text":"The Vinktar Square Courtyard Map","flags":{"unique":true}},{"name":"Twisted Distant Memory","type":"Park Map","disc":"warfortheatlas","text":"Twisted Distant Memory Park Map","flags":{"unique":true}},{"name":"Vaults of Atziri","type":"Vaal Pyramid Map","disc":"warfortheatlas","text":"Vaults of Atziri Vaal Pyramid Map","flags":{"unique":true}},{"name":"Whakawairua Tuahu","type":"Strand Map","disc":"warfortheatlas","text":"Whakawairua Tuahu Strand Map","flags":{"unique":true}},{"type":"Academy Map","disc":"warfortheatlas","text":"Academy Map"},{"type":"Acid Caverns Map","disc":"warfortheatlas","text":"Acid Caverns Map"},{"type":"Alleyways Map","disc":"warfortheatlas","text":"Alleyways Map"},{"type":"Ancient City Map","disc":"warfortheatlas","text":"Ancient City Map"},{"type":"Arachnid Nest Map","disc":"warfortheatlas","text":"Arachnid Nest Map"},{"type":"Arachnid Tomb Map","disc":"warfortheatlas","text":"Arachnid Tomb Map"},{"type":"Arcade Map","disc":"warfortheatlas","text":"Arcade Map"},{"type":"Arena Map","disc":"warfortheatlas","text":"Arena Map"},{"type":"Arid Lake Map","disc":"warfortheatlas","text":"Arid Lake Map"},{"type":"Armoury Map","disc":"warfortheatlas","text":"Armoury Map"},{"type":"Arsenal Map","disc":"warfortheatlas","text":"Arsenal Map"},{"type":"Ashen Wood Map","disc":"warfortheatlas","text":"Ashen Wood Map"},{"type":"Atoll Map","disc":"warfortheatlas","text":"Atoll Map"},{"type":"Barrows Map","disc":"warfortheatlas","text":"Barrows Map"},{"type":"Basilica Map","disc":"warfortheatlas","text":"Basilica Map"},{"type":"Bazaar Map","disc":"warfortheatlas","text":"Bazaar Map"},{"type":"Beach Map","disc":"warfortheatlas","text":"Beach Map"},{"type":"Belfry Map","disc":"warfortheatlas","text":"Belfry Map"},{"type":"Bog Map","disc":"warfortheatlas","text":"Bog Map"},{"type":"Bone Crypt Map","disc":"warfortheatlas","text":"Bone Crypt Map"},{"type":"Burial Chambers Map","disc":"warfortheatlas","text":"Burial Chambers Map"},{"type":"Cage Map","disc":"warfortheatlas","text":"Cage Map"},{"type":"Caldera Map","disc":"warfortheatlas","text":"Caldera Map"},{"type":"Canyon Map","disc":"warfortheatlas","text":"Canyon Map"},{"type":"Carcass Map","disc":"warfortheatlas","text":"Carcass Map"},{"type":"Castle Ruins Map","disc":"warfortheatlas","text":"Castle Ruins Map"},{"type":"Cells Map","disc":"warfortheatlas","text":"Cells Map"},{"type":"Cemetery Map","disc":"warfortheatlas","text":"Cemetery Map"},{"type":"Channel Map","disc":"warfortheatlas","text":"Channel Map"},{"type":"Chateau Map","disc":"warfortheatlas","text":"Chateau Map"},{"type":"Pit of the Chimera Map","disc":"warfortheatlas","text":"Pit of the Chimera Map"},{"type":"City Square Map","disc":"warfortheatlas","text":"City Square Map"},{"type":"Colonnade Map","disc":"warfortheatlas","text":"Colonnade Map"},{"type":"Colosseum Map","disc":"warfortheatlas","text":"Colosseum Map"},{"type":"Conservatory Map","disc":"warfortheatlas","text":"Conservatory Map"},{"type":"Coral Ruins Map","disc":"warfortheatlas","text":"Coral Ruins Map"},{"type":"Core Map","disc":"warfortheatlas","text":"Core Map"},{"type":"Courthouse Map","disc":"warfortheatlas","text":"Courthouse Map"},{"type":"Courtyard Map","disc":"warfortheatlas","text":"Courtyard Map"},{"type":"Coves Map","disc":"warfortheatlas","text":"Coves Map"},{"type":"Crimson Temple Map","disc":"warfortheatlas","text":"Crimson Temple Map"},{"type":"Crystal Ore Map","disc":"warfortheatlas","text":"Crystal Ore Map"},{"type":"Cursed Crypt Map","disc":"warfortheatlas","text":"Cursed Crypt Map"},{"type":"Dark Forest Map","disc":"warfortheatlas","text":"Dark Forest Map"},{"type":"Defiled Cathedral Map","disc":"warfortheatlas","text":"Defiled Cathedral Map"},{"type":"Desert Map","disc":"warfortheatlas","text":"Desert Map"},{"type":"Desert Spring Map","disc":"warfortheatlas","text":"Desert Spring Map"},{"type":"Dig Map","disc":"warfortheatlas","text":"Dig Map"},{"type":"Dunes Map","disc":"warfortheatlas","text":"Dunes Map"},{"type":"Dungeon Map","disc":"warfortheatlas","text":"Dungeon Map"},{"type":"Estuary Map","disc":"warfortheatlas","text":"Estuary Map"},{"type":"Excavation Map","disc":"warfortheatlas","text":"Excavation Map"},{"type":"Factory Map","disc":"warfortheatlas","text":"Factory Map"},{"type":"Fields Map","disc":"warfortheatlas","text":"Fields Map"},{"type":"Flooded Mine Map","disc":"warfortheatlas","text":"Flooded Mine Map"},{"type":"Gardens Map","disc":"warfortheatlas","text":"Gardens Map"},{"type":"Geode Map","disc":"warfortheatlas","text":"Geode Map"},{"type":"Ghetto Map","disc":"warfortheatlas","text":"Ghetto Map"},{"type":"Glacier Map","disc":"warfortheatlas","text":"Glacier Map"},{"type":"Graveyard Map","disc":"warfortheatlas","text":"Graveyard Map"},{"type":"Grotto Map","disc":"warfortheatlas","text":"Grotto Map"},{"type":"Harbinger Map","disc":"warfortheatlas","text":"Harbinger Map"},{"type":"Haunted Mansion Map","disc":"warfortheatlas","text":"Haunted Mansion Map"},{"type":"Lair of the Hydra Map","disc":"warfortheatlas","text":"Lair of the Hydra Map"},{"type":"Iceberg Map","disc":"warfortheatlas","text":"Iceberg Map"},{"type":"Infested Valley Map","disc":"warfortheatlas","text":"Infested Valley Map"},{"type":"Ivory Temple Map","disc":"warfortheatlas","text":"Ivory Temple Map"},{"type":"Jungle Valley Map","disc":"warfortheatlas","text":"Jungle Valley Map"},{"type":"Laboratory Map","disc":"warfortheatlas","text":"Laboratory Map"},{"type":"Lair Map","disc":"warfortheatlas","text":"Lair Map"},{"type":"Lava Chamber Map","disc":"warfortheatlas","text":"Lava Chamber Map"},{"type":"Lava Lake Map","disc":"warfortheatlas","text":"Lava Lake Map"},{"type":"Leyline Map","disc":"warfortheatlas","text":"Leyline Map"},{"type":"Lighthouse Map","disc":"warfortheatlas","text":"Lighthouse Map"},{"type":"Lookout Map","disc":"warfortheatlas","text":"Lookout Map"},{"type":"Malformation Map","disc":"warfortheatlas","text":"Malformation Map"},{"type":"Marshes Map","disc":"warfortheatlas","text":"Marshes Map"},{"type":"Mausoleum Map","disc":"warfortheatlas","text":"Mausoleum Map"},{"type":"Maze Map","disc":"warfortheatlas","text":"Maze Map"},{"type":"Mesa Map","disc":"warfortheatlas","text":"Mesa Map"},{"type":"Mineral Pools Map","disc":"warfortheatlas","text":"Mineral Pools Map"},{"type":"Maze of the Minotaur Map","disc":"warfortheatlas","text":"Maze of the Minotaur Map"},{"type":"Moon Temple Map","disc":"warfortheatlas","text":"Moon Temple Map"},{"type":"Mud Geyser Map","disc":"warfortheatlas","text":"Mud Geyser Map"},{"type":"Museum Map","disc":"warfortheatlas","text":"Museum Map"},{"type":"Necropolis Map","disc":"warfortheatlas","text":"Necropolis Map"},{"type":"Orchard Map","disc":"warfortheatlas","text":"Orchard Map"},{"type":"Overgrown Ruin Map","disc":"warfortheatlas","text":"Overgrown Ruin Map"},{"type":"Overgrown Shrine Map","disc":"warfortheatlas","text":"Overgrown Shrine Map"},{"type":"Palace Map","disc":"warfortheatlas","text":"Palace Map"},{"type":"Park Map","disc":"warfortheatlas","text":"Park Map"},{"type":"Pen Map","disc":"warfortheatlas","text":"Pen Map"},{"type":"Peninsula Map","disc":"warfortheatlas","text":"Peninsula Map"},{"type":"Phantasmagoria Map","disc":"warfortheatlas","text":"Phantasmagoria Map"},{"type":"Forge of the Phoenix Map","disc":"warfortheatlas","text":"Forge of the Phoenix Map"},{"type":"Pier Map","disc":"warfortheatlas","text":"Pier Map"},{"type":"Pit Map","disc":"warfortheatlas","text":"Pit Map"},{"type":"Plateau Map","disc":"warfortheatlas","text":"Plateau Map"},{"type":"Plaza Map","disc":"warfortheatlas","text":"Plaza Map"},{"type":"Port Map","disc":"warfortheatlas","text":"Port Map"},{"type":"Precinct Map","disc":"warfortheatlas","text":"Precinct Map"},{"type":"Primordial Pool Map","disc":"warfortheatlas","text":"Primordial Pool Map"},{"type":"Promenade Map","disc":"warfortheatlas","text":"Promenade Map"},{"type":"Racecourse Map","disc":"warfortheatlas","text":"Racecourse Map"},{"type":"Ramparts Map","disc":"warfortheatlas","text":"Ramparts Map"},{"type":"Reef Map","disc":"warfortheatlas","text":"Reef Map"},{"type":"Relic Chambers Map","disc":"warfortheatlas","text":"Relic Chambers Map"},{"type":"Residence Map","disc":"warfortheatlas","text":"Residence Map"},{"type":"Scriptorium Map","disc":"warfortheatlas","text":"Scriptorium Map"},{"type":"Sepulchre Map","disc":"warfortheatlas","text":"Sepulchre Map"},{"type":"Shipyard Map","disc":"warfortheatlas","text":"Shipyard Map"},{"type":"Shore Map","disc":"warfortheatlas","text":"Shore Map"},{"type":"Shrine Map","disc":"warfortheatlas","text":"Shrine Map"},{"type":"Siege Map","disc":"warfortheatlas","text":"Siege Map"},{"type":"Spider Forest Map","disc":"warfortheatlas","text":"Spider Forest Map"},{"type":"Spider Lair Map","disc":"warfortheatlas","text":"Spider Lair Map"},{"type":"Fungal Hollow Map","disc":"warfortheatlas","text":"Fungal Hollow Map"},{"type":"Strand Map","disc":"warfortheatlas","text":"Strand Map"},{"type":"Sulphur Vents Map","disc":"warfortheatlas","text":"Sulphur Vents Map"},{"type":"Summit Map","disc":"warfortheatlas","text":"Summit Map"},{"type":"Sunken City Map","disc":"warfortheatlas","text":"Sunken City Map"},{"type":"Temple Map","disc":"warfortheatlas","text":"Temple Map"},{"type":"Terrace Map","disc":"warfortheatlas","text":"Terrace Map"},{"type":"Thicket Map","disc":"warfortheatlas","text":"Thicket Map"},{"type":"Primordial Blocks Map","disc":"warfortheatlas","text":"Primordial Blocks Map"},{"type":"Tower Map","disc":"warfortheatlas","text":"Tower Map"},{"type":"Toxic Sewer Map","disc":"warfortheatlas","text":"Toxic Sewer Map"},{"type":"Crater Map","disc":"warfortheatlas","text":"Crater Map"},{"type":"Tropical Island Map","disc":"warfortheatlas","text":"Tropical Island Map"},{"type":"Underground River Map","disc":"warfortheatlas","text":"Underground River Map"},{"type":"Underground Sea Map","disc":"warfortheatlas","text":"Underground Sea Map"},{"type":"Vaal Pyramid Map","disc":"warfortheatlas","text":"Vaal Pyramid Map"},{"type":"Vaal Temple Map","disc":"warfortheatlas","text":"Vaal Temple Map"},{"type":"Vault Map","disc":"warfortheatlas","text":"Vault Map"},{"type":"Villa Map","disc":"warfortheatlas","text":"Villa Map"},{"type":"Volcano Map","disc":"warfortheatlas","text":"Volcano Map"},{"type":"Wasteland Map","disc":"warfortheatlas","text":"Wasteland Map"},{"type":"Waste Pool Map","disc":"warfortheatlas","text":"Waste Pool Map"},{"type":"Waterways Map","disc":"warfortheatlas","text":"Waterways Map"},{"type":"Wharf Map","disc":"warfortheatlas","text":"Wharf Map"},{"name":"Acton's Nightmare","type":"Overgrown Shrine Map","disc":"atlasofworlds","text":"Acton's Nightmare Overgrown Shrine Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"Caer Blaidd, Wolfpack's Den","type":"Underground River Map","disc":"atlasofworlds","text":"Caer Blaidd, Wolfpack's Den Underground River Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"Death and Taxes","type":"Necropolis Map","disc":"atlasofworlds","text":"Death and Taxes Necropolis Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"Hall of Grandmasters","type":"Promenade Map","disc":"atlasofworlds","text":"Hall of Grandmasters Promenade Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"Hallowed Ground","type":"Graveyard Map","disc":"atlasofworlds","text":"Hallowed Ground Graveyard Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"Maelstr\u00f6m of Chaos","type":"Atoll Map","disc":"atlasofworlds","text":"Maelstr\u00f6m of Chaos Atoll Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"Mao Kun","type":"Reef Map","disc":"atlasofworlds","text":"Mao Kun Reef Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"Oba's Cursed Trove","type":"Primordial Blocks Map","disc":"atlasofworlds","text":"Oba's Cursed Trove Primordial Blocks Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"Olmec's Sanctum","type":"Bone Crypt Map","disc":"atlasofworlds","text":"Olmec's Sanctum Bone Crypt Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"Poorjoy's Asylum","type":"Temple Map","disc":"atlasofworlds","text":"Poorjoy's Asylum Temple Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"The Beachhead","type":"Harbinger Map","disc":"atlasofworlds","text":"The Beachhead Harbinger Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"The Coward's Trial","type":"Cursed Crypt Map","disc":"atlasofworlds","text":"The Coward's Trial Cursed Crypt Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"The Perandus Manor","type":"Chateau Map","disc":"atlasofworlds","text":"The Perandus Manor Chateau Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"The Putrid Cloister","type":"Museum Map","disc":"atlasofworlds","text":"The Putrid Cloister Museum Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"The Vinktar Square","type":"Courtyard Map","disc":"atlasofworlds","text":"The Vinktar Square Courtyard Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"Vaults of Atziri","type":"Vaal Pyramid Map","disc":"atlasofworlds","text":"Vaults of Atziri Vaal Pyramid Map (Atlas of Worlds)","flags":{"unique":true}},{"name":"Whakawairua Tuahu","type":"Strand Map","disc":"atlasofworlds","text":"Whakawairua Tuahu Strand Map (Atlas of Worlds)","flags":{"unique":true}},{"type":"Caldera Map","disc":"atlasofworlds","text":"Caldera Map (Atlas of Worlds)"},{"type":"Academy Map","disc":"atlasofworlds","text":"Academy Map (Atlas of Worlds)"},{"type":"Shaped Academy Map","disc":"atlasofworlds","text":"Shaped Academy Map (Atlas of Worlds)"},{"type":"Acid Caverns Map","disc":"atlasofworlds","text":"Acid Caverns Map (Atlas of Worlds)"},{"type":"Shaped Acid Caverns Map","disc":"atlasofworlds","text":"Shaped Acid Caverns Map (Atlas of Worlds)"},{"type":"Arachnid Nest Map","disc":"atlasofworlds","text":"Arachnid Nest Map (Atlas of Worlds)"},{"type":"Shaped Arachnid Nest Map","disc":"atlasofworlds","text":"Shaped Arachnid Nest Map (Atlas of Worlds)"},{"type":"Arachnid Tomb Map","disc":"atlasofworlds","text":"Arachnid Tomb Map (Atlas of Worlds)"},{"type":"Shaped Arachnid Tomb Map","disc":"atlasofworlds","text":"Shaped Arachnid Tomb Map (Atlas of Worlds)"},{"type":"Arcade Map","disc":"atlasofworlds","text":"Arcade Map (Atlas of Worlds)"},{"type":"Shaped Arcade Map","disc":"atlasofworlds","text":"Shaped Arcade Map (Atlas of Worlds)"},{"type":"Arena Map","disc":"atlasofworlds","text":"Arena Map (Atlas of Worlds)"},{"type":"Shaped Arena Map","disc":"atlasofworlds","text":"Shaped Arena Map (Atlas of Worlds)"},{"type":"Arid Lake Map","disc":"atlasofworlds","text":"Arid Lake Map (Atlas of Worlds)"},{"type":"Shaped Arid Lake Map","disc":"atlasofworlds","text":"Shaped Arid Lake Map (Atlas of Worlds)"},{"type":"Armoury Map","disc":"atlasofworlds","text":"Armoury Map (Atlas of Worlds)"},{"type":"Shaped Armoury Map","disc":"atlasofworlds","text":"Shaped Armoury Map (Atlas of Worlds)"},{"type":"Arsenal Map","disc":"atlasofworlds","text":"Arsenal Map (Atlas of Worlds)"},{"type":"Shaped Arsenal Map","disc":"atlasofworlds","text":"Shaped Arsenal Map (Atlas of Worlds)"},{"type":"Atoll Map","disc":"atlasofworlds","text":"Atoll Map (Atlas of Worlds)"},{"type":"Shaped Atoll Map","disc":"atlasofworlds","text":"Shaped Atoll Map (Atlas of Worlds)"},{"type":"Barrows Map","disc":"atlasofworlds","text":"Barrows Map (Atlas of Worlds)"},{"type":"Shaped Barrows Map","disc":"atlasofworlds","text":"Shaped Barrows Map (Atlas of Worlds)"},{"type":"Bazaar Map","disc":"atlasofworlds","text":"Bazaar Map (Atlas of Worlds)"},{"type":"Beach Map","disc":"atlasofworlds","text":"Beach Map (Atlas of Worlds)"},{"type":"Shaped Beach Map","disc":"atlasofworlds","text":"Shaped Beach Map (Atlas of Worlds)"},{"type":"Lighthouse Map","disc":"atlasofworlds","text":"Lighthouse Map (Atlas of Worlds)"},{"type":"Bog Map","disc":"atlasofworlds","text":"Bog Map (Atlas of Worlds)"},{"type":"Shaped Bog Map","disc":"atlasofworlds","text":"Shaped Bog Map (Atlas of Worlds)"},{"type":"Burial Chambers Map","disc":"atlasofworlds","text":"Burial Chambers Map (Atlas of Worlds)"},{"type":"Shaped Burial Chambers Map","disc":"atlasofworlds","text":"Shaped Burial Chambers Map (Atlas of Worlds)"},{"type":"Canyon Map","disc":"atlasofworlds","text":"Canyon Map (Atlas of Worlds)"},{"type":"Shaped Canyon Map","disc":"atlasofworlds","text":"Shaped Canyon Map (Atlas of Worlds)"},{"type":"Castle Ruins Map","disc":"atlasofworlds","text":"Castle Ruins Map (Atlas of Worlds)"},{"type":"Shaped Castle Ruins Map","disc":"atlasofworlds","text":"Shaped Castle Ruins Map (Atlas of Worlds)"},{"type":"Bone Crypt Map","disc":"atlasofworlds","text":"Bone Crypt Map (Atlas of Worlds)"},{"type":"Shaped Bone Crypt Map","disc":"atlasofworlds","text":"Shaped Bone Crypt Map (Atlas of Worlds)"},{"type":"Flooded Mine Map","disc":"atlasofworlds","text":"Flooded Mine Map (Atlas of Worlds)"},{"type":"Shaped Flooded Mine Map","disc":"atlasofworlds","text":"Shaped Flooded Mine Map (Atlas of Worlds)"},{"type":"Cells Map","disc":"atlasofworlds","text":"Cells Map (Atlas of Worlds)"},{"type":"Shaped Cells Map","disc":"atlasofworlds","text":"Shaped Cells Map (Atlas of Worlds)"},{"type":"Cemetery Map","disc":"atlasofworlds","text":"Cemetery Map (Atlas of Worlds)"},{"type":"Shaped Cemetery Map","disc":"atlasofworlds","text":"Shaped Cemetery Map (Atlas of Worlds)"},{"type":"Channel Map","disc":"atlasofworlds","text":"Channel Map (Atlas of Worlds)"},{"type":"Shaped Channel Map","disc":"atlasofworlds","text":"Shaped Channel Map (Atlas of Worlds)"},{"type":"Chateau Map","disc":"atlasofworlds","text":"Chateau Map (Atlas of Worlds)"},{"type":"Pit of the Chimera Map","disc":"atlasofworlds","text":"Pit of the Chimera Map (Atlas of Worlds)"},{"type":"Colonnade Map","disc":"atlasofworlds","text":"Colonnade Map (Atlas of Worlds)"},{"type":"Shaped Colonnade Map","disc":"atlasofworlds","text":"Shaped Colonnade Map (Atlas of Worlds)"},{"type":"Colosseum Map","disc":"atlasofworlds","text":"Colosseum Map (Atlas of Worlds)"},{"type":"Core Map","disc":"atlasofworlds","text":"Core Map (Atlas of Worlds)"},{"type":"Courtyard Map","disc":"atlasofworlds","text":"Courtyard Map (Atlas of Worlds)"},{"type":"Shaped Courtyard Map","disc":"atlasofworlds","text":"Shaped Courtyard Map (Atlas of Worlds)"},{"type":"Coves Map","disc":"atlasofworlds","text":"Coves Map (Atlas of Worlds)"},{"type":"Shaped Coves Map","disc":"atlasofworlds","text":"Shaped Coves Map (Atlas of Worlds)"},{"type":"Lava Chamber Map","disc":"atlasofworlds","text":"Lava Chamber Map (Atlas of Worlds)"},{"type":"Cursed Crypt Map","disc":"atlasofworlds","text":"Cursed Crypt Map (Atlas of Worlds)"},{"type":"Shaped Cursed Crypt Map","disc":"atlasofworlds","text":"Shaped Cursed Crypt Map (Atlas of Worlds)"},{"type":"Crystal Ore Map","disc":"atlasofworlds","text":"Crystal Ore Map (Atlas of Worlds)"},{"type":"Shaped Crystal Ore Map","disc":"atlasofworlds","text":"Shaped Crystal Ore Map (Atlas of Worlds)"},{"type":"Dark Forest Map","disc":"atlasofworlds","text":"Dark Forest Map (Atlas of Worlds)"},{"type":"Desert Map","disc":"atlasofworlds","text":"Desert Map (Atlas of Worlds)"},{"type":"Shaped Desert Map","disc":"atlasofworlds","text":"Shaped Desert Map (Atlas of Worlds)"},{"type":"Peninsula Map","disc":"atlasofworlds","text":"Peninsula Map (Atlas of Worlds)"},{"type":"Shaped Peninsula Map","disc":"atlasofworlds","text":"Shaped Peninsula Map (Atlas of Worlds)"},{"type":"Ashen Wood Map","disc":"atlasofworlds","text":"Ashen Wood Map (Atlas of Worlds)"},{"type":"Shaped Ashen Wood Map","disc":"atlasofworlds","text":"Shaped Ashen Wood Map (Atlas of Worlds)"},{"type":"Dunes Map","disc":"atlasofworlds","text":"Dunes Map (Atlas of Worlds)"},{"type":"Shaped Dunes Map","disc":"atlasofworlds","text":"Shaped Dunes Map (Atlas of Worlds)"},{"type":"Dungeon Map","disc":"atlasofworlds","text":"Dungeon Map (Atlas of Worlds)"},{"type":"Shaped Dungeon Map","disc":"atlasofworlds","text":"Shaped Dungeon Map (Atlas of Worlds)"},{"type":"Estuary Map","disc":"atlasofworlds","text":"Estuary Map (Atlas of Worlds)"},{"type":"Excavation Map","disc":"atlasofworlds","text":"Excavation Map (Atlas of Worlds)"},{"type":"Factory Map","disc":"atlasofworlds","text":"Factory Map (Atlas of Worlds)"},{"type":"Shaped Factory Map","disc":"atlasofworlds","text":"Shaped Factory Map (Atlas of Worlds)"},{"type":"Ghetto Map","disc":"atlasofworlds","text":"Ghetto Map (Atlas of Worlds)"},{"type":"Shaped Ghetto Map","disc":"atlasofworlds","text":"Shaped Ghetto Map (Atlas of Worlds)"},{"type":"Glacier Map","disc":"atlasofworlds","text":"Glacier Map (Atlas of Worlds)"},{"type":"Graveyard Map","disc":"atlasofworlds","text":"Graveyard Map (Atlas of Worlds)"},{"type":"Shaped Graveyard Map","disc":"atlasofworlds","text":"Shaped Graveyard Map (Atlas of Worlds)"},{"type":"Grotto Map","disc":"atlasofworlds","text":"Grotto Map (Atlas of Worlds)"},{"type":"Shaped Grotto Map","disc":"atlasofworlds","text":"Shaped Grotto Map (Atlas of Worlds)"},{"type":"Harbinger Map","disc":"atlasofworlds","text":"Harbinger Map (Atlas of Worlds)"},{"type":"Terrace Map","disc":"atlasofworlds","text":"Terrace Map (Atlas of Worlds)"},{"type":"Lair of the Hydra Map","disc":"atlasofworlds","text":"Lair of the Hydra Map (Atlas of Worlds)"},{"type":"Ivory Temple Map","disc":"atlasofworlds","text":"Ivory Temple Map (Atlas of Worlds)"},{"type":"Jungle Valley Map","disc":"atlasofworlds","text":"Jungle Valley Map (Atlas of Worlds)"},{"type":"Shaped Jungle Valley Map","disc":"atlasofworlds","text":"Shaped Jungle Valley Map (Atlas of Worlds)"},{"type":"Lair Map","disc":"atlasofworlds","text":"Lair Map (Atlas of Worlds)"},{"type":"Malformation Map","disc":"atlasofworlds","text":"Malformation Map (Atlas of Worlds)"},{"type":"Shaped Malformation Map","disc":"atlasofworlds","text":"Shaped Malformation Map (Atlas of Worlds)"},{"type":"Marshes Map","disc":"atlasofworlds","text":"Marshes Map (Atlas of Worlds)"},{"type":"Shaped Marshes Map","disc":"atlasofworlds","text":"Shaped Marshes Map (Atlas of Worlds)"},{"type":"Maze Map","disc":"atlasofworlds","text":"Maze Map (Atlas of Worlds)"},{"type":"Mesa Map","disc":"atlasofworlds","text":"Mesa Map (Atlas of Worlds)"},{"type":"Shaped Mesa Map","disc":"atlasofworlds","text":"Shaped Mesa Map (Atlas of Worlds)"},{"type":"Mineral Pools Map","disc":"atlasofworlds","text":"Mineral Pools Map (Atlas of Worlds)"},{"type":"Maze of the Minotaur Map","disc":"atlasofworlds","text":"Maze of the Minotaur Map (Atlas of Worlds)"},{"type":"Mud Geyser Map","disc":"atlasofworlds","text":"Mud Geyser Map (Atlas of Worlds)"},{"type":"Shaped Mud Geyser Map","disc":"atlasofworlds","text":"Shaped Mud Geyser Map (Atlas of Worlds)"},{"type":"Museum Map","disc":"atlasofworlds","text":"Museum Map (Atlas of Worlds)"},{"type":"Shaped Museum Map","disc":"atlasofworlds","text":"Shaped Museum Map (Atlas of Worlds)"},{"type":"Necropolis Map","disc":"atlasofworlds","text":"Necropolis Map (Atlas of Worlds)"},{"type":"Desert Spring Map","disc":"atlasofworlds","text":"Desert Spring Map (Atlas of Worlds)"},{"type":"Shaped Desert Spring Map","disc":"atlasofworlds","text":"Shaped Desert Spring Map (Atlas of Worlds)"},{"type":"Orchard Map","disc":"atlasofworlds","text":"Orchard Map (Atlas of Worlds)"},{"type":"Shaped Orchard Map","disc":"atlasofworlds","text":"Shaped Orchard Map (Atlas of Worlds)"},{"type":"Overgrown Ruin Map","disc":"atlasofworlds","text":"Overgrown Ruin Map (Atlas of Worlds)"},{"type":"Overgrown Shrine Map","disc":"atlasofworlds","text":"Overgrown Shrine Map (Atlas of Worlds)"},{"type":"Shaped Overgrown Shrine Map","disc":"atlasofworlds","text":"Shaped Overgrown Shrine Map (Atlas of Worlds)"},{"type":"Palace Map","disc":"atlasofworlds","text":"Palace Map (Atlas of Worlds)"},{"type":"Phantasmagoria Map","disc":"atlasofworlds","text":"Phantasmagoria Map (Atlas of Worlds)"},{"type":"Shaped Phantasmagoria Map","disc":"atlasofworlds","text":"Shaped Phantasmagoria Map (Atlas of Worlds)"},{"type":"Forge of the Phoenix Map","disc":"atlasofworlds","text":"Forge of the Phoenix Map (Atlas of Worlds)"},{"type":"Pier Map","disc":"atlasofworlds","text":"Pier Map (Atlas of Worlds)"},{"type":"Shaped Pier Map","disc":"atlasofworlds","text":"Shaped Pier Map (Atlas of Worlds)"},{"type":"Pit Map","disc":"atlasofworlds","text":"Pit Map (Atlas of Worlds)"},{"type":"Shaped Pit Map","disc":"atlasofworlds","text":"Shaped Pit Map (Atlas of Worlds)"},{"type":"Plateau Map","disc":"atlasofworlds","text":"Plateau Map (Atlas of Worlds)"},{"type":"Plaza Map","disc":"atlasofworlds","text":"Plaza Map (Atlas of Worlds)"},{"type":"Precinct Map","disc":"atlasofworlds","text":"Precinct Map (Atlas of Worlds)"},{"type":"Primordial Pool Map","disc":"atlasofworlds","text":"Primordial Pool Map (Atlas of Worlds)"},{"type":"Shaped Primordial Pool Map","disc":"atlasofworlds","text":"Shaped Primordial Pool Map (Atlas of Worlds)"},{"type":"Promenade Map","disc":"atlasofworlds","text":"Promenade Map (Atlas of Worlds)"},{"type":"Shaped Promenade Map","disc":"atlasofworlds","text":"Shaped Promenade Map (Atlas of Worlds)"},{"type":"Geode Map","disc":"atlasofworlds","text":"Geode Map (Atlas of Worlds)"},{"type":"Shaped Geode Map","disc":"atlasofworlds","text":"Shaped Geode Map (Atlas of Worlds)"},{"type":"Port Map","disc":"atlasofworlds","text":"Port Map (Atlas of Worlds)"},{"type":"Shaped Port Map","disc":"atlasofworlds","text":"Shaped Port Map (Atlas of Worlds)"},{"type":"Racecourse Map","disc":"atlasofworlds","text":"Racecourse Map (Atlas of Worlds)"},{"type":"Shaped Racecourse Map","disc":"atlasofworlds","text":"Shaped Racecourse Map (Atlas of Worlds)"},{"type":"Ramparts Map","disc":"atlasofworlds","text":"Ramparts Map (Atlas of Worlds)"},{"type":"Shaped Ramparts Map","disc":"atlasofworlds","text":"Shaped Ramparts Map (Atlas of Worlds)"},{"type":"Reef Map","disc":"atlasofworlds","text":"Reef Map (Atlas of Worlds)"},{"type":"Shaped Reef Map","disc":"atlasofworlds","text":"Shaped Reef Map (Atlas of Worlds)"},{"type":"Residence Map","disc":"atlasofworlds","text":"Residence Map (Atlas of Worlds)"},{"type":"Scriptorium Map","disc":"atlasofworlds","text":"Scriptorium Map (Atlas of Worlds)"},{"type":"Toxic Sewer Map","disc":"atlasofworlds","text":"Toxic Sewer Map (Atlas of Worlds)"},{"type":"Shaped Toxic Sewer Map","disc":"atlasofworlds","text":"Shaped Toxic Sewer Map (Atlas of Worlds)"},{"type":"Shipyard Map","disc":"atlasofworlds","text":"Shipyard Map (Atlas of Worlds)"},{"type":"Shore Map","disc":"atlasofworlds","text":"Shore Map (Atlas of Worlds)"},{"type":"Shaped Shore Map","disc":"atlasofworlds","text":"Shaped Shore Map (Atlas of Worlds)"},{"type":"Shrine Map","disc":"atlasofworlds","text":"Shrine Map (Atlas of Worlds)"},{"type":"Spider Forest Map","disc":"atlasofworlds","text":"Spider Forest Map (Atlas of Worlds)"},{"type":"Shaped Spider Forest Map","disc":"atlasofworlds","text":"Shaped Spider Forest Map (Atlas of Worlds)"},{"type":"Spider Lair Map","disc":"atlasofworlds","text":"Spider Lair Map (Atlas of Worlds)"},{"type":"Shaped Spider Lair Map","disc":"atlasofworlds","text":"Shaped Spider Lair Map (Atlas of Worlds)"},{"type":"Fungal Hollow Map","disc":"atlasofworlds","text":"Fungal Hollow Map (Atlas of Worlds)"},{"type":"Strand Map","disc":"atlasofworlds","text":"Strand Map (Atlas of Worlds)"},{"type":"Shaped Strand Map","disc":"atlasofworlds","text":"Shaped Strand Map (Atlas of Worlds)"},{"type":"Leyline Map","disc":"atlasofworlds","text":"Leyline Map (Atlas of Worlds)"},{"type":"Temple Map","disc":"atlasofworlds","text":"Temple Map (Atlas of Worlds)"},{"type":"Shaped Temple Map","disc":"atlasofworlds","text":"Shaped Temple Map (Atlas of Worlds)"},{"type":"Gardens Map","disc":"atlasofworlds","text":"Gardens Map (Atlas of Worlds)"},{"type":"Shaped Gardens Map","disc":"atlasofworlds","text":"Shaped Gardens Map (Atlas of Worlds)"},{"type":"Thicket Map","disc":"atlasofworlds","text":"Thicket Map (Atlas of Worlds)"},{"type":"Shaped Thicket Map","disc":"atlasofworlds","text":"Shaped Thicket Map (Atlas of Worlds)"},{"type":"Primordial Blocks Map","disc":"atlasofworlds","text":"Primordial Blocks Map (Atlas of Worlds)"},{"type":"Tower Map","disc":"atlasofworlds","text":"Tower Map (Atlas of Worlds)"},{"type":"Shaped Tower Map","disc":"atlasofworlds","text":"Shaped Tower Map (Atlas of Worlds)"},{"type":"Tropical Island Map","disc":"atlasofworlds","text":"Tropical Island Map (Atlas of Worlds)"},{"type":"Shaped Tropical Island Map","disc":"atlasofworlds","text":"Shaped Tropical Island Map (Atlas of Worlds)"},{"type":"Underground River Map","disc":"atlasofworlds","text":"Underground River Map (Atlas of Worlds)"},{"type":"Shaped Underground River Map","disc":"atlasofworlds","text":"Shaped Underground River Map (Atlas of Worlds)"},{"type":"Underground Sea Map","disc":"atlasofworlds","text":"Underground Sea Map (Atlas of Worlds)"},{"type":"Ancient City Map","disc":"atlasofworlds","text":"Ancient City Map (Atlas of Worlds)"},{"type":"Shaped Ancient City Map","disc":"atlasofworlds","text":"Shaped Ancient City Map (Atlas of Worlds)"},{"type":"Vaal Pyramid Map","disc":"atlasofworlds","text":"Vaal Pyramid Map (Atlas of Worlds)"},{"type":"Shaped Vaal Pyramid Map","disc":"atlasofworlds","text":"Shaped Vaal Pyramid Map (Atlas of Worlds)"},{"type":"Vaal Temple Map","disc":"atlasofworlds","text":"Vaal Temple Map (Atlas of Worlds)"},{"type":"Vault Map","disc":"atlasofworlds","text":"Vault Map (Atlas of Worlds)"},{"type":"Villa Map","disc":"atlasofworlds","text":"Villa Map (Atlas of Worlds)"},{"type":"Shaped Villa Map","disc":"atlasofworlds","text":"Shaped Villa Map (Atlas of Worlds)"},{"type":"Volcano Map","disc":"atlasofworlds","text":"Volcano Map (Atlas of Worlds)"},{"type":"Wasteland Map","disc":"atlasofworlds","text":"Wasteland Map (Atlas of Worlds)"},{"type":"Waste Pool Map","disc":"atlasofworlds","text":"Waste Pool Map (Atlas of Worlds)"},{"type":"Shaped Waste Pool Map","disc":"atlasofworlds","text":"Shaped Waste Pool Map (Atlas of Worlds)"},{"type":"Waterways Map","disc":"atlasofworlds","text":"Waterways Map (Atlas of Worlds)"},{"type":"Wharf Map","disc":"atlasofworlds","text":"Wharf Map (Atlas of Worlds)"},{"type":"Shaped Wharf Map","disc":"atlasofworlds","text":"Shaped Wharf Map (Atlas of Worlds)"},{"name":"Acton's Nightmare","type":"Overgrown Shrine Map","disc":"theawakening","text":"Acton's Nightmare Overgrown Shrine Map (The Awakening)","flags":{"unique":true}},{"name":"Caer Blaidd, Wolfpack's Den","type":"Underground River Map","disc":"theawakening","text":"Caer Blaidd, Wolfpack's Den Underground River Map (The Awakening)","flags":{"unique":true}},{"name":"Death and Taxes","type":"Necropolis Map","disc":"theawakening","text":"Death and Taxes Necropolis Map (The Awakening)","flags":{"unique":true}},{"name":"Hall of Grandmasters","type":"Promenade Map","disc":"theawakening","text":"Hall of Grandmasters Promenade Map (The Awakening)","flags":{"unique":true}},{"name":"Maelstr\u00f6m of Chaos","type":"Atoll Map","disc":"theawakening","text":"Maelstr\u00f6m of Chaos Atoll Map (The Awakening)","flags":{"unique":true}},{"name":"Mao Kun","type":"Reef Map","disc":"theawakening","text":"Mao Kun Reef Map (The Awakening)","flags":{"unique":true}},{"name":"Oba's Cursed Trove","type":"Primordial Blocks Map","disc":"theawakening","text":"Oba's Cursed Trove Primordial Blocks Map (The Awakening)","flags":{"unique":true}},{"name":"Olmec's Sanctum","type":"Bone Crypt Map","disc":"theawakening","text":"Olmec's Sanctum Bone Crypt Map (The Awakening)","flags":{"unique":true}},{"name":"Poorjoy's Asylum","type":"Temple Map","disc":"theawakening","text":"Poorjoy's Asylum Temple Map (The Awakening)","flags":{"unique":true}},{"name":"The Coward's Trial","type":"Cursed Crypt Map","disc":"theawakening","text":"The Coward's Trial Cursed Crypt Map (The Awakening)","flags":{"unique":true}},{"name":"The Perandus Manor","type":"Chateau Map","disc":"theawakening","text":"The Perandus Manor Chateau Map (The Awakening)","flags":{"unique":true}},{"name":"The Vinktar Square","type":"Courtyard Map","disc":"theawakening","text":"The Vinktar Square Courtyard Map (The Awakening)","flags":{"unique":true}},{"name":"Vaults of Atziri","type":"Vaal Pyramid Map","disc":"theawakening","text":"Vaults of Atziri Vaal Pyramid Map (The Awakening)","flags":{"unique":true}},{"name":"Whakawairua Tuahu","type":"Strand Map","disc":"theawakening","text":"Whakawairua Tuahu Strand Map (The Awakening)","flags":{"unique":true}},{"type":"Necropolis Map","disc":"theawakening","text":"Necropolis Map (The Awakening)"},{"type":"Plateau Map","disc":"theawakening","text":"Plateau Map (The Awakening)"},{"type":"Bazaar Map","disc":"theawakening","text":"Bazaar Map (The Awakening)"},{"type":"Volcano Map","disc":"theawakening","text":"Volcano Map (The Awakening)"},{"type":"Chateau Map","disc":"theawakening","text":"Chateau Map (The Awakening)"},{"type":"Cursed Crypt Map","disc":"theawakening","text":"Cursed Crypt Map (The Awakening)"},{"type":"Lava Chamber Map","disc":"theawakening","text":"Lava Chamber Map (The Awakening)"},{"type":"Precinct Map","disc":"theawakening","text":"Precinct Map (The Awakening)"},{"type":"Academy Map","disc":"theawakening","text":"Academy Map (The Awakening)"},{"type":"Fungal Hollow Map","disc":"theawakening","text":"Fungal Hollow Map (The Awakening)"},{"type":"Dungeon Map","disc":"theawakening","text":"Dungeon Map (The Awakening)"},{"type":"Shipyard Map","disc":"theawakening","text":"Shipyard Map (The Awakening)"},{"type":"Overgrown Ruin Map","disc":"theawakening","text":"Overgrown Ruin Map (The Awakening)"},{"type":"Castle Ruins Map","disc":"theawakening","text":"Castle Ruins Map (The Awakening)"},{"type":"Arsenal Map","disc":"theawakening","text":"Arsenal Map (The Awakening)"},{"type":"Grotto Map","disc":"theawakening","text":"Grotto Map (The Awakening)"},{"type":"Wasteland Map","disc":"theawakening","text":"Wasteland Map (The Awakening)"},{"type":"Courtyard Map","disc":"theawakening","text":"Courtyard Map (The Awakening)"},{"type":"Excavation Map","disc":"theawakening","text":"Excavation Map (The Awakening)"},{"type":"Waterways Map","disc":"theawakening","text":"Waterways Map (The Awakening)"},{"type":"Dunes Map","disc":"theawakening","text":"Dunes Map (The Awakening)"},{"type":"Palace Map","disc":"theawakening","text":"Palace Map (The Awakening)"},{"type":"Shrine Map","disc":"theawakening","text":"Shrine Map (The Awakening)"},{"type":"Maze Map","disc":"theawakening","text":"Maze Map (The Awakening)"},{"type":"Vaal Temple Map","disc":"theawakening","text":"Vaal Temple Map (The Awakening)"},{"type":"Plaza Map","disc":"theawakening","text":"Plaza Map (The Awakening)"},{"type":"Pit Map","disc":"theawakening","text":"Pit Map (The Awakening)"},{"type":"Core Map","disc":"theawakening","text":"Core Map (The Awakening)"},{"type":"Caldera Map","disc":"theawakening","text":"Caldera Map (The Awakening)"},{"type":"Colosseum Map","disc":"theawakening","text":"Colosseum Map (The Awakening)"},{"type":"Tropical Island Map","disc":"theawakening","text":"Tropical Island Map (The Awakening)"},{"type":"Desert Map","disc":"theawakening","text":"Desert Map (The Awakening)"},{"type":"Toxic Sewer Map","disc":"theawakening","text":"Toxic Sewer Map (The Awakening)"},{"type":"Channel Map","disc":"theawakening","text":"Channel Map (The Awakening)"},{"type":"Thicket Map","disc":"theawakening","text":"Thicket Map (The Awakening)"},{"type":"Atoll Map","disc":"theawakening","text":"Atoll Map (The Awakening)"},{"type":"Cemetery Map","disc":"theawakening","text":"Cemetery Map (The Awakening)"},{"type":"Arcade Map","disc":"theawakening","text":"Arcade Map (The Awakening)"},{"type":"Wharf Map","disc":"theawakening","text":"Wharf Map (The Awakening)"},{"type":"Ghetto Map","disc":"theawakening","text":"Ghetto Map (The Awakening)"},{"type":"Spider Lair Map","disc":"theawakening","text":"Spider Lair Map (The Awakening)"},{"type":"Vaal Pyramid Map","disc":"theawakening","text":"Vaal Pyramid Map (The Awakening)"},{"type":"Reef Map","disc":"theawakening","text":"Reef Map (The Awakening)"},{"type":"Geode Map","disc":"theawakening","text":"Geode Map (The Awakening)"},{"type":"Mud Geyser Map","disc":"theawakening","text":"Mud Geyser Map (The Awakening)"},{"type":"Museum Map","disc":"theawakening","text":"Museum Map (The Awakening)"},{"type":"Arena Map","disc":"theawakening","text":"Arena Map (The Awakening)"},{"type":"Overgrown Shrine Map","disc":"theawakening","text":"Overgrown Shrine Map (The Awakening)"},{"type":"Crystal Ore Map","disc":"theawakening","text":"Crystal Ore Map (The Awakening)"},{"type":"Shore Map","disc":"theawakening","text":"Shore Map (The Awakening)"},{"type":"Spider Forest Map","disc":"theawakening","text":"Spider Forest Map (The Awakening)"},{"type":"Promenade Map","disc":"theawakening","text":"Promenade Map (The Awakening)"},{"type":"Phantasmagoria Map","disc":"theawakening","text":"Phantasmagoria Map (The Awakening)"},{"type":"Underground River Map","disc":"theawakening","text":"Underground River Map (The Awakening)"},{"type":"Pier Map","disc":"theawakening","text":"Pier Map (The Awakening)"},{"type":"Bog Map","disc":"theawakening","text":"Bog Map (The Awakening)"},{"type":"Graveyard Map","disc":"theawakening","text":"Graveyard Map (The Awakening)"},{"type":"Coves Map","disc":"theawakening","text":"Coves Map (The Awakening)"},{"type":"Villa Map","disc":"theawakening","text":"Villa Map (The Awakening)"},{"type":"Temple Map","disc":"theawakening","text":"Temple Map (The Awakening)"},{"type":"Arachnid Nest Map","disc":"theawakening","text":"Arachnid Nest Map (The Awakening)"},{"type":"Strand Map","disc":"theawakening","text":"Strand Map (The Awakening)"},{"type":"Ashen Wood Map","disc":"theawakening","text":"Ashen Wood Map (The Awakening)"},{"type":"Colonnade Map","disc":"theawakening","text":"Colonnade Map (The Awakening)"},{"type":"Bone Crypt Map","disc":"theawakening","text":"Bone Crypt Map (The Awakening)"},{"type":"Primordial Blocks Map","disc":"theawakening","text":"Primordial Blocks Map (The Awakening)"},{"type":"Waste Pool Map","disc":"theawakening","text":"Waste Pool Map (The Awakening)"},{"type":"Flooded Mine Map","disc":"theawakening","text":"Flooded Mine Map (The Awakening)"},{"type":"Jungle Valley Map","disc":"theawakening","text":"Jungle Valley Map (The Awakening)"},{"type":"Gardens Map","disc":"theawakening","text":"Gardens Map (The Awakening)"},{"type":"Cells Map","disc":"theawakening","text":"Cells Map (The Awakening)"},{"type":"Canyon Map","disc":"theawakening","text":"Canyon Map (The Awakening)"},{"type":"Dark Forest Map","disc":"theawakening","text":"Dark Forest Map (The Awakening)"},{"type":"Peninsula Map","disc":"theawakening","text":"Peninsula Map (The Awakening)"},{"type":"Orchard Map","disc":"theawakening","text":"Orchard Map (The Awakening)"},{"type":"Underground Sea Map","disc":"theawakening","text":"Underground Sea Map (The Awakening)"},{"type":"Arid Lake Map","disc":"theawakening","text":"Arid Lake Map (The Awakening)"},{"type":"Glacier Map","disc":"theawakening","text":"Glacier Map (The Awakening)"},{"type":"Residence Map","disc":"theawakening","text":"Residence Map (The Awakening)"},{"type":"Malformation Map","disc":"theawakening","text":"Malformation Map (The Awakening)"},{"name":"Acton's Nightmare","type":"Overgrown Shrine Map","disc":"original","text":"Acton's Nightmare Overgrown Shrine Map (Legacy)","flags":{"unique":true}},{"name":"Death and Taxes","type":"Necropolis Map","disc":"original","text":"Death and Taxes Necropolis Map (Legacy)","flags":{"unique":true}},{"name":"Hall of Grandmasters","type":"Promenade Map","disc":"original","text":"Hall of Grandmasters Promenade Map (Legacy)","flags":{"unique":true}},{"name":"Maelstr\u00f6m of Chaos","type":"Atoll Map","disc":"original","text":"Maelstr\u00f6m of Chaos Atoll Map (Legacy)","flags":{"unique":true}},{"name":"Mao Kun","type":"Reef Map","disc":"original","text":"Mao Kun Reef Map (Legacy)","flags":{"unique":true}},{"name":"Oba's Cursed Trove","type":"Primordial Blocks Map","disc":"original","text":"Oba's Cursed Trove Primordial Blocks Map (Legacy)","flags":{"unique":true}},{"name":"Olmec's Sanctum","type":"Maze Map","disc":"original","text":"Olmec's Sanctum Maze Map (Legacy)","flags":{"unique":true}},{"name":"Poorjoy's Asylum","type":"Temple Map","disc":"original","text":"Poorjoy's Asylum Temple Map (Legacy)","flags":{"unique":true}},{"name":"The Coward's Trial","type":"Cursed Crypt Map","disc":"original","text":"The Coward's Trial Cursed Crypt Map (Legacy)","flags":{"unique":true}},{"name":"Vaults of Atziri","type":"Vaal Pyramid Map","disc":"original","text":"Vaults of Atziri Vaal Pyramid Map (Legacy)","flags":{"unique":true}},{"name":"Whakawairua Tuahu","type":"Strand Map","disc":"original","text":"Whakawairua Tuahu Strand Map (Legacy)","flags":{"unique":true}},{"type":"Necropolis Map","disc":"original","text":"Necropolis Map (Legacy)"},{"type":"Plateau Map","disc":"original","text":"Plateau Map (Legacy)"},{"type":"Bazaar Map","disc":"original","text":"Bazaar Map (Legacy)"},{"type":"Cursed Crypt Map","disc":"original","text":"Cursed Crypt Map (Legacy)"},{"type":"Lava Chamber Map","disc":"original","text":"Lava Chamber Map (Legacy)"},{"type":"Precinct Map","disc":"original","text":"Precinct Map (Legacy)"},{"type":"Academy Map","disc":"original","text":"Academy Map (Legacy)"},{"type":"Dungeon Map","disc":"original","text":"Dungeon Map (Legacy)"},{"type":"Shipyard Map","disc":"original","text":"Shipyard Map (Legacy)"},{"type":"Shrine Map","disc":"original","text":"Shrine Map (Legacy)"},{"type":"Grotto Map","disc":"original","text":"Grotto Map (Legacy)"},{"type":"Palace Map","disc":"original","text":"Palace Map (Legacy)"},{"type":"Courtyard Map","disc":"original","text":"Courtyard Map (Legacy)"},{"type":"Overgrown Ruin Map","disc":"original","text":"Overgrown Ruin Map (Legacy)"},{"type":"Vaal Temple Map","disc":"original","text":"Vaal Temple Map (Legacy)"},{"type":"Dunes Map","disc":"original","text":"Dunes Map (Legacy)"},{"type":"Arid Lake Map","disc":"original","text":"Arid Lake Map (Legacy)"},{"type":"Tropical Island Map","disc":"original","text":"Tropical Island Map (Legacy)"},{"type":"Orchard Map","disc":"original","text":"Orchard Map (Legacy)"},{"type":"Wharf Map","disc":"original","text":"Wharf Map (Legacy)"},{"type":"Arsenal Map","disc":"original","text":"Arsenal Map (Legacy)"},{"type":"Thicket Map","disc":"original","text":"Thicket Map (Legacy)"},{"type":"Atoll Map","disc":"original","text":"Atoll Map (Legacy)"},{"type":"Cemetery Map","disc":"original","text":"Cemetery Map (Legacy)"},{"type":"Toxic Sewer Map","disc":"original","text":"Toxic Sewer Map (Legacy)"},{"type":"Arcade Map","disc":"original","text":"Arcade Map (Legacy)"},{"type":"Ghetto Map","disc":"original","text":"Ghetto Map (Legacy)"},{"type":"Spider Lair Map","disc":"original","text":"Spider Lair Map (Legacy)"},{"type":"Vaal Pyramid Map","disc":"original","text":"Vaal Pyramid Map (Legacy)"},{"type":"Reef Map","disc":"original","text":"Reef Map (Legacy)"},{"type":"Fungal Hollow Map","disc":"original","text":"Fungal Hollow Map (Legacy)"},{"type":"Mud Geyser Map","disc":"original","text":"Mud Geyser Map (Legacy)"},{"type":"Museum Map","disc":"original","text":"Museum Map (Legacy)"},{"type":"Bone Crypt Map","disc":"original","text":"Bone Crypt Map (Legacy)"},{"type":"Overgrown Shrine Map","disc":"original","text":"Overgrown Shrine Map (Legacy)"},{"type":"Crystal Ore Map","disc":"original","text":"Crystal Ore Map (Legacy)"},{"type":"Shore Map","disc":"original","text":"Shore Map (Legacy)"},{"type":"Spider Forest Map","disc":"original","text":"Spider Forest Map (Legacy)"},{"type":"Promenade Map","disc":"original","text":"Promenade Map (Legacy)"},{"type":"Underground River Map","disc":"original","text":"Underground River Map (Legacy)"},{"type":"Pier Map","disc":"original","text":"Pier Map (Legacy)"},{"type":"Bog Map","disc":"original","text":"Bog Map (Legacy)"},{"type":"Graveyard Map","disc":"original","text":"Graveyard Map (Legacy)"},{"type":"Coves Map","disc":"original","text":"Coves Map (Legacy)"},{"type":"Villa Map","disc":"original","text":"Villa Map (Legacy)"},{"type":"Temple Map","disc":"original","text":"Temple Map (Legacy)"},{"type":"Arachnid Nest Map","disc":"original","text":"Arachnid Nest Map (Legacy)"},{"type":"Strand Map","disc":"original","text":"Strand Map (Legacy)"},{"type":"Ashen Wood Map","disc":"original","text":"Ashen Wood Map (Legacy)"},{"type":"Colonnade Map","disc":"original","text":"Colonnade Map (Legacy)"},{"type":"Primordial Blocks Map","disc":"original","text":"Primordial Blocks Map (Legacy)"},{"type":"Waste Pool Map","disc":"original","text":"Waste Pool Map (Legacy)"},{"type":"Flooded Mine Map","disc":"original","text":"Flooded Mine Map (Legacy)"},{"type":"Jungle Valley Map","disc":"original","text":"Jungle Valley Map (Legacy)"},{"type":"Gardens Map","disc":"original","text":"Gardens Map (Legacy)"},{"type":"Cells Map","disc":"original","text":"Cells Map (Legacy)"},{"type":"Canyon Map","disc":"original","text":"Canyon Map (Legacy)"},{"type":"Dark Forest Map","disc":"original","text":"Dark Forest Map (Legacy)"},{"type":"Peninsula Map","disc":"original","text":"Peninsula Map (Legacy)"},{"type":"Underground Sea Map","disc":"original","text":"Underground Sea Map (Legacy)"},{"type":"Maze Map","disc":"original","text":"Maze Map (Legacy)"},{"type":"Glacier Map","disc":"original","text":"Glacier Map (Legacy)"},{"type":"Residence Map","disc":"original","text":"Residence Map (Legacy)"},{"type":"Offering to the Goddess","text":"Offering to the Goddess"},{"type":"Timeworn Reliquary Key","text":"Timeworn Reliquary Key"},{"type":"Chayula's Breachstone","text":"Chayula's Breachstone"},{"type":"Tul's Breachstone","text":"Tul's Breachstone"},{"type":"Xoph's Breachstone","text":"Xoph's Breachstone"},{"type":"Esh's Breachstone","text":"Esh's Breachstone"},{"type":"Uul-Netol's Breachstone","text":"Uul-Netol's Breachstone"},{"type":"Ancient Reliquary Key","text":"Ancient Reliquary Key"},{"type":"Simulacrum","text":"Simulacrum"},{"type":"Chayula's Charged Breachstone","text":"Chayula's Charged Breachstone"},{"type":"Chayula's Enriched Breachstone","text":"Chayula's Enriched Breachstone"},{"type":"Chayula's Pure Breachstone","text":"Chayula's Pure Breachstone"},{"type":"Tul's Charged Breachstone","text":"Tul's Charged Breachstone"},{"type":"Tul's Enriched Breachstone","text":"Tul's Enriched Breachstone"},{"type":"Tul's Pure Breachstone","text":"Tul's Pure Breachstone"},{"type":"Xoph's Charged Breachstone","text":"Xoph's Charged Breachstone"},{"type":"Xoph's Enriched Breachstone","text":"Xoph's Enriched Breachstone"},{"type":"Xoph's Pure Breachstone","text":"Xoph's Pure Breachstone"},{"type":"Esh's Charged Breachstone","text":"Esh's Charged Breachstone"},{"type":"Esh's Enriched Breachstone","text":"Esh's Enriched Breachstone"},{"type":"Esh's Pure Breachstone","text":"Esh's Pure Breachstone"},{"type":"Uul-Netol's Charged Breachstone","text":"Uul-Netol's Charged Breachstone"},{"type":"Uul-Netol's Enriched Breachstone","text":"Uul-Netol's Enriched Breachstone"},{"type":"Uul-Netol's Pure Breachstone","text":"Uul-Netol's Pure Breachstone"},{"type":"Fragment of Enslavement","text":"Fragment of Enslavement"},{"type":"Fragment of Eradication","text":"Fragment of Eradication"},{"type":"Fragment of Constriction","text":"Fragment of Constriction"},{"type":"Fragment of Purification","text":"Fragment of Purification"},{"type":"Divine Vessel","text":"Divine Vessel"},{"type":"Timeless Eternal Emblem","text":"Timeless Eternal Emblem"},{"type":"Timeless Karui Emblem","text":"Timeless Karui Emblem"},{"type":"Timeless Maraketh Emblem","text":"Timeless Maraketh Emblem"},{"type":"Timeless Templar Emblem","text":"Timeless Templar Emblem"},{"type":"Timeless Vaal Emblem","text":"Timeless Vaal Emblem"},{"type":"Dedication to the Goddess","text":"Dedication to the Goddess"},{"type":"Gift to the Goddess","text":"Gift to the Goddess"},{"type":"Tribute to the Goddess","text":"Tribute to the Goddess"},{"type":"Eber's Key","text":"Eber's Key"},{"type":"Yriel's Key","text":"Yriel's Key"},{"type":"Inya's Key","text":"Inya's Key"},{"type":"Volkuur's Key","text":"Volkuur's Key"},{"type":"Fragment of the Phoenix","text":"Fragment of the Phoenix"},{"type":"Fragment of the Minotaur","text":"Fragment of the Minotaur"},{"type":"Fragment of the Chimera","text":"Fragment of the Chimera"},{"type":"Fragment of the Hydra","text":"Fragment of the Hydra"},{"type":"Fragment of Terror","text":"Fragment of Terror"},{"type":"Fragment of Emptiness","text":"Fragment of Emptiness"},{"type":"Fragment of Shape","text":"Fragment of Shape"},{"type":"Fragment of Knowledge","text":"Fragment of Knowledge"},{"type":"Sacrifice at Midnight","text":"Sacrifice at Midnight"},{"type":"Sacrifice at Dawn","text":"Sacrifice at Dawn"},{"type":"Sacrifice at Noon","text":"Sacrifice at Noon"},{"type":"Sacrifice at Dusk","text":"Sacrifice at Dusk"},{"type":"Mortal Rage","text":"Mortal Rage"},{"type":"Mortal Hope","text":"Mortal Hope"},{"type":"Mortal Ignorance","text":"Mortal Ignorance"},{"type":"Mortal Grief","text":"Mortal Grief"},{"type":"Rusted Bestiary Scarab","text":"Rusted Bestiary Scarab"},{"type":"Polished Bestiary Scarab","text":"Polished Bestiary Scarab"},{"type":"Gilded Bestiary Scarab","text":"Gilded Bestiary Scarab"},{"type":"Winged Bestiary Scarab","text":"Winged Bestiary Scarab"},{"type":"Farric Lure","text":"Farric Lure"},{"type":"Saqawine Lure","text":"Saqawine Lure"},{"type":"Fenumal Lure","text":"Fenumal Lure"},{"type":"Craicic Lure","text":"Craicic Lure"},{"type":"Rusted Breach Scarab","text":"Rusted Breach Scarab"},{"type":"Polished Breach Scarab","text":"Polished Breach Scarab"},{"type":"Gilded Breach Scarab","text":"Gilded Breach Scarab"},{"type":"Winged Breach Scarab","text":"Winged Breach Scarab"},{"type":"Rusted Divination Scarab","text":"Rusted Divination Scarab"},{"type":"Polished Divination Scarab","text":"Polished Divination Scarab"},{"type":"Gilded Divination Scarab","text":"Gilded Divination Scarab"},{"type":"Winged Divination Scarab","text":"Winged Divination Scarab"},{"type":"Rusted Elder Scarab","text":"Rusted Elder Scarab"},{"type":"Polished Elder Scarab","text":"Polished Elder Scarab"},{"type":"Gilded Elder Scarab","text":"Gilded Elder Scarab"},{"type":"Winged Elder Scarab","text":"Winged Elder Scarab"},{"type":"Rusted Harbinger Scarab","text":"Rusted Harbinger Scarab"},{"type":"Polished Harbinger Scarab","text":"Polished Harbinger Scarab"},{"type":"Gilded Harbinger Scarab","text":"Gilded Harbinger Scarab"},{"type":"Winged Harbinger Scarab","text":"Winged Harbinger Scarab"},{"type":"Rusted Legion Scarab","text":"Rusted Legion Scarab"},{"type":"Polished Legion Scarab","text":"Polished Legion Scarab"},{"type":"Gilded Legion Scarab","text":"Gilded Legion Scarab"},{"type":"Winged Legion Scarab","text":"Winged Legion Scarab"},{"type":"Rusted Cartography Scarab","text":"Rusted Cartography Scarab"},{"type":"Polished Cartography Scarab","text":"Polished Cartography Scarab"},{"type":"Gilded Cartography Scarab","text":"Gilded Cartography Scarab"},{"type":"Winged Cartography Scarab","text":"Winged Cartography Scarab"},{"type":"Rusted Metamorph Scarab","text":"Rusted Metamorph Scarab"},{"type":"Polished Metamorph Scarab","text":"Polished Metamorph Scarab"},{"type":"Gilded Metamorph Scarab","text":"Gilded Metamorph Scarab"},{"type":"Winged Metamorph Scarab","text":"Winged Metamorph Scarab"},{"type":"Rusted Perandus Scarab","text":"Rusted Perandus Scarab"},{"type":"Polished Perandus Scarab","text":"Polished Perandus Scarab"},{"type":"Gilded Perandus Scarab","text":"Gilded Perandus Scarab"},{"type":"Winged Perandus Scarab","text":"Winged Perandus Scarab"},{"type":"Rusted Shaper Scarab","text":"Rusted Shaper Scarab"},{"type":"Polished Shaper Scarab","text":"Polished Shaper Scarab"},{"type":"Gilded Shaper Scarab","text":"Gilded Shaper Scarab"},{"type":"Winged Shaper Scarab","text":"Winged Shaper Scarab"},{"type":"Rusted Ambush Scarab","text":"Rusted Ambush Scarab"},{"type":"Polished Ambush Scarab","text":"Polished Ambush Scarab"},{"type":"Gilded Ambush Scarab","text":"Gilded Ambush Scarab"},{"type":"Winged Ambush Scarab","text":"Winged Ambush Scarab"},{"type":"Rusted Sulphite Scarab","text":"Rusted Sulphite Scarab"},{"type":"Polished Sulphite Scarab","text":"Polished Sulphite Scarab"},{"type":"Gilded Sulphite Scarab","text":"Gilded Sulphite Scarab"},{"type":"Winged Sulphite Scarab","text":"Winged Sulphite Scarab"},{"type":"Rusted Torment Scarab","text":"Rusted Torment Scarab"},{"type":"Polished Torment Scarab","text":"Polished Torment Scarab"},{"type":"Gilded Torment Scarab","text":"Gilded Torment Scarab"},{"type":"Winged Torment Scarab","text":"Winged Torment Scarab"},{"type":"Rusted Reliquary Scarab","text":"Rusted Reliquary Scarab"},{"type":"Polished Reliquary Scarab","text":"Polished Reliquary Scarab"},{"type":"Gilded Reliquary Scarab","text":"Gilded Reliquary Scarab"},{"type":"Winged Reliquary Scarab","text":"Winged Reliquary Scarab"}]},{"label":"Weapons","entries":[{"name":"Abberath's Horn","type":"Goat's Horn","text":"Abberath's Horn Goat's Horn","flags":{"unique":true}},{"name":"Advancing Fortress","type":"Gut Ripper","text":"Advancing Fortress Gut Ripper","flags":{"unique":true}},{"name":"Agnerod","type":"Imperial Staff","text":"Agnerod Imperial Staff","flags":{"unique":true}},{"name":"Agnerod East","type":"Imperial Staff","text":"Agnerod East Imperial Staff","flags":{"unique":true}},{"name":"Agnerod North","type":"Imperial Staff","text":"Agnerod North Imperial Staff","flags":{"unique":true}},{"name":"Agnerod South","type":"Imperial Staff","text":"Agnerod South Imperial Staff","flags":{"unique":true}},{"name":"Agnerod West","type":"Imperial Staff","text":"Agnerod West Imperial Staff","flags":{"unique":true}},{"name":"Ahn's Might","type":"Midnight Blade","text":"Ahn's Might Midnight Blade","flags":{"unique":true}},{"name":"Al Dhih","type":"Timeworn Claw","text":"Al Dhih Timeworn Claw","flags":{"unique":true}},{"name":"Allure","type":"Vaal Claw","text":"Allure Vaal Claw","flags":{"unique":true}},{"name":"Amplification Rod","type":"Spiraled Wand","text":"Amplification Rod Spiraled Wand","flags":{"unique":true}},{"name":"Apep's Rage","type":"Opal Wand","text":"Apep's Rage Opal Wand","flags":{"unique":true}},{"name":"Arakaali's Fang","type":"Fiend Dagger","text":"Arakaali's Fang Fiend Dagger","flags":{"unique":true}},{"name":"Arborix","type":"Assassin Bow","text":"Arborix Assassin Bow","flags":{"unique":true}},{"name":"Ashcaller","type":"Quartz Wand","text":"Ashcaller Quartz Wand","flags":{"unique":true}},{"name":"Atziri's Disfavour","type":"Vaal Axe","text":"Atziri's Disfavour Vaal Axe","flags":{"unique":true}},{"name":"Augyre","type":"Void Sceptre","text":"Augyre Void Sceptre","flags":{"unique":true}},{"name":"Aurumvorax","type":"Basket Rapier","text":"Aurumvorax Basket Rapier","flags":{"unique":true}},{"name":"Axiom Perpetuum","type":"Bronze Sceptre","text":"Axiom Perpetuum Bronze Sceptre","flags":{"unique":true}},{"name":"Balefire","type":"Opal Sceptre","text":"Balefire Opal Sceptre","flags":{"unique":true}},{"name":"Beltimber Blade","type":"Eternal Sword","text":"Beltimber Blade Eternal Sword","flags":{"unique":true}},{"name":"Bino's Kitchen Knife","type":"Slaughter Knife","text":"Bino's Kitchen Knife Slaughter Knife","flags":{"unique":true}},{"name":"Bitterdream","type":"Shadow Sceptre","text":"Bitterdream Shadow Sceptre","flags":{"unique":true}},{"name":"Bloodplay","type":"Stiletto","text":"Bloodplay Stiletto","flags":{"unique":true}},{"name":"Bloodseeker","type":"Hellion's Paw","text":"Bloodseeker Hellion's Paw","flags":{"unique":true}},{"name":"Brain Rattler","type":"Meatgrinder","text":"Brain Rattler Meatgrinder","flags":{"unique":true}},{"name":"Breath of the Council","type":"Carnal Sceptre","text":"Breath of the Council Carnal Sceptre","flags":{"unique":true}},{"name":"Brightbeak","type":"War Hammer","text":"Brightbeak War Hammer","flags":{"unique":true}},{"name":"Brutus' Lead Sprinkler","type":"Ritual Sceptre","text":"Brutus' Lead Sprinkler Ritual Sceptre","flags":{"unique":true}},{"name":"Callinellus Malleus","type":"Auric Mace","text":"Callinellus Malleus Auric Mace","flags":{"unique":true}},{"name":"Cameria's Avarice","type":"Gavel","text":"Cameria's Avarice Gavel","flags":{"unique":true}},{"name":"Cameria's Maul","type":"Gavel","text":"Cameria's Maul Gavel","flags":{"unique":true}},{"name":"Cane of Unravelling","type":"Ezomyte Staff","text":"Cane of Unravelling Ezomyte Staff","flags":{"unique":true}},{"name":"Cerberus Limb","type":"Blood Sceptre","text":"Cerberus Limb Blood Sceptre","flags":{"unique":true}},{"name":"Chaber Cairn","type":"Great Mallet","text":"Chaber Cairn Great Mallet","flags":{"unique":true}},{"name":"Chin Sol","type":"Assassin Bow","text":"Chin Sol Assassin Bow","flags":{"unique":true}},{"name":"Chitus' Needle","type":"Elegant Foil","text":"Chitus' Needle Elegant Foil","flags":{"unique":true}},{"name":"Chober Chaber","type":"Great Mallet","text":"Chober Chaber Great Mallet","flags":{"unique":true}},{"name":"Clayshaper","type":"Rock Breaker","text":"Clayshaper Rock Breaker","flags":{"unique":true}},{"name":"Cold Iron Point","type":"Ezomyte Dagger","text":"Cold Iron Point Ezomyte Dagger","flags":{"unique":true}},{"name":"Corona Solaris","type":"Crystal Wand","text":"Corona Solaris Crystal Wand","flags":{"unique":true}},{"name":"Cospri's Malice","type":"Jewelled Foil","text":"Cospri's Malice Jewelled Foil","flags":{"unique":true}},{"name":"Cybil's Paw","type":"Thresher Claw","text":"Cybil's Paw Thresher Claw","flags":{"unique":true}},{"name":"Daresso's Passion","type":"Estoc","text":"Daresso's Passion Estoc","flags":{"unique":true}},{"name":"Darkscorn","type":"Assassin Bow","text":"Darkscorn Assassin Bow","flags":{"unique":true}},{"name":"Death's Hand","type":"Karui Sceptre","text":"Death's Hand Karui Sceptre","flags":{"unique":true}},{"name":"Death's Harp","type":"Death Bow","text":"Death's Harp Death Bow","flags":{"unique":true}},{"name":"Death's Opus","type":"Death Bow","text":"Death's Opus Death Bow","flags":{"unique":true}},{"name":"Debeon's Dirge","type":"Despot Axe","text":"Debeon's Dirge Despot Axe","flags":{"unique":true}},{"name":"Disintegrator","type":"Maelstr\u00f6m Staff","text":"Disintegrator Maelstr\u00f6m Staff","flags":{"unique":true}},{"name":"Divinarius","type":"Imperial Skean","text":"Divinarius Imperial Skean","flags":{"unique":true}},{"name":"Doomfletch","type":"Royal Bow","text":"Doomfletch Royal Bow","flags":{"unique":true}},{"name":"Doomfletch's Prism","type":"Royal Bow","text":"Doomfletch's Prism Royal Bow","flags":{"unique":true}},{"name":"Doomsower","type":"Lion Sword","text":"Doomsower Lion Sword","flags":{"unique":true}},{"name":"Doon Cuebiyari","type":"Vaal Sceptre","text":"Doon Cuebiyari Vaal Sceptre","flags":{"unique":true}},{"name":"Doryani's Catalyst","type":"Vaal Sceptre","text":"Doryani's Catalyst Vaal Sceptre","flags":{"unique":true}},{"name":"Dreadarc","type":"Cleaver","text":"Dreadarc Cleaver","flags":{"unique":true}},{"name":"Dreadbeak","type":"Rusted Sword","text":"Dreadbeak Rusted Sword","flags":{"unique":true}},{"name":"Dreadsurge","type":"Cleaver","text":"Dreadsurge Cleaver","flags":{"unique":true}},{"name":"Dreamfeather","type":"Eternal Sword","text":"Dreamfeather Eternal Sword","flags":{"unique":true}},{"name":"Duskdawn","type":"Maelstr\u00f6m Staff","text":"Duskdawn Maelstr\u00f6m Staff","flags":{"unique":true}},{"name":"Dyadus","type":"Infernal Axe","text":"Dyadus Infernal Axe","flags":{"unique":true}},{"name":"Dying Breath","type":"Iron Staff","text":"Dying Breath Iron Staff","flags":{"unique":true}},{"name":"Dying Breath","type":"Coiled Staff","text":"Dying Breath Coiled Staff","flags":{"unique":true}},{"name":"Earendel's Embrace","type":"Grinning Fetish","text":"Earendel's Embrace Grinning Fetish","flags":{"unique":true}},{"name":"Eclipse Solaris","type":"Crystal Wand","text":"Eclipse Solaris Crystal Wand","flags":{"unique":true}},{"name":"Edge of Madness","type":"Etched Greatsword","text":"Edge of Madness Etched Greatsword","flags":{"unique":true}},{"name":"Ephemeral Edge","type":"Dusk Blade","text":"Ephemeral Edge Dusk Blade","flags":{"unique":true}},{"name":"Essentia Sanguis","type":"Eye Gouger","text":"Essentia Sanguis Eye Gouger","flags":{"unique":true}},{"name":"Essentia Sanguis","type":"Vaal Claw","text":"Essentia Sanguis Vaal Claw","flags":{"unique":true}},{"name":"Ewar's Mirage","type":"Antique Rapier","text":"Ewar's Mirage Antique Rapier","flags":{"unique":true}},{"name":"Fate of the Vaal","type":"Gemstone Sword","text":"Fate of the Vaal Gemstone Sword","flags":{"unique":true}},{"name":"Femurs of the Saints","type":"Primordial Staff","text":"Femurs of the Saints Primordial Staff","flags":{"unique":true}},{"name":"Fencoil","type":"Gnarled Branch","text":"Fencoil Gnarled Branch","flags":{"unique":true}},{"name":"Fidelitas' Spike","type":"Jagged Foil","text":"Fidelitas' Spike Jagged Foil","flags":{"unique":true}},{"name":"Flesh-Eater","type":"Dream Mace","text":"Flesh-Eater Dream Mace","flags":{"unique":true}},{"name":"Frostbreath","type":"Ornate Mace","text":"Frostbreath Ornate Mace","flags":{"unique":true}},{"name":"Geofri's Baptism","type":"Brass Maul","text":"Geofri's Baptism Brass Maul","flags":{"unique":true}},{"name":"Geofri's Devotion","type":"Brass Maul","text":"Geofri's Devotion Brass Maul","flags":{"unique":true}},{"name":"Gorebreaker","type":"Spiked Club","text":"Gorebreaker Spiked Club","flags":{"unique":true}},{"name":"Goredrill","type":"Skinning Knife","text":"Goredrill Skinning Knife","flags":{"unique":true}},{"name":"Grelwood Shank","type":"Eternal Sword","text":"Grelwood Shank Eternal Sword","flags":{"unique":true}},{"name":"Hand of Thought and Motion","type":"Blinder","text":"Hand of Thought and Motion Blinder","flags":{"unique":true}},{"name":"Hand of Wisdom and Action","type":"Imperial Claw","text":"Hand of Wisdom and Action Imperial Claw","flags":{"unique":true}},{"name":"Heartbreaker","type":"Royal Skean","text":"Heartbreaker Royal Skean","flags":{"unique":true}},{"name":"Hegemony's Era","type":"Judgement Staff","text":"Hegemony's Era Judgement Staff","flags":{"unique":true}},{"name":"Hezmana's Bloodlust","type":"Vaal Axe","text":"Hezmana's Bloodlust Vaal Axe","flags":{"unique":true}},{"name":"Hiltless","type":"Reaver Sword","text":"Hiltless Reaver Sword","flags":{"unique":true}},{"name":"Hopeshredder","type":"Ranger Bow","text":"Hopeshredder Ranger Bow","flags":{"unique":true}},{"name":"Hrimnor's Dirge","type":"Sledgehammer","text":"Hrimnor's Dirge Sledgehammer","flags":{"unique":true}},{"name":"Hrimnor's Hymn","type":"Sledgehammer","text":"Hrimnor's Hymn Sledgehammer","flags":{"unique":true}},{"name":"Hyaon's Fury","type":"Legion Sword","text":"Hyaon's Fury Legion Sword","flags":{"unique":true}},{"name":"Ichimonji","type":"Corsair Sword","text":"Ichimonji Corsair Sword","flags":{"unique":true}},{"name":"Infractem","type":"Decimation Bow","text":"Infractem Decimation Bow","flags":{"unique":true}},{"name":"Innsbury Edge","type":"Elder Sword","text":"Innsbury Edge Elder Sword","flags":{"unique":true}},{"name":"Iron Commander","type":"Death Bow","text":"Iron Commander Death Bow","flags":{"unique":true}},{"name":"Izaro's Dilemma","type":"Imperial Claw","text":"Izaro's Dilemma Imperial Claw","flags":{"unique":true}},{"name":"Jack, the Axe","type":"Vaal Hatchet","text":"Jack, the Axe Vaal Hatchet","flags":{"unique":true}},{"name":"Jorrhast's Blacksteel","type":"Steelhead","text":"Jorrhast's Blacksteel Steelhead","flags":{"unique":true}},{"name":"Kaom's Primacy","type":"Karui Chopper","text":"Kaom's Primacy Karui Chopper","flags":{"unique":true}},{"name":"Kingmaker","type":"Despot Axe","text":"Kingmaker Despot Axe","flags":{"unique":true}},{"name":"Kitava's Feast","type":"Void Axe","text":"Kitava's Feast Void Axe","flags":{"unique":true}},{"name":"Kondo's Pride","type":"Ezomyte Blade","text":"Kondo's Pride Ezomyte Blade","flags":{"unique":true}},{"name":"Kongor's Undying Rage","type":"Terror Maul","text":"Kongor's Undying Rage Terror Maul","flags":{"unique":true}},{"name":"Lakishu's Blade","type":"Elegant Sword","text":"Lakishu's Blade Elegant Sword","flags":{"unique":true}},{"name":"Last Resort","type":"Nailed Fist","text":"Last Resort Nailed Fist","flags":{"unique":true}},{"name":"Lavianga's Wisdom","type":"War Hammer","text":"Lavianga's Wisdom War Hammer","flags":{"unique":true}},{"name":"Law of the Wilds","type":"Hellion's Paw","text":"Law of the Wilds Hellion's Paw","flags":{"unique":true}},{"name":"Lifesprig","type":"Driftwood Wand","text":"Lifesprig Driftwood Wand","flags":{"unique":true}},{"name":"Limbsplit","type":"Woodsplitter","text":"Limbsplit Woodsplitter","flags":{"unique":true}},{"name":"Lioneye's Glare","type":"Imperial Bow","text":"Lioneye's Glare Imperial Bow","flags":{"unique":true}},{"name":"Mark of the Doubting Knight","type":"Platinum Kris","text":"Mark of the Doubting Knight Platinum Kris","flags":{"unique":true}},{"name":"Marohi Erqi","type":"Karui Maul","text":"Marohi Erqi Karui Maul","flags":{"unique":true}},{"name":"Martyr of Innocence","type":"Highborn Staff","text":"Martyr of Innocence Highborn Staff","flags":{"unique":true}},{"name":"Midnight Bargain","type":"Engraved Wand","text":"Midnight Bargain Engraved Wand","flags":{"unique":true}},{"name":"Mightflay","type":"Flaying Knife","text":"Mightflay Flaying Knife","flags":{"unique":true}},{"name":"Mirebough","type":"Gnarled Branch","text":"Mirebough Gnarled Branch","flags":{"unique":true}},{"name":"Mj\u00f6lner","type":"Gavel","text":"Mj\u00f6lner Gavel","flags":{"unique":true}},{"name":"Mon'tregul's Grasp","type":"Void Sceptre","text":"Mon'tregul's Grasp Void Sceptre","flags":{"unique":true}},{"name":"Moonbender's Wing","type":"Tomahawk","text":"Moonbender's Wing Tomahawk","flags":{"unique":true}},{"name":"Moonsorrow","type":"Imbued Wand","text":"Moonsorrow Imbued Wand","flags":{"unique":true}},{"name":"Mortem Morsu","type":"Fright Claw","text":"Mortem Morsu Fright Claw","flags":{"unique":true}},{"name":"Nebulis","type":"Void Sceptre","text":"Nebulis Void Sceptre","flags":{"unique":true}},{"name":"Nebuloch","type":"Nightmare Mace","text":"Nebuloch Nightmare Mace","flags":{"unique":true}},{"name":"Ngamahu's Flame","type":"Abyssal Axe","text":"Ngamahu's Flame Abyssal Axe","flags":{"unique":true}},{"name":"Null's Inclination","type":"Ranger Bow","text":"Null's Inclination Ranger Bow","flags":{"unique":true}},{"name":"Nuro's Harp","type":"Harbinger Bow","text":"Nuro's Harp Harbinger Bow","flags":{"unique":true}},{"name":"Nycta's Lantern","type":"Crystal Sceptre","text":"Nycta's Lantern Crystal Sceptre","flags":{"unique":true}},{"name":"Obliteration","type":"Demon's Horn","text":"Obliteration Demon's Horn","flags":{"unique":true}},{"name":"Oni-Goroshi","type":"Charan's Sword","text":"Oni-Goroshi Charan's Sword","flags":{"unique":true}},{"name":"Ornament of the East","type":"Gut Ripper","text":"Ornament of the East Gut Ripper","flags":{"unique":true}},{"name":"Oro's Sacrifice","type":"Infernal Sword","text":"Oro's Sacrifice Infernal Sword","flags":{"unique":true}},{"name":"Panquetzaliztli","type":"Jagged Maul","text":"Panquetzaliztli Jagged Maul","flags":{"unique":true}},{"name":"Paradoxica","type":"Vaal Rapier","text":"Paradoxica Vaal Rapier","flags":{"unique":true}},{"name":"Pillar of the Caged God","type":"Long Staff","text":"Pillar of the Caged God Long Staff","flags":{"unique":true}},{"name":"Pillar of the Caged God","type":"Iron Staff","text":"Pillar of the Caged God Iron Staff","flags":{"unique":true}},{"name":"Piscator's Vigil","type":"Tornado Wand","text":"Piscator's Vigil Tornado Wand","flags":{"unique":true}},{"name":"Pledge of Hands","type":"Judgement Staff","text":"Pledge of Hands Judgement Staff","flags":{"unique":true}},{"name":"Prismatic Eclipse","type":"Twilight Blade","text":"Prismatic Eclipse Twilight Blade","flags":{"unique":true}},{"name":"Quecholli","type":"Jagged Maul","text":"Quecholli Jagged Maul","flags":{"unique":true}},{"name":"Queen's Decree","type":"Ornate Sword","text":"Queen's Decree Ornate Sword","flags":{"unique":true}},{"name":"Queen's Escape","type":"Ornate Sword","text":"Queen's Escape Ornate Sword","flags":{"unique":true}},{"name":"Quill Rain","type":"Short Bow","text":"Quill Rain Short Bow","flags":{"unique":true}},{"name":"Razor of the Seventh Sun","type":"Midnight Blade","text":"Razor of the Seventh Sun Midnight Blade","flags":{"unique":true}},{"name":"Reach of the Council","type":"Spine Bow","text":"Reach of the Council Spine Bow","flags":{"unique":true}},{"name":"Realm Ender","type":"Iron Staff","text":"Realm Ender Iron Staff","flags":{"unique":true}},{"name":"Realmshaper","type":"Iron Staff","text":"Realmshaper Iron Staff","flags":{"unique":true}},{"name":"Reaper's Pursuit","type":"Shadow Axe","text":"Reaper's Pursuit Shadow Axe","flags":{"unique":true}},{"name":"Rebuke of the Vaal","type":"Vaal Blade","text":"Rebuke of the Vaal Vaal Blade","flags":{"unique":true}},{"name":"Redbeak","type":"Rusted Sword","text":"Redbeak Rusted Sword","flags":{"unique":true}},{"name":"Reefbane","type":"Fishing Rod","text":"Reefbane Fishing Rod","flags":{"unique":true}},{"name":"Relentless Fury","type":"Decorative Axe","text":"Relentless Fury Decorative Axe","flags":{"unique":true}},{"name":"Replica Quill Rain","type":"Short Bow","text":"Replica Quill Rain Short Bow","flags":{"unique":true}},{"name":"Replica Tempestuous Steel","type":"War Sword","text":"Replica Tempestuous Steel War Sword","flags":{"unique":true}},{"name":"Reverberation Rod","type":"Spiraled Wand","text":"Reverberation Rod Spiraled Wand","flags":{"unique":true}},{"name":"Rigwald's Charge","type":"Highland Blade","text":"Rigwald's Charge Highland Blade","flags":{"unique":true}},{"name":"Rigwald's Command","type":"Midnight Blade","text":"Rigwald's Command Midnight Blade","flags":{"unique":true}},{"name":"Rigwald's Savagery","type":"Royal Axe","text":"Rigwald's Savagery Royal Axe","flags":{"unique":true}},{"name":"Rive","type":"Terror Claw","text":"Rive Terror Claw","flags":{"unique":true}},{"name":"Roth's Reach","type":"Recurve Bow","text":"Roth's Reach Recurve Bow","flags":{"unique":true}},{"name":"Sanguine Gambol","type":"Skinning Knife","text":"Sanguine Gambol Skinning Knife","flags":{"unique":true}},{"name":"Scaeva","type":"Gladius","text":"Scaeva Gladius","flags":{"unique":true}},{"name":"Severed in Sleep","type":"Cutlass","text":"Severed in Sleep Cutlass","flags":{"unique":true}},{"name":"Shade of Solaris","type":"Sage Wand","text":"Shade of Solaris Sage Wand","flags":{"unique":true}},{"name":"Shimmeron","type":"Tornado Wand","text":"Shimmeron Tornado Wand","flags":{"unique":true}},{"name":"Shiversting","type":"Bastard Sword","text":"Shiversting Bastard Sword","flags":{"unique":true}},{"name":"Sign of the Sin Eater","type":"Tyrant's Sekhem","text":"Sign of the Sin Eater Tyrant's Sekhem","flags":{"unique":true}},{"name":"Silverbough","type":"Crude Bow","text":"Silverbough Crude Bow","flags":{"unique":true}},{"name":"Silverbranch","type":"Crude Bow","text":"Silverbranch Crude Bow","flags":{"unique":true}},{"name":"Singularity","type":"Platinum Sceptre","text":"Singularity Platinum Sceptre","flags":{"unique":true}},{"name":"Sinvicta's Mettle","type":"Ezomyte Axe","text":"Sinvicta's Mettle Ezomyte Axe","flags":{"unique":true}},{"name":"Sire of Shards","type":"Serpentine Staff","text":"Sire of Shards Serpentine Staff","flags":{"unique":true}},{"name":"Slivertongue","type":"Harbinger Bow","text":"Slivertongue Harbinger Bow","flags":{"unique":true}},{"name":"Song of the Sirens","type":"Fishing Rod","text":"Song of the Sirens Fishing Rod","flags":{"unique":true}},{"name":"Soul Taker","type":"Siege Axe","text":"Soul Taker Siege Axe","flags":{"unique":true}},{"name":"Soulwrest","type":"Ezomyte Staff","text":"Soulwrest Ezomyte Staff","flags":{"unique":true}},{"name":"Spine of the First Claimant","type":"Iron Sceptre","text":"Spine of the First Claimant Iron Sceptre","flags":{"unique":true}},{"name":"Starforge","type":"Infernal Sword","text":"Starforge Infernal Sword","flags":{"unique":true}},{"name":"Storm Cloud","type":"Long Bow","text":"Storm Cloud Long Bow","flags":{"unique":true}},{"name":"Storm Prison","type":"Carved Wand","text":"Storm Prison Carved Wand","flags":{"unique":true}},{"name":"Story of the Vaal","type":"Variscite Blade","text":"Story of the Vaal Variscite Blade","flags":{"unique":true}},{"name":"Taproot","type":"Ambusher","text":"Taproot Ambusher","flags":{"unique":true}},{"name":"Taryn's Shiver","type":"Maelstr\u00f6m Staff","text":"Taryn's Shiver Maelstr\u00f6m Staff","flags":{"unique":true}},{"name":"Terminus Est","type":"Tiger Sword","text":"Terminus Est Tiger Sword","flags":{"unique":true}},{"name":"The Black Cane","type":"Royal Sceptre","text":"The Black Cane Royal Sceptre","flags":{"unique":true}},{"name":"The Blood Reaper","type":"Headsman Axe","text":"The Blood Reaper Headsman Axe","flags":{"unique":true}},{"name":"The Blood Thorn","type":"Gnarled Branch","text":"The Blood Thorn Gnarled Branch","flags":{"unique":true}},{"name":"The Cauteriser","type":"Woodsplitter","text":"The Cauteriser Woodsplitter","flags":{"unique":true}},{"name":"The Consuming Dark","type":"Fiend Dagger","text":"The Consuming Dark Fiend Dagger","flags":{"unique":true}},{"name":"The Crimson Storm","type":"Steelwood Bow","text":"The Crimson Storm Steelwood Bow","flags":{"unique":true}},{"name":"The Dancing Dervish","type":"Reaver Sword","text":"The Dancing Dervish Reaver Sword","flags":{"unique":true}},{"name":"The Dancing Duo","type":"Reaver Sword","text":"The Dancing Duo Reaver Sword","flags":{"unique":true}},{"name":"The Dark Seer","type":"Shadow Sceptre","text":"The Dark Seer Shadow Sceptre","flags":{"unique":true}},{"name":"The Enmity Divine","type":"Imperial Staff","text":"The Enmity Divine Imperial Staff","flags":{"unique":true}},{"name":"The Goddess Bound","type":"Whalebone Rapier","text":"The Goddess Bound Whalebone Rapier","flags":{"unique":true}},{"name":"The Goddess Scorned","type":"Elegant Sword","text":"The Goddess Scorned Elegant Sword","flags":{"unique":true}},{"name":"The Goddess Unleashed","type":"Eternal Sword","text":"The Goddess Unleashed Eternal Sword","flags":{"unique":true}},{"name":"The Grey Spire","type":"Judgement Staff","text":"The Grey Spire Judgement Staff","flags":{"unique":true}},{"name":"The Gryphon","type":"Jade Hatchet","text":"The Gryphon Jade Hatchet","flags":{"unique":true}},{"name":"The Harvest","type":"Jasper Chopper","text":"The Harvest Jasper Chopper","flags":{"unique":true}},{"name":"The Poet's Pen","type":"Carved Wand","text":"The Poet's Pen Carved Wand","flags":{"unique":true}},{"name":"The Princess","type":"Sabre","text":"The Princess Sabre","flags":{"unique":true}},{"name":"The Rippling Thoughts","type":"Legion Sword","text":"The Rippling Thoughts Legion Sword","flags":{"unique":true}},{"name":"The Saviour","type":"Legion Sword","text":"The Saviour Legion Sword","flags":{"unique":true}},{"name":"The Scourge","type":"Terror Claw","text":"The Scourge Terror Claw","flags":{"unique":true}},{"name":"The Screaming Eagle","type":"Jade Hatchet","text":"The Screaming Eagle Jade Hatchet","flags":{"unique":true}},{"name":"The Searing Touch","type":"Lathi","text":"The Searing Touch Lathi","flags":{"unique":true}},{"name":"The Searing Touch","type":"Long Staff","text":"The Searing Touch Long Staff","flags":{"unique":true}},{"name":"The Stormheart","type":"Royal Staff","text":"The Stormheart Royal Staff","flags":{"unique":true}},{"name":"The Stormwall","type":"Royal Staff","text":"The Stormwall Royal Staff","flags":{"unique":true}},{"name":"The Supreme Truth","type":"Crystal Sceptre","text":"The Supreme Truth Crystal Sceptre","flags":{"unique":true}},{"name":"The Surging Thoughts","type":"Legion Sword","text":"The Surging Thoughts Legion Sword","flags":{"unique":true}},{"name":"The Tempest","type":"Long Bow","text":"The Tempest Long Bow","flags":{"unique":true}},{"name":"The Tempestuous Steel","type":"War Sword","text":"The Tempestuous Steel War Sword","flags":{"unique":true}},{"name":"The Wasp Nest","type":"Throat Stabber","text":"The Wasp Nest Throat Stabber","flags":{"unique":true}},{"name":"The Whispering Ice","type":"Vile Staff","text":"The Whispering Ice Vile Staff","flags":{"unique":true}},{"name":"The Yielding Mortality","type":"Imperial Staff","text":"The Yielding Mortality Imperial Staff","flags":{"unique":true}},{"name":"Tidebreaker","type":"Imperial Maul","text":"Tidebreaker Imperial Maul","flags":{"unique":true}},{"name":"Tipua Kaikohuru","type":"Whalebone Rapier","text":"Tipua Kaikohuru Whalebone Rapier","flags":{"unique":true}},{"name":"Touch of Anguish","type":"Imperial Claw","text":"Touch of Anguish Imperial Claw","flags":{"unique":true}},{"name":"Tremor Rod","type":"Military Staff","text":"Tremor Rod Military Staff","flags":{"unique":true}},{"name":"Trypanon","type":"Great Mallet","text":"Trypanon Great Mallet","flags":{"unique":true}},{"name":"Tulborn","type":"Spiraled Wand","text":"Tulborn Spiraled Wand","flags":{"unique":true}},{"name":"Tulfall","type":"Tornado Wand","text":"Tulfall Tornado Wand","flags":{"unique":true}},{"name":"Twyzel","type":"Sage Wand","text":"Twyzel Sage Wand","flags":{"unique":true}},{"name":"Ungil's Gauche","type":"Boot Knife","text":"Ungil's Gauche Boot Knife","flags":{"unique":true}},{"name":"United in Dream","type":"Cutlass","text":"United in Dream Cutlass","flags":{"unique":true}},{"name":"Uul-Netol's Embrace","type":"Vaal Axe","text":"Uul-Netol's Embrace Vaal Axe","flags":{"unique":true}},{"name":"Uul-Netol's Kiss","type":"Labrys","text":"Uul-Netol's Kiss Labrys","flags":{"unique":true}},{"name":"Varunastra","type":"Vaal Blade","text":"Varunastra Vaal Blade","flags":{"unique":true}},{"name":"Void Battery","type":"Prophecy Wand","text":"Void Battery Prophecy Wand","flags":{"unique":true}},{"name":"Voidforge","type":"Infernal Sword","text":"Voidforge Infernal Sword","flags":{"unique":true}},{"name":"Voidhome","type":"Dread Maul","text":"Voidhome Dread Maul","flags":{"unique":true}},{"name":"Voltaxic Rift","type":"Spine Bow","text":"Voltaxic Rift Spine Bow","flags":{"unique":true}},{"name":"Vulconus","type":"Demon Dagger","text":"Vulconus Demon Dagger","flags":{"unique":true}},{"name":"White Wind","type":"Imperial Skean","text":"White Wind Imperial Skean","flags":{"unique":true}},{"name":"Wideswing","type":"Poleaxe","text":"Wideswing Poleaxe","flags":{"unique":true}},{"name":"Widowmaker","type":"Boot Blade","text":"Widowmaker Boot Blade","flags":{"unique":true}},{"name":"Wildslash","type":"Awl","text":"Wildslash Awl","flags":{"unique":true}},{"name":"Windripper","type":"Imperial Bow","text":"Windripper Imperial Bow","flags":{"unique":true}},{"name":"Wings of Entropy","type":"Sundering Axe","text":"Wings of Entropy Sundering Axe","flags":{"unique":true}},{"name":"Wings of Entropy","type":"Ezomyte Axe","text":"Wings of Entropy Ezomyte Axe","flags":{"unique":true}},{"name":"Witchhunter's Judgment","type":"Highborn Staff","text":"Witchhunter's Judgment Highborn Staff","flags":{"unique":true}},{"name":"Xirgil's Crank","type":"Coiled Staff","text":"Xirgil's Crank Coiled Staff","flags":{"unique":true}},{"name":"Xoph's Inception","type":"Bone Bow","text":"Xoph's Inception Bone Bow","flags":{"unique":true}},{"name":"Xoph's Nurture","type":"Citadel Bow","text":"Xoph's Nurture Citadel Bow","flags":{"unique":true}},{"type":"Nailed Fist","text":"Nailed Fist"},{"type":"Gouger","text":"Gouger"},{"type":"Tiger's Paw","text":"Tiger's Paw"},{"type":"Gut Ripper","text":"Gut Ripper"},{"type":"Prehistoric Claw","text":"Prehistoric Claw"},{"type":"Noble Claw","text":"Noble Claw"},{"type":"Eagle Claw","text":"Eagle Claw"},{"type":"Great White Claw","text":"Great White Claw"},{"type":"Throat Stabber","text":"Throat Stabber"},{"type":"Hellion's Paw","text":"Hellion's Paw"},{"type":"Eye Gouger","text":"Eye Gouger"},{"type":"Sharktooth Claw","text":"Sharktooth Claw"},{"type":"Vaal Claw","text":"Vaal Claw"},{"type":"Imperial Claw","text":"Imperial Claw"},{"type":"Terror Claw","text":"Terror Claw"},{"type":"Awl","text":"Awl"},{"type":"Cat's Paw","text":"Cat's Paw"},{"type":"Blinder","text":"Blinder"},{"type":"Timeworn Claw","text":"Timeworn Claw"},{"type":"Sparkling Claw","text":"Sparkling Claw"},{"type":"Fright Claw","text":"Fright Claw"},{"type":"Thresher Claw","text":"Thresher Claw"},{"type":"Double Claw","text":"Double Claw"},{"type":"Twin Claw","text":"Twin Claw"},{"type":"Gemini Claw","text":"Gemini Claw"},{"type":"Glass Shank","text":"Glass Shank"},{"type":"Butcher Knife","text":"Butcher Knife"},{"type":"Poignard","text":"Poignard"},{"type":"Boot Blade","text":"Boot Blade"},{"type":"Golden Kris","text":"Golden Kris"},{"type":"Royal Skean","text":"Royal Skean"},{"type":"Fiend Dagger","text":"Fiend Dagger"},{"type":"Gutting Knife","text":"Gutting Knife"},{"type":"Slaughter Knife","text":"Slaughter Knife"},{"type":"Ambusher","text":"Ambusher"},{"type":"Ezomyte Dagger","text":"Ezomyte Dagger"},{"type":"Skinning Knife","text":"Skinning Knife"},{"type":"Platinum Kris","text":"Platinum Kris"},{"type":"Imperial Skean","text":"Imperial Skean"},{"type":"Demon Dagger","text":"Demon Dagger"},{"type":"Carving Knife","text":"Carving Knife"},{"type":"Stiletto","text":"Stiletto"},{"type":"Boot Knife","text":"Boot Knife"},{"type":"Copper Kris","text":"Copper Kris"},{"type":"Skean","text":"Skean"},{"type":"Imp Dagger","text":"Imp Dagger"},{"type":"Flaying Knife","text":"Flaying Knife"},{"type":"Prong Dagger","text":"Prong Dagger"},{"type":"Trisula","text":"Trisula"},{"type":"Sai","text":"Sai"},{"type":"Rusted Hatchet","text":"Rusted Hatchet"},{"type":"Tomahawk","text":"Tomahawk"},{"type":"Wrist Chopper","text":"Wrist Chopper"},{"type":"War Axe","text":"War Axe"},{"type":"Chest Splitter","text":"Chest Splitter"},{"type":"Ceremonial Axe","text":"Ceremonial Axe"},{"type":"Wraith Axe","text":"Wraith Axe"},{"type":"Karui Axe","text":"Karui Axe"},{"type":"Siege Axe","text":"Siege Axe"},{"type":"Reaver Axe","text":"Reaver Axe"},{"type":"Butcher Axe","text":"Butcher Axe"},{"type":"Jade Hatchet","text":"Jade Hatchet"},{"type":"Vaal Hatchet","text":"Vaal Hatchet"},{"type":"Royal Axe","text":"Royal Axe"},{"type":"Infernal Axe","text":"Infernal Axe"},{"type":"Boarding Axe","text":"Boarding Axe"},{"type":"Cleaver","text":"Cleaver"},{"type":"Broad Axe","text":"Broad Axe"},{"type":"Arming Axe","text":"Arming Axe"},{"type":"Decorative Axe","text":"Decorative Axe"},{"type":"Spectral Axe","text":"Spectral Axe"},{"type":"Jasper Axe","text":"Jasper Axe"},{"type":"Etched Hatchet","text":"Etched Hatchet"},{"type":"Engraved Hatchet","text":"Engraved Hatchet"},{"type":"Runic Hatchet","text":"Runic Hatchet"},{"type":"Driftwood Club","text":"Driftwood Club"},{"type":"Barbed Club","text":"Barbed Club"},{"type":"Rock Breaker","text":"Rock Breaker"},{"type":"Battle Hammer","text":"Battle Hammer"},{"type":"Flanged Mace","text":"Flanged Mace"},{"type":"Ornate Mace","text":"Ornate Mace"},{"type":"Phantom Mace","text":"Phantom Mace"},{"type":"Ancestral Club","text":"Ancestral Club"},{"type":"Tenderizer","text":"Tenderizer"},{"type":"Gavel","text":"Gavel"},{"type":"Legion Hammer","text":"Legion Hammer"},{"type":"Tribal Club","text":"Tribal Club"},{"type":"Pernach","text":"Pernach"},{"type":"Auric Mace","text":"Auric Mace"},{"type":"Nightmare Mace","text":"Nightmare Mace"},{"type":"Spiked Club","text":"Spiked Club"},{"type":"Stone Hammer","text":"Stone Hammer"},{"type":"War Hammer","text":"War Hammer"},{"type":"Bladed Mace","text":"Bladed Mace"},{"type":"Ceremonial Mace","text":"Ceremonial Mace"},{"type":"Dream Mace","text":"Dream Mace"},{"type":"Petrified Club","text":"Petrified Club"},{"type":"Wyrm Mace","text":"Wyrm Mace"},{"type":"Dragon Mace","text":"Dragon Mace"},{"type":"Behemoth Mace","text":"Behemoth Mace"},{"type":"Driftwood Sceptre","text":"Driftwood Sceptre"},{"type":"Sekhem","text":"Sekhem"},{"type":"Crystal Sceptre","text":"Crystal Sceptre"},{"type":"Lead Sceptre","text":"Lead Sceptre"},{"type":"Blood Sceptre","text":"Blood Sceptre"},{"type":"Royal Sceptre","text":"Royal Sceptre"},{"type":"Abyssal Sceptre","text":"Abyssal Sceptre"},{"type":"Karui Sceptre","text":"Karui Sceptre"},{"type":"Tyrant's Sekhem","text":"Tyrant's Sekhem"},{"type":"Opal Sceptre","text":"Opal Sceptre"},{"type":"Platinum Sceptre","text":"Platinum Sceptre"},{"type":"Darkwood Sceptre","text":"Darkwood Sceptre"},{"type":"Vaal Sceptre","text":"Vaal Sceptre"},{"type":"Carnal Sceptre","text":"Carnal Sceptre"},{"type":"Void Sceptre","text":"Void Sceptre"},{"type":"Bronze Sceptre","text":"Bronze Sceptre"},{"type":"Quartz Sceptre","text":"Quartz Sceptre"},{"type":"Iron Sceptre","text":"Iron Sceptre"},{"type":"Ochre Sceptre","text":"Ochre Sceptre"},{"type":"Ritual Sceptre","text":"Ritual Sceptre"},{"type":"Shadow Sceptre","text":"Shadow Sceptre"},{"type":"Grinning Fetish","text":"Grinning Fetish"},{"type":"Horned Sceptre","text":"Horned Sceptre"},{"type":"Stag Sceptre","text":"Stag Sceptre"},{"type":"Sambar Sceptre","text":"Sambar Sceptre"},{"type":"Rusted Sword","text":"Rusted Sword"},{"type":"Cutlass","text":"Cutlass"},{"type":"Baselard","text":"Baselard"},{"type":"Battle Sword","text":"Battle Sword"},{"type":"Elder Sword","text":"Elder Sword"},{"type":"Graceful Sword","text":"Graceful Sword"},{"type":"Twilight Blade","text":"Twilight Blade"},{"type":"Gemstone Sword","text":"Gemstone Sword"},{"type":"Corsair Sword","text":"Corsair Sword"},{"type":"Gladius","text":"Gladius"},{"type":"Legion Sword","text":"Legion Sword"},{"type":"Copper Sword","text":"Copper Sword"},{"type":"Vaal Blade","text":"Vaal Blade"},{"type":"Eternal Sword","text":"Eternal Sword"},{"type":"Midnight Blade","text":"Midnight Blade"},{"type":"Sabre","text":"Sabre"},{"type":"Broad Sword","text":"Broad Sword"},{"type":"War Sword","text":"War Sword"},{"type":"Ancient Sword","text":"Ancient Sword"},{"type":"Elegant Sword","text":"Elegant Sword"},{"type":"Dusk Blade","text":"Dusk Blade"},{"type":"Variscite Blade","text":"Variscite Blade"},{"type":"Charan's Sword","text":"Charan's Sword"},{"type":"Hook Sword","text":"Hook Sword"},{"type":"Grappler","text":"Grappler"},{"type":"Tiger Hook","text":"Tiger Hook"},{"type":"Rusted Spike","text":"Rusted Spike"},{"type":"Burnished Foil","text":"Burnished Foil"},{"type":"Estoc","text":"Estoc"},{"type":"Serrated Foil","text":"Serrated Foil"},{"type":"Primeval Rapier","text":"Primeval Rapier"},{"type":"Fancy Foil","text":"Fancy Foil"},{"type":"Apex Rapier","text":"Apex Rapier"},{"type":"Dragonbone Rapier","text":"Dragonbone Rapier"},{"type":"Tempered Foil","text":"Tempered Foil"},{"type":"Pecoraro","text":"Pecoraro"},{"type":"Spiraled Foil","text":"Spiraled Foil"},{"type":"Whalebone Rapier","text":"Whalebone Rapier"},{"type":"Vaal Rapier","text":"Vaal Rapier"},{"type":"Jewelled Foil","text":"Jewelled Foil"},{"type":"Harpy Rapier","text":"Harpy Rapier"},{"type":"Battered Foil","text":"Battered Foil"},{"type":"Basket Rapier","text":"Basket Rapier"},{"type":"Jagged Foil","text":"Jagged Foil"},{"type":"Antique Rapier","text":"Antique Rapier"},{"type":"Elegant Foil","text":"Elegant Foil"},{"type":"Thorn Rapier","text":"Thorn Rapier"},{"type":"Wyrmbone Rapier","text":"Wyrmbone Rapier"},{"type":"Smallsword","text":"Smallsword"},{"type":"Courtesan Sword","text":"Courtesan Sword"},{"type":"Dragoon Sword","text":"Dragoon Sword"},{"type":"Driftwood Wand","text":"Driftwood Wand"},{"type":"Serpent Wand","text":"Serpent Wand"},{"type":"Omen Wand","text":"Omen Wand"},{"type":"Demon's Horn","text":"Demon's Horn"},{"type":"Imbued Wand","text":"Imbued Wand"},{"type":"Opal Wand","text":"Opal Wand"},{"type":"Tornado Wand","text":"Tornado Wand"},{"type":"Prophecy Wand","text":"Prophecy Wand"},{"type":"Goat's Horn","text":"Goat's Horn"},{"type":"Carved Wand","text":"Carved Wand"},{"type":"Quartz Wand","text":"Quartz Wand"},{"type":"Spiraled Wand","text":"Spiraled Wand"},{"type":"Sage Wand","text":"Sage Wand"},{"type":"Faun's Horn","text":"Faun's Horn"},{"type":"Engraved Wand","text":"Engraved Wand"},{"type":"Crystal Wand","text":"Crystal Wand"},{"type":"Convoking Wand","text":"Convoking Wand"},{"type":"Pagan Wand","text":"Pagan Wand"},{"type":"Heathen Wand","text":"Heathen Wand"},{"type":"Profane Wand","text":"Profane Wand"},{"type":"Fishing Rod","text":"Fishing Rod"},{"type":"Crude Bow","text":"Crude Bow"},{"type":"Decurve Bow","text":"Decurve Bow"},{"type":"Compound Bow","text":"Compound Bow"},{"type":"Sniper Bow","text":"Sniper Bow"},{"type":"Ivory Bow","text":"Ivory Bow"},{"type":"Highborn Bow","text":"Highborn Bow"},{"type":"Decimation Bow","text":"Decimation Bow"},{"type":"Thicket Bow","text":"Thicket Bow"},{"type":"Citadel Bow","text":"Citadel Bow"},{"type":"Ranger Bow","text":"Ranger Bow"},{"type":"Assassin Bow","text":"Assassin Bow"},{"type":"Short Bow","text":"Short Bow"},{"type":"Spine Bow","text":"Spine Bow"},{"type":"Imperial Bow","text":"Imperial Bow"},{"type":"Harbinger Bow","text":"Harbinger Bow"},{"type":"Long Bow","text":"Long Bow"},{"type":"Composite Bow","text":"Composite Bow"},{"type":"Recurve Bow","text":"Recurve Bow"},{"type":"Bone Bow","text":"Bone Bow"},{"type":"Royal Bow","text":"Royal Bow"},{"type":"Death Bow","text":"Death Bow"},{"type":"Grove Bow","text":"Grove Bow"},{"type":"Reflex Bow","text":"Reflex Bow"},{"type":"Steelwood Bow","text":"Steelwood Bow"},{"type":"Maraketh Bow","text":"Maraketh Bow"},{"type":"Gnarled Branch","text":"Gnarled Branch"},{"type":"Military Staff","text":"Military Staff"},{"type":"Serpentine Staff","text":"Serpentine Staff"},{"type":"Highborn Staff","text":"Highborn Staff"},{"type":"Foul Staff","text":"Foul Staff"},{"type":"Primordial Staff","text":"Primordial Staff"},{"type":"Lathi","text":"Lathi"},{"type":"Ezomyte Staff","text":"Ezomyte Staff"},{"type":"Maelstr\u00f6m Staff","text":"Maelstr\u00f6m Staff"},{"type":"Imperial Staff","text":"Imperial Staff"},{"type":"Judgement Staff","text":"Judgement Staff"},{"type":"Primitive Staff","text":"Primitive Staff"},{"type":"Long Staff","text":"Long Staff"},{"type":"Iron Staff","text":"Iron Staff"},{"type":"Coiled Staff","text":"Coiled Staff"},{"type":"Royal Staff","text":"Royal Staff"},{"type":"Vile Staff","text":"Vile Staff"},{"type":"Woodful Staff","text":"Woodful Staff"},{"type":"Quarterstaff","text":"Quarterstaff"},{"type":"Crescent Staff","text":"Crescent Staff"},{"type":"Moon Staff","text":"Moon Staff"},{"type":"Eclipse Staff","text":"Eclipse Staff"},{"type":"Stone Axe","text":"Stone Axe"},{"type":"Headsman Axe","text":"Headsman Axe"},{"type":"Labrys","text":"Labrys"},{"type":"Noble Axe","text":"Noble Axe"},{"type":"Abyssal Axe","text":"Abyssal Axe"},{"type":"Karui Chopper","text":"Karui Chopper"},{"type":"Sundering Axe","text":"Sundering Axe"},{"type":"Ezomyte Axe","text":"Ezomyte Axe"},{"type":"Vaal Axe","text":"Vaal Axe"},{"type":"Despot Axe","text":"Despot Axe"},{"type":"Void Axe","text":"Void Axe"},{"type":"Jade Chopper","text":"Jade Chopper"},{"type":"Woodsplitter","text":"Woodsplitter"},{"type":"Poleaxe","text":"Poleaxe"},{"type":"Double Axe","text":"Double Axe"},{"type":"Gilded Axe","text":"Gilded Axe"},{"type":"Shadow Axe","text":"Shadow Axe"},{"type":"Jasper Chopper","text":"Jasper Chopper"},{"type":"Timber Axe","text":"Timber Axe"},{"type":"Dagger Axe","text":"Dagger Axe"},{"type":"Talon Axe","text":"Talon Axe"},{"type":"Fleshripper","text":"Fleshripper"},{"type":"Driftwood Maul","text":"Driftwood Maul"},{"type":"Steelhead","text":"Steelhead"},{"type":"Spiny Maul","text":"Spiny Maul"},{"type":"Plated Maul","text":"Plated Maul"},{"type":"Dread Maul","text":"Dread Maul"},{"type":"Karui Maul","text":"Karui Maul"},{"type":"Colossus Mallet","text":"Colossus Mallet"},{"type":"Piledriver","text":"Piledriver"},{"type":"Meatgrinder","text":"Meatgrinder"},{"type":"Imperial Maul","text":"Imperial Maul"},{"type":"Terror Maul","text":"Terror Maul"},{"type":"Tribal Maul","text":"Tribal Maul"},{"type":"Mallet","text":"Mallet"},{"type":"Sledgehammer","text":"Sledgehammer"},{"type":"Jagged Maul","text":"Jagged Maul"},{"type":"Brass Maul","text":"Brass Maul"},{"type":"Fright Maul","text":"Fright Maul"},{"type":"Totemic Maul","text":"Totemic Maul"},{"type":"Great Mallet","text":"Great Mallet"},{"type":"Morning Star","text":"Morning Star"},{"type":"Solar Maul","text":"Solar Maul"},{"type":"Coronal Maul","text":"Coronal Maul"},{"type":"Corroded Blade","text":"Corroded Blade"},{"type":"Highland Blade","text":"Highland Blade"},{"type":"Engraved Greatsword","text":"Engraved Greatsword"},{"type":"Tiger Sword","text":"Tiger Sword"},{"type":"Wraith Sword","text":"Wraith Sword"},{"type":"Headman's Sword","text":"Headman's Sword"},{"type":"Reaver Sword","text":"Reaver Sword"},{"type":"Ezomyte Blade","text":"Ezomyte Blade"},{"type":"Vaal Greatsword","text":"Vaal Greatsword"},{"type":"Lion Sword","text":"Lion Sword"},{"type":"Infernal Sword","text":"Infernal Sword"},{"type":"Longsword","text":"Longsword"},{"type":"Bastard Sword","text":"Bastard Sword"},{"type":"Two-Handed Sword","text":"Two-Handed Sword"},{"type":"Etched Greatsword","text":"Etched Greatsword"},{"type":"Ornate Sword","text":"Ornate Sword"},{"type":"Spectral Sword","text":"Spectral Sword"},{"type":"Butcher Sword","text":"Butcher Sword"},{"type":"Footman Sword","text":"Footman Sword"},{"type":"Curved Blade","text":"Curved Blade"},{"type":"Lithe Blade","text":"Lithe Blade"},{"type":"Exquisite Blade","text":"Exquisite Blade"}]},{"label":"Leaguestones","entries":[{"type":"Ambush Leaguestone","text":"Ambush Leaguestone"},{"type":"Anarchy Leaguestone","text":"Anarchy Leaguestone"},{"type":"Beyond Leaguestone","text":"Beyond Leaguestone"},{"type":"Bloodlines Leaguestone","text":"Bloodlines Leaguestone"},{"type":"Breach Leaguestone","text":"Breach Leaguestone"},{"type":"Domination Leaguestone","text":"Domination Leaguestone"},{"type":"Essence Leaguestone","text":"Essence Leaguestone"},{"type":"Invasion Leaguestone","text":"Invasion Leaguestone"},{"type":"Nemesis Leaguestone","text":"Nemesis Leaguestone"},{"type":"Onslaught Leaguestone","text":"Onslaught Leaguestone"},{"type":"Perandus Leaguestone","text":"Perandus Leaguestone"},{"type":"Prophecy Leaguestone","text":"Prophecy Leaguestone"},{"type":"Rampage Leaguestone","text":"Rampage Leaguestone"},{"type":"Talisman Leaguestone","text":"Talisman Leaguestone"},{"type":"Tempest Leaguestone","text":"Tempest Leaguestone"},{"type":"Torment Leaguestone","text":"Torment Leaguestone"},{"type":"Warbands Leaguestone","text":"Warbands Leaguestone"}]},{"label":"Prophecies","entries":[{"name":"The Alchemist","type":"Prophecy","text":"The Alchemist Prophecy","flags":{"prophecy":true}},{"name":"Anarchy's End I","type":"Prophecy","text":"Anarchy's End I Prophecy","flags":{"prophecy":true}},{"name":"Anarchy's End II","type":"Prophecy","text":"Anarchy's End II Prophecy","flags":{"prophecy":true}},{"name":"Anarchy's End III","type":"Prophecy","text":"Anarchy's End III Prophecy","flags":{"prophecy":true}},{"name":"Anarchy's End IV","type":"Prophecy","text":"Anarchy's End IV Prophecy","flags":{"prophecy":true}},{"name":"Ancient Rivalries I","type":"Prophecy","text":"Ancient Rivalries I Prophecy","flags":{"prophecy":true}},{"name":"Ancient Rivalries II","type":"Prophecy","text":"Ancient Rivalries II Prophecy","flags":{"prophecy":true}},{"name":"Ancient Rivalries III","type":"Prophecy","text":"Ancient Rivalries III Prophecy","flags":{"prophecy":true}},{"name":"Ancient Rivalries IV","type":"Prophecy","text":"Ancient Rivalries IV Prophecy","flags":{"prophecy":true}},{"name":"The Twins","type":"Prophecy","text":"The Twins Prophecy","flags":{"prophecy":true}},{"name":"Possessed Foe","type":"Prophecy","text":"Possessed Foe Prophecy","flags":{"prophecy":true}},{"name":"The Invader","type":"Prophecy","text":"The Invader Prophecy","flags":{"prophecy":true}},{"name":"Visions of the Drowned","type":"Prophecy","text":"Visions of the Drowned Prophecy","flags":{"prophecy":true}},{"name":"Monstrous Treasure","type":"Prophecy","text":"Monstrous Treasure Prophecy","flags":{"prophecy":true}},{"name":"Vaal Invasion","type":"Prophecy","text":"Vaal Invasion Prophecy","flags":{"prophecy":true}},{"name":"The Hungering Swarm","type":"Prophecy","text":"The Hungering Swarm Prophecy","flags":{"prophecy":true}},{"name":"The Trembling Earth","type":"Prophecy","text":"The Trembling Earth Prophecy","flags":{"prophecy":true}},{"name":"The Cursed Choir","type":"Prophecy","text":"The Cursed Choir Prophecy","flags":{"prophecy":true}},{"name":"Soil, Worms and Blood","type":"Prophecy","text":"Soil, Worms and Blood Prophecy","flags":{"prophecy":true}},{"name":"The Jeweller's Touch","type":"Prophecy","text":"The Jeweller's Touch Prophecy","flags":{"prophecy":true}},{"name":"The Forgotten Garrison","type":"Prophecy","text":"The Forgotten Garrison Prophecy","flags":{"prophecy":true}},{"name":"Song of the Sekhema","type":"Prophecy","text":"Song of the Sekhema Prophecy","flags":{"prophecy":true}},{"name":"The Queen's Vaults","type":"Prophecy","text":"The Queen's Vaults Prophecy","flags":{"prophecy":true}},{"name":"The Queen's Sacrifice","type":"Prophecy","text":"The Queen's Sacrifice Prophecy","flags":{"prophecy":true}},{"name":"Beyond Sight I","type":"Prophecy","text":"Beyond Sight I Prophecy","flags":{"prophecy":true}},{"name":"Beyond Sight II","type":"Prophecy","text":"Beyond Sight II Prophecy","flags":{"prophecy":true}},{"name":"Beyond Sight III","type":"Prophecy","text":"Beyond Sight III Prophecy","flags":{"prophecy":true}},{"name":"Beyond Sight IV","type":"Prophecy","text":"Beyond Sight IV Prophecy","flags":{"prophecy":true}},{"name":"Cold Blooded Fury","type":"Prophecy","text":"Cold Blooded Fury Prophecy","flags":{"prophecy":true}},{"name":"Reforged Bonds","type":"Prophecy","text":"Reforged Bonds Prophecy","flags":{"prophecy":true}},{"name":"Last of the Wildmen","type":"Prophecy","text":"Last of the Wildmen Prophecy","flags":{"prophecy":true}},{"name":"Cold Greed","type":"Prophecy","text":"Cold Greed Prophecy","flags":{"prophecy":true}},{"name":"A Valuable Combination","type":"Prophecy","text":"A Valuable Combination Prophecy","flags":{"prophecy":true}},{"name":"The Fortune Teller's Collection","type":"Prophecy","text":"The Fortune Teller's Collection Prophecy","flags":{"prophecy":true}},{"name":"The Child of Lunaris","type":"Prophecy","text":"The Child of Lunaris Prophecy","flags":{"prophecy":true}},{"name":"Faith Exhumed","type":"Prophecy","text":"Faith Exhumed Prophecy","flags":{"prophecy":true}},{"name":"Twice Enchanted","type":"Prophecy","text":"Twice Enchanted Prophecy","flags":{"prophecy":true}},{"name":"Day of Sacrifice I","type":"Prophecy","text":"Day of Sacrifice I Prophecy","flags":{"prophecy":true}},{"name":"Day of Sacrifice II","type":"Prophecy","text":"Day of Sacrifice II Prophecy","flags":{"prophecy":true}},{"name":"Day of Sacrifice III","type":"Prophecy","text":"Day of Sacrifice III Prophecy","flags":{"prophecy":true}},{"name":"Day of Sacrifice IV","type":"Prophecy","text":"Day of Sacrifice IV Prophecy","flags":{"prophecy":true}},{"name":"Deadly Rivalry I","type":"Prophecy","text":"Deadly Rivalry I Prophecy","flags":{"prophecy":true}},{"name":"Deadly Rivalry II","type":"Prophecy","text":"Deadly Rivalry II Prophecy","flags":{"prophecy":true}},{"name":"Deadly Rivalry III","type":"Prophecy","text":"Deadly Rivalry III Prophecy","flags":{"prophecy":true}},{"name":"Deadly Rivalry IV","type":"Prophecy","text":"Deadly Rivalry IV Prophecy","flags":{"prophecy":true}},{"name":"Deadly Rivalry V","type":"Prophecy","text":"Deadly Rivalry V Prophecy","flags":{"prophecy":true}},{"name":"The Malevolent Witch","type":"Prophecy","text":"The Malevolent Witch Prophecy","flags":{"prophecy":true}},{"name":"Burning Dread","type":"Prophecy","text":"Burning Dread Prophecy","flags":{"prophecy":true}},{"name":"Agony at Dusk","type":"Prophecy","text":"Agony at Dusk Prophecy","flags":{"prophecy":true}},{"name":"Blinding Light","type":"Prophecy","text":"Blinding Light Prophecy","flags":{"prophecy":true}},{"name":"The Wealthy Exile","type":"Prophecy","text":"The Wealthy Exile Prophecy","flags":{"prophecy":true}},{"name":"The Scout","type":"Prophecy","text":"The Scout Prophecy","flags":{"prophecy":true}},{"name":"Fallow At Last","type":"Prophecy","text":"Fallow At Last Prophecy","flags":{"prophecy":true}},{"name":"Trapped in the Tower","type":"Prophecy","text":"Trapped in the Tower Prophecy","flags":{"prophecy":true}},{"name":"Dark Instincts","type":"Prophecy","text":"Dark Instincts Prophecy","flags":{"prophecy":true}},{"name":"Plague of Frogs","type":"Prophecy","text":"Plague of Frogs Prophecy","flags":{"prophecy":true}},{"name":"Black Devotion","type":"Prophecy","text":"Black Devotion Prophecy","flags":{"prophecy":true}},{"name":"The Bishop's Legacy","type":"Prophecy","text":"The Bishop's Legacy Prophecy","flags":{"prophecy":true}},{"name":"Pools of Wealth","type":"Prophecy","text":"Pools of Wealth Prophecy","flags":{"prophecy":true}},{"name":"Crimson Hues","type":"Prophecy","text":"Crimson Hues Prophecy","flags":{"prophecy":true}},{"name":"A Vision of Ice and Fire","type":"Prophecy","text":"A Vision of Ice and Fire Prophecy","flags":{"prophecy":true}},{"name":"The Blacksmith","type":"Prophecy","text":"The Blacksmith Prophecy","flags":{"prophecy":true}},{"name":"A Dishonourable Death","type":"Prophecy","text":"A Dishonourable Death Prophecy","flags":{"prophecy":true}},{"name":"End of the Light","type":"Prophecy","text":"End of the Light Prophecy","flags":{"prophecy":true}},{"name":"Nemesis of Greed","type":"Prophecy","text":"Nemesis of Greed Prophecy","flags":{"prophecy":true}},{"name":"Battle Hardened","type":"Prophecy","text":"Battle Hardened Prophecy","flags":{"prophecy":true}},{"name":"Trash to Treasure","type":"Prophecy","text":"Trash to Treasure Prophecy","flags":{"prophecy":true}},{"name":"The Emperor's Trove","type":"Prophecy","text":"The Emperor's Trove Prophecy","flags":{"prophecy":true}},{"name":"Path of Betrayal","type":"Prophecy","text":"Path of Betrayal Prophecy","flags":{"prophecy":true}},{"name":"From The Void","type":"Prophecy","text":"From The Void Prophecy","flags":{"prophecy":true}},{"name":"The Misunderstood Queen","type":"Prophecy","text":"The Misunderstood Queen Prophecy","flags":{"prophecy":true}},{"name":"Nature's Resilience","type":"Prophecy","text":"Nature's Resilience Prophecy","flags":{"prophecy":true}},{"name":"The Snuffed Flame","type":"Prophecy","text":"The Snuffed Flame Prophecy","flags":{"prophecy":true}},{"name":"The King and the Brambles","type":"Prophecy","text":"The King and the Brambles Prophecy","flags":{"prophecy":true}},{"name":"Mouth of Horrors","type":"Prophecy","text":"Mouth of Horrors Prophecy","flags":{"prophecy":true}},{"name":"The Servant's Heart","type":"Prophecy","text":"The Servant's Heart Prophecy","flags":{"prophecy":true}},{"name":"The Karui Rebellion","type":"Prophecy","text":"The Karui Rebellion Prophecy","flags":{"prophecy":true}},{"name":"The Bloody Flowers Redux","type":"Prophecy","text":"The Bloody Flowers Redux Prophecy","flags":{"prophecy":true}},{"name":"The Beginning and the End","type":"Prophecy","text":"The Beginning and the End Prophecy","flags":{"prophecy":true}},{"name":"Heavy Blows","type":"Prophecy","text":"Heavy Blows Prophecy","flags":{"prophecy":true}},{"name":"Dying Cry","type":"Prophecy","text":"Dying Cry Prophecy","flags":{"prophecy":true}},{"name":"Fire and Ice","type":"Prophecy","text":"Fire and Ice Prophecy","flags":{"prophecy":true}},{"name":"Severed Limbs","type":"Prophecy","text":"Severed Limbs Prophecy","flags":{"prophecy":true}},{"name":"Fire and Brimstone","type":"Prophecy","text":"Fire and Brimstone Prophecy","flags":{"prophecy":true}},{"name":"The Apex Predator","type":"Prophecy","text":"The Apex Predator Prophecy","flags":{"prophecy":true}},{"name":"The Silverwood","type":"Prophecy","text":"The Silverwood Prophecy","flags":{"prophecy":true}},{"name":"The King's Path","type":"Prophecy","text":"The King's Path Prophecy","flags":{"prophecy":true}},{"name":"Hidden Reinforcements","type":"Prophecy","text":"Hidden Reinforcements Prophecy","flags":{"prophecy":true}},{"name":"The Bowstring's Music","type":"Prophecy","text":"The Bowstring's Music Prophecy","flags":{"prophecy":true}},{"name":"Rebirth","type":"Prophecy","text":"Rebirth Prophecy","flags":{"prophecy":true}},{"name":"Power Magnified","type":"Prophecy","text":"Power Magnified Prophecy","flags":{"prophecy":true}},{"name":"Gilded Within","type":"Prophecy","text":"Gilded Within Prophecy","flags":{"prophecy":true}},{"name":"Ending the Torment","type":"Prophecy","text":"Ending the Torment Prophecy","flags":{"prophecy":true}},{"name":"Hunter's Lesson","type":"Prophecy","text":"Hunter's Lesson Prophecy","flags":{"prophecy":true}},{"name":"Pleasure and Pain","type":"Prophecy","text":"Pleasure and Pain Prophecy","flags":{"prophecy":true}},{"name":"The Flow of Energy","type":"Prophecy","text":"The Flow of Energy Prophecy","flags":{"prophecy":true}},{"name":"Winter's Mournful Melodies","type":"Prophecy","text":"Winter's Mournful Melodies Prophecy","flags":{"prophecy":true}},{"name":"A Forest of False Idols","type":"Prophecy","text":"A Forest of False Idols Prophecy","flags":{"prophecy":true}},{"name":"Erased from Memory","type":"Prophecy","text":"Erased from Memory Prophecy","flags":{"prophecy":true}},{"name":"Ancient Doom","type":"Prophecy","text":"Ancient Doom Prophecy","flags":{"prophecy":true}},{"name":"The Nightmare Awakens","type":"Prophecy","text":"The Nightmare Awakens Prophecy","flags":{"prophecy":true}},{"name":"The Dreamer's Dream","type":"Prophecy","text":"The Dreamer's Dream Prophecy","flags":{"prophecy":true}},{"name":"The Dream Trial","type":"Prophecy","text":"The Dream Trial Prophecy","flags":{"prophecy":true}},{"name":"Hidden Vaal Pathways","type":"Prophecy","text":"Hidden Vaal Pathways Prophecy","flags":{"prophecy":true}},{"name":"Echoes of Lost Love","type":"Prophecy","text":"Echoes of Lost Love Prophecy","flags":{"prophecy":true}},{"name":"Echoes of Witchcraft","type":"Prophecy","text":"Echoes of Witchcraft Prophecy","flags":{"prophecy":true}},{"name":"A Master Seeks Help","type":"Prophecy","disc":"alva","text":"A Master Seeks Help Prophecy (Alva)","flags":{"prophecy":true}},{"name":"A Master Seeks Help","type":"Prophecy","disc":"einhar","text":"A Master Seeks Help Prophecy (Einhar)","flags":{"prophecy":true}},{"name":"A Master Seeks Help","type":"Prophecy","disc":"niko","text":"A Master Seeks Help Prophecy (Niko)","flags":{"prophecy":true}},{"name":"A Master Seeks Help","type":"Prophecy","disc":"jun","text":"A Master Seeks Help Prophecy (Jun)","flags":{"prophecy":true}},{"name":"Bountiful Traps","type":"Prophecy","text":"Bountiful Traps Prophecy","flags":{"prophecy":true}},{"name":"A Master Seeks Help","type":"Prophecy","disc":"zana","text":"A Master Seeks Help Prophecy (Zana)","flags":{"prophecy":true}},{"name":"The God of Misfortune","type":"Prophecy","text":"The God of Misfortune Prophecy","flags":{"prophecy":true}},{"name":"Brothers in Arms","type":"Prophecy","text":"Brothers in Arms Prophecy","flags":{"prophecy":true}},{"name":"Echoes of Mutation","type":"Prophecy","text":"Echoes of Mutation Prophecy","flags":{"prophecy":true}},{"name":"The Aesthete's Spirit","type":"Prophecy","text":"The Aesthete's Spirit Prophecy","flags":{"prophecy":true}},{"name":"The Undead Brutes","type":"Prophecy","text":"The Undead Brutes Prophecy","flags":{"prophecy":true}},{"name":"The Four Feral Exiles","type":"Prophecy","text":"The Four Feral Exiles Prophecy","flags":{"prophecy":true}},{"name":"Vaal Winds","type":"Prophecy","text":"Vaal Winds Prophecy","flags":{"prophecy":true}},{"name":"Fire from the Sky","type":"Prophecy","text":"Fire from the Sky Prophecy","flags":{"prophecy":true}},{"name":"Ice from Above","type":"Prophecy","text":"Ice from Above Prophecy","flags":{"prophecy":true}},{"name":"Lightning Falls","type":"Prophecy","text":"Lightning Falls Prophecy","flags":{"prophecy":true}},{"name":"Crushing Squall","type":"Prophecy","text":"Crushing Squall Prophecy","flags":{"prophecy":true}},{"name":"The Undead Storm","type":"Prophecy","text":"The Undead Storm Prophecy","flags":{"prophecy":true}},{"name":"Deadly Twins","type":"Prophecy","text":"Deadly Twins Prophecy","flags":{"prophecy":true}},{"name":"A Gracious Master","type":"Prophecy","text":"A Gracious Master Prophecy","flags":{"prophecy":true}},{"name":"The Mentor","type":"Prophecy","text":"The Mentor Prophecy","flags":{"prophecy":true}},{"name":"Overflowing Riches","type":"Prophecy","text":"Overflowing Riches Prophecy","flags":{"prophecy":true}},{"name":"Mysterious Invaders","type":"Prophecy","text":"Mysterious Invaders Prophecy","flags":{"prophecy":true}},{"name":"Thaumaturgical History I","type":"Prophecy","text":"Thaumaturgical History I Prophecy","flags":{"prophecy":true}},{"name":"Thaumaturgical History II","type":"Prophecy","text":"Thaumaturgical History II Prophecy","flags":{"prophecy":true}},{"name":"Thaumaturgical History III","type":"Prophecy","text":"Thaumaturgical History III Prophecy","flags":{"prophecy":true}},{"name":"Thaumaturgical History IV","type":"Prophecy","text":"Thaumaturgical History IV Prophecy","flags":{"prophecy":true}},{"name":"Forceful Exorcism","type":"Prophecy","text":"Forceful Exorcism Prophecy","flags":{"prophecy":true}},{"name":"The Fall of an Empire","type":"Prophecy","text":"The Fall of an Empire Prophecy","flags":{"prophecy":true}},{"name":"The Last Watch","type":"Prophecy","text":"The Last Watch Prophecy","flags":{"prophecy":true}},{"name":"The Soulless Beast","type":"Prophecy","text":"The Soulless Beast Prophecy","flags":{"prophecy":true}},{"name":"Custodians of Silence","type":"Prophecy","text":"Custodians of Silence Prophecy","flags":{"prophecy":true}},{"name":"The Prison Guard","type":"Prophecy","text":"The Prison Guard Prophecy","flags":{"prophecy":true}},{"name":"The Prison Key","type":"Prophecy","text":"The Prison Key Prophecy","flags":{"prophecy":true}},{"name":"The Ward's Ward","type":"Prophecy","text":"The Ward's Ward Prophecy","flags":{"prophecy":true}},{"name":"The Lady in Black","type":"Prophecy","text":"The Lady in Black Prophecy","flags":{"prophecy":true}},{"name":"The Brutal Enforcer","type":"Prophecy","text":"The Brutal Enforcer Prophecy","flags":{"prophecy":true}},{"name":"Flesh of the Beast","type":"Prophecy","text":"Flesh of the Beast Prophecy","flags":{"prophecy":true}},{"name":"Storm on the Horizon","type":"Prophecy","text":"Storm on the Horizon Prophecy","flags":{"prophecy":true}},{"name":"The Nest","type":"Prophecy","text":"The Nest Prophecy","flags":{"prophecy":true}},{"name":"Abnormal Effulgence","type":"Prophecy","text":"Abnormal Effulgence Prophecy","flags":{"prophecy":true}},{"name":"Fire, Wood and Stone","type":"Prophecy","text":"Fire, Wood and Stone Prophecy","flags":{"prophecy":true}},{"name":"Baptism by Death","type":"Prophecy","text":"Baptism by Death Prophecy","flags":{"prophecy":true}},{"name":"Fear's Wide Reach","type":"Prophecy","text":"Fear's Wide Reach Prophecy","flags":{"prophecy":true}},{"name":"Against the Tide","type":"Prophecy","text":"Against the Tide Prophecy","flags":{"prophecy":true}},{"name":"From Death Springs Life","type":"Prophecy","text":"From Death Springs Life Prophecy","flags":{"prophecy":true}},{"name":"Weeping Death","type":"Prophecy","text":"Weeping Death Prophecy","flags":{"prophecy":true}},{"name":"Storm on the Reef","type":"Prophecy","text":"Storm on the Reef Prophecy","flags":{"prophecy":true}},{"name":"Strong as a Bull","type":"Prophecy","text":"Strong as a Bull Prophecy","flags":{"prophecy":true}},{"name":"Graceful Flames","type":"Prophecy","text":"Graceful Flames Prophecy","flags":{"prophecy":true}},{"name":"A Whispered Prayer","type":"Prophecy","text":"A Whispered Prayer Prophecy","flags":{"prophecy":true}},{"name":"Wind and Thunder","type":"Prophecy","text":"Wind and Thunder Prophecy","flags":{"prophecy":true}},{"name":"The Flayed Man","type":"Prophecy","text":"The Flayed Man Prophecy","flags":{"prophecy":true}},{"name":"Blood of the Betrayed","type":"Prophecy","text":"Blood of the Betrayed Prophecy","flags":{"prophecy":true}},{"name":"Defiled in the Sceptre","type":"Prophecy","text":"Defiled in the Sceptre Prophecy","flags":{"prophecy":true}},{"name":"The Sword King's Passion","type":"Prophecy","text":"The Sword King's Passion Prophecy","flags":{"prophecy":true}},{"name":"Blood in the Eyes","type":"Prophecy","text":"Blood in the Eyes Prophecy","flags":{"prophecy":true}},{"name":"Risen Blood","type":"Prophecy","text":"Risen Blood Prophecy","flags":{"prophecy":true}},{"name":"The Eagle's Cry","type":"Prophecy","text":"The Eagle's Cry Prophecy","flags":{"prophecy":true}},{"name":"Roth's Legacy","type":"Prophecy","text":"Roth's Legacy Prophecy","flags":{"prophecy":true}},{"name":"The Petrified","type":"Prophecy","text":"The Petrified Prophecy","flags":{"prophecy":true}},{"name":"Notched Flesh","type":"Prophecy","text":"Notched Flesh Prophecy","flags":{"prophecy":true}},{"name":"The Walking Mountain","type":"Prophecy","text":"The Walking Mountain Prophecy","flags":{"prophecy":true}},{"name":"A Firm Foothold","type":"Prophecy","text":"A Firm Foothold Prophecy","flags":{"prophecy":true}},{"name":"The Sinner's Stone","type":"Prophecy","text":"The Sinner's Stone Prophecy","flags":{"prophecy":true}},{"name":"The Lost Undying","type":"Prophecy","text":"The Lost Undying Prophecy","flags":{"prophecy":true}},{"name":"A Prodigious Hand","type":"Prophecy","text":"A Prodigious Hand Prophecy","flags":{"prophecy":true}},{"name":"A Call into the Void","type":"Prophecy","text":"A Call into the Void Prophecy","flags":{"prophecy":true}},{"name":"The Hollow Pledge","type":"Prophecy","text":"The Hollow Pledge Prophecy","flags":{"prophecy":true}},{"name":"Lost in the Pages","type":"Prophecy","text":"Lost in the Pages Prophecy","flags":{"prophecy":true}},{"name":"Cleanser of Sins","type":"Prophecy","text":"Cleanser of Sins Prophecy","flags":{"prophecy":true}},{"name":"Heart of the Fire","type":"Prophecy","text":"Heart of the Fire Prophecy","flags":{"prophecy":true}},{"name":"The Vanguard","type":"Prophecy","text":"The Vanguard Prophecy","flags":{"prophecy":true}},{"name":"The Watcher's Watcher","type":"Prophecy","text":"The Watcher's Watcher Prophecy","flags":{"prophecy":true}},{"name":"Plague of Rats","type":"Prophecy","text":"Plague of Rats Prophecy","flags":{"prophecy":true}},{"name":"Lasting Impressions","type":"Prophecy","text":"Lasting Impressions Prophecy","flags":{"prophecy":true}},{"name":"Kalandra's Craft","type":"Prophecy","text":"Kalandra's Craft Prophecy","flags":{"prophecy":true}},{"name":"The Dreaded Rhoa","type":"Prophecy","text":"The Dreaded Rhoa Prophecy","flags":{"prophecy":true}},{"name":"Fated Connections","type":"Prophecy","text":"Fated Connections Prophecy","flags":{"prophecy":true}},{"name":"A Regal Death","type":"Prophecy","text":"A Regal Death Prophecy","flags":{"prophecy":true}},{"name":"The Mysterious Gift","type":"Prophecy","text":"The Mysterious Gift Prophecy","flags":{"prophecy":true}},{"name":"Erasmus' Gift","type":"Prophecy","text":"Erasmus' Gift Prophecy","flags":{"prophecy":true}},{"name":"The Brothers of Necromancy","type":"Prophecy","text":"The Brothers of Necromancy Prophecy","flags":{"prophecy":true}},{"name":"An Unseen Peril","type":"Prophecy","text":"An Unseen Peril Prophecy","flags":{"prophecy":true}},{"name":"Waiting in Ambush","type":"Prophecy","text":"Waiting in Ambush Prophecy","flags":{"prophecy":true}},{"name":"Sun's Punishment","type":"Prophecy","text":"Sun's Punishment Prophecy","flags":{"prophecy":true}},{"name":"The Ambitious Bandit I","type":"Prophecy","text":"The Ambitious Bandit I Prophecy","flags":{"prophecy":true}},{"name":"The Ambitious Bandit II","type":"Prophecy","text":"The Ambitious Bandit II Prophecy","flags":{"prophecy":true}},{"name":"The Ambitious Bandit III","type":"Prophecy","text":"The Ambitious Bandit III Prophecy","flags":{"prophecy":true}},{"name":"Dance of Steel","type":"Prophecy","text":"Dance of Steel Prophecy","flags":{"prophecy":true}},{"name":"The Feral Lord I","type":"Prophecy","text":"The Feral Lord I Prophecy","flags":{"prophecy":true}},{"name":"The Feral Lord II","type":"Prophecy","text":"The Feral Lord II Prophecy","flags":{"prophecy":true}},{"name":"The Feral Lord III","type":"Prophecy","text":"The Feral Lord III Prophecy","flags":{"prophecy":true}},{"name":"The Feral Lord IV","type":"Prophecy","text":"The Feral Lord IV Prophecy","flags":{"prophecy":true}},{"name":"The Feral Lord V","type":"Prophecy","text":"The Feral Lord V Prophecy","flags":{"prophecy":true}},{"name":"Blind Faith","type":"Prophecy","text":"Blind Faith Prophecy","flags":{"prophecy":true}},{"name":"The Great Mind of the North","type":"Prophecy","text":"The Great Mind of the North Prophecy","flags":{"prophecy":true}},{"name":"The Great Leader of the North","type":"Prophecy","text":"The Great Leader of the North Prophecy","flags":{"prophecy":true}},{"name":"The Plaguemaw I","type":"Prophecy","text":"The Plaguemaw I Prophecy","flags":{"prophecy":true}},{"name":"The Plaguemaw II","type":"Prophecy","text":"The Plaguemaw II Prophecy","flags":{"prophecy":true}},{"name":"The Plaguemaw III","type":"Prophecy","text":"The Plaguemaw III Prophecy","flags":{"prophecy":true}},{"name":"The Plaguemaw IV","type":"Prophecy","text":"The Plaguemaw IV Prophecy","flags":{"prophecy":true}},{"name":"The Plaguemaw V","type":"Prophecy","text":"The Plaguemaw V Prophecy","flags":{"prophecy":true}},{"name":"The Stockkeeper","type":"Prophecy","text":"The Stockkeeper Prophecy","flags":{"prophecy":true}},{"name":"The Storm Spire","type":"Prophecy","text":"The Storm Spire Prophecy","flags":{"prophecy":true}},{"name":"The Unbreathing Queen I","type":"Prophecy","text":"The Unbreathing Queen I Prophecy","flags":{"prophecy":true}},{"name":"The Unbreathing Queen II","type":"Prophecy","text":"The Unbreathing Queen II Prophecy","flags":{"prophecy":true}},{"name":"The Unbreathing Queen III","type":"Prophecy","text":"The Unbreathing Queen III Prophecy","flags":{"prophecy":true}},{"name":"The Unbreathing Queen IV","type":"Prophecy","text":"The Unbreathing Queen IV Prophecy","flags":{"prophecy":true}},{"name":"The Unbreathing Queen V","type":"Prophecy","text":"The Unbreathing Queen V Prophecy","flags":{"prophecy":true}},{"name":"The Warmongers I","type":"Prophecy","text":"The Warmongers I Prophecy","flags":{"prophecy":true}},{"name":"The Warmongers II","type":"Prophecy","text":"The Warmongers II Prophecy","flags":{"prophecy":true}},{"name":"The Warmongers III","type":"Prophecy","text":"The Warmongers III Prophecy","flags":{"prophecy":true}},{"name":"The Warmongers IV","type":"Prophecy","text":"The Warmongers IV Prophecy","flags":{"prophecy":true}},{"name":"The Lost Maps","type":"Prophecy","text":"The Lost Maps Prophecy","flags":{"prophecy":true}},{"name":"A Rift in Time","type":"Prophecy","text":"A Rift in Time Prophecy","flags":{"prophecy":true}},{"name":"The Singular Spirit","type":"Prophecy","text":"The Singular Spirit Prophecy","flags":{"prophecy":true}},{"name":"Touched by the Wind","type":"Prophecy","text":"Touched by the Wind Prophecy","flags":{"prophecy":true}},{"name":"Resistant to Change","type":"Prophecy","text":"Resistant to Change Prophecy","flags":{"prophecy":true}},{"name":"Smothering Tendrils","type":"Prophecy","text":"Smothering Tendrils Prophecy","flags":{"prophecy":true}},{"name":"Vital Transformation","type":"Prophecy","text":"Vital Transformation Prophecy","flags":{"prophecy":true}},{"name":"Golden Touch","type":"Prophecy","text":"Golden Touch Prophecy","flags":{"prophecy":true}},{"name":"Holding the Bridge","type":"Prophecy","text":"Holding the Bridge Prophecy","flags":{"prophecy":true}},{"name":"Unbearable Whispers I","type":"Prophecy","text":"Unbearable Whispers I Prophecy","flags":{"prophecy":true}},{"name":"Unbearable Whispers II","type":"Prophecy","text":"Unbearable Whispers II Prophecy","flags":{"prophecy":true}},{"name":"Unbearable Whispers III","type":"Prophecy","text":"Unbearable Whispers III Prophecy","flags":{"prophecy":true}},{"name":"Unbearable Whispers IV","type":"Prophecy","text":"Unbearable Whispers IV Prophecy","flags":{"prophecy":true}},{"name":"Unbearable Whispers V","type":"Prophecy","text":"Unbearable Whispers V Prophecy","flags":{"prophecy":true}},{"name":"Undead Uprising","type":"Prophecy","text":"Undead Uprising Prophecy","flags":{"prophecy":true}},{"name":"Living Fires","type":"Prophecy","text":"Living Fires Prophecy","flags":{"prophecy":true}},{"name":"Unnatural Energy","type":"Prophecy","text":"Unnatural Energy Prophecy","flags":{"prophecy":true}},{"name":"In the Grasp of Corruption","type":"Prophecy","text":"In the Grasp of Corruption Prophecy","flags":{"prophecy":true}},{"name":"The Hardened Armour","type":"Prophecy","text":"The Hardened Armour Prophecy","flags":{"prophecy":true}},{"name":"The Beautiful Guide","type":"Prophecy","text":"The Beautiful Guide Prophecy","flags":{"prophecy":true}},{"name":"The Sharpened Blade","type":"Prophecy","text":"The Sharpened Blade Prophecy","flags":{"prophecy":true}},{"name":"The Corrupt","type":"Prophecy","text":"The Corrupt Prophecy","flags":{"prophecy":true}},{"name":"The Forgotten Soldiers","type":"Prophecy","text":"The Forgotten Soldiers Prophecy","flags":{"prophecy":true}},{"name":"Darktongue's Shriek","type":"Prophecy","text":"Darktongue's Shriek Prophecy","flags":{"prophecy":true}},{"name":"Greed's Folly","type":"Prophecy","text":"Greed's Folly Prophecy","flags":{"prophecy":true}}]},{"label":"Itemised Monsters","entries":[{"type":"Metamorph Brain","text":"Metamorph Brain"},{"type":"Metamorph Eye","text":"Metamorph Eye"},{"type":"Metamorph Heart","text":"Metamorph Heart"},{"type":"Metamorph Liver","text":"Metamorph Liver"},{"type":"Metamorph Lung","text":"Metamorph Lung"},{"type":"The Grey Plague","text":"The Grey Plague"},{"type":"Mephod, the Earth Scorcher","text":"Mephod, the Earth Scorcher"},{"type":"The Steel Soul","text":"The Steel Soul"},{"type":"Guardian of the Chimera","text":"Guardian of the Chimera"},{"type":"Guardian of the Hydra","text":"Guardian of the Hydra"},{"type":"Guardian of the Minotaur","text":"Guardian of the Minotaur"},{"type":"Guardian of the Phoenix","text":"Guardian of the Phoenix"},{"type":"The Cleansing Light","text":"The Cleansing Light"},{"type":"Woad, Mockery of Man","text":"Woad, Mockery of Man"},{"type":"Oriath's Virtue","text":"Oriath's Virtue"},{"type":"Legius Garhall","text":"Legius Garhall"},{"type":"Oriath's Vengeance","text":"Oriath's Vengeance"},{"type":"Oriath's Vigil","text":"Oriath's Vigil"},{"type":"Barthol, the Corruptor","text":"Barthol, the Corruptor"},{"type":"Warmonger","text":"Warmonger"},{"type":"Tyrant","text":"Tyrant"},{"type":"Blackguard Tempest","text":"Blackguard Tempest"},{"type":"Blackguard Avenger","text":"Blackguard Avenger"},{"type":"Piety the Empyrean","text":"Piety the Empyrean"},{"type":"Nightmare Manifest","text":"Nightmare Manifest"},{"type":"Master of the Blade","text":"Master of the Blade"},{"type":"Leif, the Swift-Handed","text":"Leif, the Swift-Handed"},{"type":"Enticer of Rot","text":"Enticer of Rot"},{"type":"Witch of the Cauldron","text":"Witch of the Cauldron"},{"type":"Oak the Mighty","text":"Oak the Mighty"},{"type":"Aulen Greychain","text":"Aulen Greychain"},{"type":"Sumter the Twisted","text":"Sumter the Twisted"},{"type":"Massier","text":"Massier"},{"type":"Lord of the Ashen Arrow","text":"Lord of the Ashen Arrow"},{"type":"The Sanguine Siren","text":"The Sanguine Siren"},{"type":"Marrowcrush","text":"Marrowcrush"},{"type":"The Great White Beast","text":"The Great White Beast"},{"type":"The Great White Bones","text":"The Great White Bones"},{"type":"Cave Beast","text":"Cave Beast"},{"type":"Shaggy Monstrosity","text":"Shaggy Monstrosity"},{"type":"Bone Cruncher","text":"Bone Cruncher"},{"type":"Hairy Bonecruncher","text":"Hairy Bonecruncher"},{"type":"Thicket Hulk","text":"Thicket Hulk"},{"type":"Enraptured Beast","text":"Enraptured Beast"},{"type":"Skeletal Beast","text":"Skeletal Beast"},{"type":"Corrupted Beast","text":"Corrupted Beast"},{"type":"Tyrannursus Maximus","text":"Tyrannursus Maximus"},{"type":"Forest Beast","text":"Forest Beast"},{"type":"Primal Beast","text":"Primal Beast"},{"type":"Armour Cruncher","text":"Armour Cruncher"},{"type":"Infected Beast","text":"Infected Beast"},{"type":"Risen Infested Beast","text":"Risen Infested Beast"},{"type":"Beast of the Pits","text":"Beast of the Pits"},{"type":"Executioner Bloodwing","text":"Executioner Bloodwing"},{"type":"Calderus","text":"Calderus"},{"type":"Junglemare","text":"Junglemare"},{"type":"Mutated Chieftain","text":"Mutated Chieftain"},{"type":"Crazed Chieftain","text":"Crazed Chieftain"},{"type":"Blood Progenitor","text":"Blood Progenitor"},{"type":"The Primal One","text":"The Primal One"},{"type":"Blood Chieftain","text":"Blood Chieftain"},{"type":"Carnage Chieftain","text":"Carnage Chieftain"},{"type":"Stygian Silverback","text":"Stygian Silverback"},{"type":"Aboriginal Chieftain","text":"Aboriginal Chieftain"},{"type":"Host Chieftain","text":"Host Chieftain"},{"type":"Hollowskull, the Willing Host","text":"Hollowskull, the Willing Host"},{"type":"Simi, the Nature Touched","text":"Simi, the Nature Touched"},{"type":"Nassar, Lion of the Seas","text":"Nassar, Lion of the Seas"},{"type":"Sulphurspawn","text":"Sulphurspawn"},{"type":"Bazur","text":"Bazur"},{"type":"Penitentiary Incarcerator","text":"Penitentiary Incarcerator"},{"type":"Fighting Bull","text":"Fighting Bull"},{"type":"Boulderback","text":"Boulderback"},{"type":"Crusher of Gladiators","text":"Crusher of Gladiators"},{"type":"Avalanche Rider","text":"Avalanche Rider"},{"type":"Grazing Taurus","text":"Grazing Taurus"},{"type":"Void Anomaly","text":"Void Anomaly"},{"type":"Avatar of Undoing","text":"Avatar of Undoing"},{"type":"Rooster Fiend","text":"Rooster Fiend"},{"type":"Rooster Demon","text":"Rooster Demon"},{"type":"Eyepecker","text":"Eyepecker"},{"type":"Stonebeak, Battle Fowl","text":"Stonebeak, Battle Fowl"},{"type":"Talon Archer","text":"Talon Archer"},{"type":"Feral Fowl","text":"Feral Fowl"},{"type":"Bleached Crawler","text":"Bleached Crawler"},{"type":"Savage Crab","text":"Savage Crab"},{"type":"Enraptured Crab","text":"Enraptured Crab"},{"type":"Infested Crab","text":"Infested Crab"},{"type":"Infested Crawler","text":"Infested Crawler"},{"type":"Ambrius, Legion Slayer","text":"Ambrius, Legion Slayer"},{"type":"K'aj Q'ura","text":"K'aj Q'ura"},{"type":"K'aj Y'ara'az","text":"K'aj Y'ara'az"},{"type":"K'aj A'alai","text":"K'aj A'alai"},{"type":"The Fallen Queen","text":"The Fallen Queen"},{"type":"Lady Stormflay","text":"Lady Stormflay"},{"type":"The Hollow Lady","text":"The Hollow Lady"},{"type":"The Broken Prince","text":"The Broken Prince"},{"type":"Erebix, Light's Bane","text":"Erebix, Light's Bane"},{"type":"Erythrophagia","text":"Erythrophagia"},{"type":"Portentia, the Foul","text":"Portentia, the Foul"},{"type":"Doedre the Defiler","text":"Doedre the Defiler"},{"type":"The Hallowed Husk","text":"The Hallowed Husk"},{"type":"Infected Ambusher","text":"Infected Ambusher"},{"type":"Mutated Ursa","text":"Mutated Ursa"},{"type":"Plummeting Ursa","text":"Plummeting Ursa"},{"type":"Tunnelfiend","text":"Tunnelfiend"},{"type":"Infested Tunnelfiend","text":"Infested Tunnelfiend"},{"type":"Woods Ursa","text":"Woods Ursa"},{"type":"Infested Ursa","text":"Infested Ursa"},{"type":"Q'uru","text":"Q'uru"},{"type":"It That Fell","text":"It That Fell"},{"type":"Torr Olgosso","text":"Torr Olgosso"},{"type":"Damoi Tui","text":"Damoi Tui"},{"type":"Bolt Brownfur, Earth Churner","text":"Bolt Brownfur, Earth Churner"},{"type":"Orra Greengate","text":"Orra Greengate"},{"type":"Thena Moga, the Crimson Storm","text":"Thena Moga, the Crimson Storm"},{"type":"Augustina Solaria","text":"Augustina Solaria"},{"type":"Ion Darkshroud, the Hungering Blade","text":"Ion Darkshroud, the Hungering Blade"},{"type":"Wilorin Demontamer","text":"Wilorin Demontamer"},{"type":"Eoin Greyfur","text":"Eoin Greyfur"},{"type":"Igna Phoenix","text":"Igna Phoenix"},{"type":"The Forgotten Soldier","text":"The Forgotten Soldier"},{"type":"Rabid Maw","text":"Rabid Maw"},{"type":"Mutated Maw","text":"Mutated Maw"},{"type":"Fetid Maw","text":"Fetid Maw"},{"type":"Filth Maw","text":"Filth Maw"},{"type":"Spinesnap","text":"Spinesnap"},{"type":"Varhesh, Shimmering Aberration","text":"Varhesh, Shimmering Aberration"},{"type":"Infested Maw","text":"Infested Maw"},{"type":"Bestial Maw","text":"Bestial Maw"},{"type":"Blue Frog","text":"Blue Frog"},{"type":"Common Frog","text":"Common Frog"},{"type":"Strange Frog","text":"Strange Frog"},{"type":"Hephaeus, The Hammer","text":"Hephaeus, The Hammer"},{"type":"Stalker of the Endless Dunes","text":"Stalker of the Endless Dunes"},{"type":"Captain Tanner Lightfoot","text":"Captain Tanner Lightfoot"},{"type":"Mutated Croaker","text":"Mutated Croaker"},{"type":"Putrid Chimeral","text":"Putrid Chimeral"},{"type":"Twisted Chimeral","text":"Twisted Chimeral"},{"type":"Chimeric Croaker","text":"Chimeric Croaker"},{"type":"Vaulting Croaker","text":"Vaulting Croaker"},{"type":"Genesis Paradisae","text":"Genesis Paradisae"},{"type":"Chrome-infused Croaker","text":"Chrome-infused Croaker"},{"type":"Chrome-touched Croaker","text":"Chrome-touched Croaker"},{"type":"Plumed Chimeral","text":"Plumed Chimeral"},{"type":"Feral Chimeral","text":"Feral Chimeral"},{"type":"Paradisae Venenum","text":"Paradisae Venenum"},{"type":"Alpha Paradisae","text":"Alpha Paradisae"},{"type":"The Basilisk","text":"The Basilisk"},{"type":"The Gorgon","text":"The Gorgon"},{"type":"Chrome-infused Chimeral","text":"Chrome-infused Chimeral"},{"type":"Chrome-touched Chimeral","text":"Chrome-touched Chimeral"},{"type":"Sallazzang","text":"Sallazzang"},{"type":"Wild Chimeral","text":"Wild Chimeral"},{"type":"Pesquin, the Mad Baron","text":"Pesquin, the Mad Baron"},{"type":"Telvar, the Inebriated","text":"Telvar, the Inebriated"},{"type":"Avatar of the Forge","text":"Avatar of the Forge"},{"type":"Avatar of the Skies","text":"Avatar of the Skies"},{"type":"Avatar of the Huntress","text":"Avatar of the Huntress"},{"type":"Bringer of Blood","text":"Bringer of Blood"},{"type":"Konu, Maker of Wind","text":"Konu, Maker of Wind"},{"type":"Goatman","text":"Goatman"},{"type":"Goatman Stomper","text":"Goatman Stomper"},{"type":"Rek'tar, the Breaker","text":"Rek'tar, the Breaker"},{"type":"The Faun","text":"The Faun"},{"type":"Elder-Blessed Goatman","text":"Elder-Blessed Goatman"},{"type":"Bearded Devil","text":"Bearded Devil"},{"type":"Guardian of the Mound","text":"Guardian of the Mound"},{"type":"Ungulath","text":"Ungulath"},{"type":"Sheaq, Maker of Floods","text":"Sheaq, Maker of Floods"},{"type":"Goatman Shaman","text":"Goatman Shaman"},{"type":"Goatman Fire-raiser","text":"Goatman Fire-raiser"},{"type":"Bearded Shaman","text":"Bearded Shaman"},{"type":"Bearded Skycaller","text":"Bearded Skycaller"},{"type":"Colossus Crusher","text":"Colossus Crusher"},{"type":"Alpine Devil","text":"Alpine Devil"},{"type":"Hill Devil","text":"Hill Devil"},{"type":"Alpine Shaman","text":"Alpine Shaman"},{"type":"Sebbert, Crescent's Point","text":"Sebbert, Crescent's Point"},{"type":"Jorus, Sky's Edge","text":"Jorus, Sky's Edge"},{"type":"Herald of Ashes","text":"Herald of Ashes"},{"type":"Herald of Thunder","text":"Herald of Thunder"},{"type":"Breaker Toruul","text":"Breaker Toruul"},{"type":"Flame Hellion","text":"Flame Hellion"},{"type":"Ruins Hellion","text":"Ruins Hellion"},{"type":"The Burning Menace","text":"The Burning Menace"},{"type":"Shackled Hellion","text":"Shackled Hellion"},{"type":"Mountain Hellion","text":"Mountain Hellion"},{"type":"Mountain Hellion Alpha","text":"Mountain Hellion Alpha"},{"type":"Enslaved Hellion","text":"Enslaved Hellion"},{"type":"Dune Hellion","text":"Dune Hellion"},{"type":"Elder-Blessed Hellion","text":"Elder-Blessed Hellion"},{"type":"Bladetooth","text":"Bladetooth"},{"type":"Fury Hound","text":"Fury Hound"},{"type":"War Hound","text":"War Hound"},{"type":"Raihara, Tukohama's Loyal","text":"Raihara, Tukohama's Loyal"},{"type":"Fragment of Winter","text":"Fragment of Winter"},{"type":"Shadow of the Vaal","text":"Shadow of the Vaal"},{"type":"Carrion Minion","text":"Carrion Minion"},{"type":"Carrion Swarmer","text":"Carrion Swarmer"},{"type":"Carrion Burrower","text":"Carrion Burrower"},{"type":"Scum Crawler","text":"Scum Crawler"},{"type":"Nightmarish Crawler","text":"Nightmarish Crawler"},{"type":"Mother of the Swarm","text":"Mother of the Swarm"},{"type":"The Sunburst Queen","text":"The Sunburst Queen"},{"type":"Rabid Broodqueen","text":"Rabid Broodqueen"},{"type":"Mutated Broodqueen","text":"Mutated Broodqueen"},{"type":"Rabid Minion","text":"Rabid Minion"},{"type":"Carrion Queen","text":"Carrion Queen"},{"type":"Gorulis, Will-Thief","text":"Gorulis, Will-Thief"},{"type":"Nightmarish Carrion","text":"Nightmarish Carrion"},{"type":"The Infernal King","text":"The Infernal King"},{"type":"Preethi, Eye-Pecker","text":"Preethi, Eye-Pecker"},{"type":"Kitava, The Destroyer","text":"Kitava, The Destroyer"},{"type":"Avian Retch","text":"Avian Retch"},{"type":"Inti of the Blood Moon","text":"Inti of the Blood Moon"},{"type":"Gluttonous Gull","text":"Gluttonous Gull"},{"type":"Elder-Blessed Retch","text":"Elder-Blessed Retch"},{"type":"The Goddess","text":"The Goddess"},{"type":"Vision of Justice","text":"Vision of Justice"},{"type":"Saqawine Rhex","text":"Saqawine Rhex"},{"type":"Farric Gargantuan","text":"Farric Gargantuan"},{"type":"Farric Taurus","text":"Farric Taurus"},{"type":"Farric Chieftain","text":"Farric Chieftain"},{"type":"Farric Goliath","text":"Farric Goliath"},{"type":"Fenumal Scorpion","text":"Fenumal Scorpion"},{"type":"Craicic Savage Crab","text":"Craicic Savage Crab"},{"type":"Craicic Spider Crab","text":"Craicic Spider Crab"},{"type":"Farric Ursa","text":"Farric Ursa"},{"type":"Craicic Maw","text":"Craicic Maw"},{"type":"Craicic Chimeral","text":"Craicic Chimeral"},{"type":"Farric Goatman","text":"Farric Goatman"},{"type":"Farric Flame Hellion Alpha","text":"Farric Flame Hellion Alpha"},{"type":"Farric Frost Hellion Alpha","text":"Farric Frost Hellion Alpha"},{"type":"Farric Magma Hound","text":"Farric Magma Hound"},{"type":"Saqawine Chimeral","text":"Saqawine Chimeral"},{"type":"Fenumal Queen","text":"Fenumal Queen"},{"type":"Saqawine Retch","text":"Saqawine Retch"},{"type":"Farric Lynx Alpha","text":"Farric Lynx Alpha"},{"type":"Saqawal, First of the Sky","text":"Saqawal, First of the Sky"},{"type":"Farric Ape","text":"Farric Ape"},{"type":"Craiceann, First of the Deep","text":"Craiceann, First of the Deep"},{"type":"Craicic Vassal","text":"Craicic Vassal"},{"type":"Farric Pit Hound","text":"Farric Pit Hound"},{"type":"Saqawine Rhoa","text":"Saqawine Rhoa"},{"type":"Fenumal Devourer","text":"Fenumal Devourer"},{"type":"Fenumal Scrabbler","text":"Fenumal Scrabbler"},{"type":"Craicic Sand Spitter","text":"Craicic Sand Spitter"},{"type":"Craicic Squid","text":"Craicic Squid"},{"type":"Craicic Shield Crab","text":"Craicic Shield Crab"},{"type":"Saqawine Cobra","text":"Saqawine Cobra"},{"type":"Saqawine Blood Viper","text":"Saqawine Blood Viper"},{"type":"Fenumal Widow","text":"Fenumal Widow"},{"type":"Fenumal Plagued Arachnid","text":"Fenumal Plagued Arachnid"},{"type":"Fenumal Hybrid Arachnid","text":"Fenumal Hybrid Arachnid"},{"type":"Fenumus, First of the Night","text":"Fenumus, First of the Night"},{"type":"Craicic Watcher","text":"Craicic Watcher"},{"type":"Farric Tiger Alpha","text":"Farric Tiger Alpha"},{"type":"Farrul, First of the Plains","text":"Farrul, First of the Plains"},{"type":"Saqawine Vulture","text":"Saqawine Vulture"},{"type":"Farric Wolf Alpha","text":"Farric Wolf Alpha"},{"type":"Stone of the Currents","text":"Stone of the Currents"},{"type":"Mutated Flamebeast","text":"Mutated Flamebeast"},{"type":"Crazed Flamebeast","text":"Crazed Flamebeast"},{"type":"Shredder of Gladiators","text":"Shredder of Gladiators"},{"type":"Dire Wolf","text":"Dire Wolf"},{"type":"Arctic Wolf","text":"Arctic Wolf"},{"type":"Snow Wolf","text":"Snow Wolf"},{"type":"Freezing Wolf","text":"Freezing Wolf"},{"type":"Mountain Lynx","text":"Mountain Lynx"},{"type":"Eater of Souls","text":"Eater of Souls"},{"type":"Nightmare's Omen","text":"Nightmare's Omen"},{"type":"Visceris","text":"Visceris"},{"type":"He of Many Pieces","text":"He of Many Pieces"},{"type":"Maligaro the Mutilator","text":"Maligaro the Mutilator"},{"type":"Escaped Rhex","text":"Escaped Rhex"},{"type":"Wild Rhex","text":"Wild Rhex"},{"type":"Adolescent Rhex","text":"Adolescent Rhex"},{"type":"Maternal Rhex","text":"Maternal Rhex"},{"type":"Unravelling Horror","text":"Unravelling Horror"},{"type":"Shrieker Eihal","text":"Shrieker Eihal"},{"type":"Champion of the Hollows","text":"Champion of the Hollows"},{"type":"Lord of the Hollows","text":"Lord of the Hollows"},{"type":"Messenger of the Hollows","text":"Messenger of the Hollows"},{"type":"Spirit of Aidan","text":"Spirit of Aidan"},{"type":"Spirit of Nadia","text":"Spirit of Nadia"},{"type":"Blood Ape","text":"Blood Ape"},{"type":"Dread Primate","text":"Dread Primate"},{"type":"Infested Ape","text":"Infested Ape"},{"type":"Stygian Ape","text":"Stygian Ape"},{"type":"Aidan the Frenzied","text":"Aidan the Frenzied"},{"type":"Blood Stasis ","text":"Blood Stasis "},{"type":"Blood Morpher","text":"Blood Morpher"},{"type":"Nadia the Soothing","text":"Nadia the Soothing"},{"type":"Carnage Ape","text":"Carnage Ape"},{"type":"Barrow Ape","text":"Barrow Ape"},{"type":"Primitive Ape","text":"Primitive Ape"},{"type":"Echo of the Verdant","text":"Echo of the Verdant"},{"type":"Titan of the Grove","text":"Titan of the Grove"},{"type":"Pileah, Corpse Burner","text":"Pileah, Corpse Burner"},{"type":"Pileah, Burning Corpse","text":"Pileah, Burning Corpse"},{"type":"Xixic, High Necromancer","text":"Xixic, High Necromancer"},{"type":"Brinecrack","text":"Brinecrack"},{"type":"Waste Lurcher","text":"Waste Lurcher"},{"type":"Parasite","text":"Parasite"},{"type":"Ravenous Parasite","text":"Ravenous Parasite"},{"type":"Vicious Parasite","text":"Vicious Parasite"},{"type":"The Encephelophage","text":"The Encephelophage"},{"type":"Plated Parasite","text":"Plated Parasite"},{"type":"Spitting Parasite","text":"Spitting Parasite"},{"type":"Poisonous Parasite","text":"Poisonous Parasite"},{"type":"Brine Vassal","text":"Brine Vassal"},{"type":"Swarthy Mollusc","text":"Swarthy Mollusc"},{"type":"Platinia","text":"Platinia"},{"type":"Auriot","text":"Auriot"},{"type":"Rhodion","text":"Rhodion"},{"type":"Pallias","text":"Pallias"},{"type":"Argient","text":"Argient"},{"type":"Rheniot","text":"Rheniot"},{"type":"Pitbull Demon","text":"Pitbull Demon"},{"type":"Vicious Hound","text":"Vicious Hound"},{"type":"Steelchaw","text":"Steelchaw"},{"type":"Gnar, Eater of Carrion","text":"Gnar, Eater of Carrion"},{"type":"The High Templar","text":"The High Templar"},{"type":"High Lithomancer","text":"High Lithomancer"},{"type":"Purge Hound","text":"Purge Hound"},{"type":"Lola, the Fierce","text":"Lola, the Fierce"},{"type":"Rocco, the Bloodthirsty","text":"Rocco, the Bloodthirsty"},{"type":"Drek, Apex Hunter","text":"Drek, Apex Hunter"},{"type":"Thraxia","text":"Thraxia"},{"type":"Infected Rhoa","text":"Infected Rhoa"},{"type":"Rabid Rhoa","text":"Rabid Rhoa"},{"type":"Mutated Rhoa","text":"Mutated Rhoa"},{"type":"Drought-Maddened Rhoa","text":"Drought-Maddened Rhoa"},{"type":"Skullbeak","text":"Skullbeak"},{"type":"Ventarus","text":"Ventarus"},{"type":"Rhoa Scavenger","text":"Rhoa Scavenger"},{"type":"Albino Rhoa","text":"Albino Rhoa"},{"type":"Great Rhoa","text":"Great Rhoa"},{"type":"Murk Runner","text":"Murk Runner"},{"type":"Oozeback Bloom","text":"Oozeback Bloom"},{"type":"The Cadaver Bull","text":"The Cadaver Bull"},{"type":"Infested Rhoa","text":"Infested Rhoa"},{"type":"Bone Rhoa","text":"Bone Rhoa"},{"type":"Corrupted Rhoa","text":"Corrupted Rhoa"},{"type":"Bone Scavenger","text":"Bone Scavenger"},{"type":"Elder-Blessed Rhoa","text":"Elder-Blessed Rhoa"},{"type":"Zombie Rhoa","text":"Zombie Rhoa"},{"type":"Ghostram","text":"Ghostram"},{"type":"Primordial Rhoa","text":"Primordial Rhoa"},{"type":"The Eroding One","text":"The Eroding One"},{"type":"Guardian of the Vault","text":"Guardian of the Vault"},{"type":"Pirate Treasure","text":"Pirate Treasure"},{"type":"Mystic Devourer","text":"Mystic Devourer"},{"type":"Devourer","text":"Devourer"},{"type":"Tunnelworm","text":"Tunnelworm"},{"type":"Kamaq, Soilmaker","text":"Kamaq, Soilmaker"},{"type":"The Conqueror Wurm","text":"The Conqueror Wurm"},{"type":"Tunneltrap","text":"Tunneltrap"},{"type":"Ancient Devourer","text":"Ancient Devourer"},{"type":"Dust Scrabbler","text":"Dust Scrabbler"},{"type":"Dirt Scrabbler","text":"Dirt Scrabbler"},{"type":"Infested Skitterer","text":"Infested Skitterer"},{"type":"Lowlands Hopper","text":"Lowlands Hopper"},{"type":"Sand Skitterer","text":"Sand Skitterer"},{"type":"Sand Leaper","text":"Sand Leaper"},{"type":"Quetzerxi","text":"Quetzerxi"},{"type":"Mother of the Hive","text":"Mother of the Hive"},{"type":"Gravel Eater","text":"Gravel Eater"},{"type":"Scrabbling Spitter","text":"Scrabbling Spitter"},{"type":"Rock Spitter","text":"Rock Spitter"},{"type":"Crustacean Sniper","text":"Crustacean Sniper"},{"type":"Crustacean Pelter","text":"Crustacean Pelter"},{"type":"The Dweller of the Deep","text":"The Dweller of the Deep"},{"type":"Granite Eater","text":"Granite Eater"},{"type":"Obsidian Eater","text":"Obsidian Eater"},{"type":"Infested Sniper","text":"Infested Sniper"},{"type":"Toxic Crawler","text":"Toxic Crawler"},{"type":"Sewage Crawler","text":"Sewage Crawler"},{"type":"Fossil Eater","text":"Fossil Eater"},{"type":"Glace","text":"Glace"},{"type":"Megaera","text":"Megaera"},{"type":"Black Scorpion","text":"Black Scorpion"},{"type":"Predatory Scorpion","text":"Predatory Scorpion"},{"type":"Tamipin","text":"Tamipin"},{"type":"Sulphuric Scorpion","text":"Sulphuric Scorpion"},{"type":"Sand Scorpion","text":"Sand Scorpion"},{"type":"Tamulus","text":"Tamulus"},{"type":"Merveil, the Returned","text":"Merveil, the Returned"},{"type":"Fire and Fury","text":"Fire and Fury"},{"type":"Shock and Horror","text":"Shock and Horror"},{"type":"Fated Siren","text":"Fated Siren"},{"type":"Merveil's Favoured","text":"Merveil's Favoured"},{"type":"Ambrosia, Daughter of Merveil","text":"Ambrosia, Daughter of Merveil"},{"type":"The Duchess","text":"The Duchess"},{"type":"Rima, Deep Temptress","text":"Rima, Deep Temptress"},{"type":"Amarissa, Daughter of Merveil","text":"Amarissa, Daughter of Merveil"},{"type":"Brood Princess","text":"Brood Princess"},{"type":"Merveil's Blessed","text":"Merveil's Blessed"},{"type":"Singing Siren","text":"Singing Siren"},{"type":"Merveil's Daughter","text":"Merveil's Daughter"},{"type":"Merveil's Attendant","text":"Merveil's Attendant"},{"type":"Merveil's Chosen","text":"Merveil's Chosen"},{"type":"Merveil's Retainer","text":"Merveil's Retainer"},{"type":"Terror of the Infinite Drifts","text":"Terror of the Infinite Drifts"},{"type":"Gisale, Thought Thief","text":"Gisale, Thought Thief"},{"type":"Shavronne the Sickening","text":"Shavronne the Sickening"},{"type":"Fused Crawler","text":"Fused Crawler"},{"type":"Mutated Winterclaw","text":"Mutated Winterclaw"},{"type":"Scrabbling Menace","text":"Scrabbling Menace"},{"type":"Cave Crustacean","text":"Cave Crustacean"},{"type":"Invading Crustacean","text":"Invading Crustacean"},{"type":"Shield Crab","text":"Shield Crab"},{"type":"Bleached Crustacean","text":"Bleached Crustacean"},{"type":"Shivershell","text":"Shivershell"},{"type":"Deep Crustacean","text":"Deep Crustacean"},{"type":"Infested Crustacean","text":"Infested Crustacean"},{"type":"Thunderskull","text":"Thunderskull"},{"type":"Belcer, the Pirate Lord","text":"Belcer, the Pirate Lord"},{"type":"Pagan Bishop of Agony","text":"Pagan Bishop of Agony"},{"type":"Litanius, the Black Prayer","text":"Litanius, the Black Prayer"},{"type":"Champion of Frost","text":"Champion of Frost"},{"type":"Steelpoint the Avenger","text":"Steelpoint the Avenger"},{"type":"Mirage of Bones","text":"Mirage of Bones"},{"type":"Burtok, Conjurer of Bones","text":"Burtok, Conjurer of Bones"},{"type":"Mutated Adder","text":"Mutated Adder"},{"type":"Infected Adder","text":"Infected Adder"},{"type":"Putrid Serpent","text":"Putrid Serpent"},{"type":"Acid Slitherer","text":"Acid Slitherer"},{"type":"Night Adder","text":"Night Adder"},{"type":"Host Adder","text":"Host Adder"},{"type":"Bramble Cobra","text":"Bramble Cobra"},{"type":"Host Cobra","text":"Host Cobra"},{"type":"Elder-Blessed Cobra","text":"Elder-Blessed Cobra"},{"type":"Spine Serpent","text":"Spine Serpent"},{"type":"Infested Serpent","text":"Infested Serpent"},{"type":"Thornrunner","text":"Thornrunner"},{"type":"Maze Slitherer","text":"Maze Slitherer"},{"type":"Barb Serpent","text":"Barb Serpent"},{"type":"Sand Serpent","text":"Sand Serpent"},{"type":"Glade Mamba","text":"Glade Mamba"},{"type":"Foreseen Spawn","text":"Foreseen Spawn"},{"type":"Cursed Spawn","text":"Cursed Spawn"},{"type":"Fathom Screamer","text":"Fathom Screamer"},{"type":"Siren's Spawn","text":"Siren's Spawn"},{"type":"Slimy Bloodsucker","text":"Slimy Bloodsucker"},{"type":"Unstable Larva","text":"Unstable Larva"},{"type":"Slimy Nemesis","text":"Slimy Nemesis"},{"type":"Venomous Spawn","text":"Venomous Spawn"},{"type":"Plagued Arachnid","text":"Plagued Arachnid"},{"type":"Diseased Arachnid","text":"Diseased Arachnid"},{"type":"Maligaro's Muse","text":"Maligaro's Muse"},{"type":"Hybrid Arachnid","text":"Hybrid Arachnid"},{"type":"Scalding Arachnid","text":"Scalding Arachnid"},{"type":"Mutated Arachnid","text":"Mutated Arachnid"},{"type":"Putrid Weaver","text":"Putrid Weaver"},{"type":"Sickly Spinner","text":"Sickly Spinner"},{"type":"Arachnoxia","text":"Arachnoxia"},{"type":"Hybrid Widow","text":"Hybrid Widow"},{"type":"Spinner of False Hope","text":"Spinner of False Hope"},{"type":"Queen of the Great Tangle","text":"Queen of the Great Tangle"},{"type":"Pewterfang","text":"Pewterfang"},{"type":"Cintiq, the Inescapable","text":"Cintiq, the Inescapable"},{"type":"Black Death","text":"Black Death"},{"type":"The Weaver","text":"The Weaver"},{"type":"Balah, Duke","text":"Balah, Duke"},{"type":"Lurking Venom","text":"Lurking Venom"},{"type":"Brooding Tarantula","text":"Brooding Tarantula"},{"type":"Buried Tarantula","text":"Buried Tarantula"},{"type":"Maligaro's Inspiration","text":"Maligaro's Inspiration"},{"type":"Enraptured Arachnid","text":"Enraptured Arachnid"},{"type":"Virulent Spider","text":"Virulent Spider"},{"type":"Ink Spinner","text":"Ink Spinner"},{"type":"Maze Webspinner","text":"Maze Webspinner"},{"type":"Maze Hatchling","text":"Maze Hatchling"},{"type":"Corrupted Spitter","text":"Corrupted Spitter"},{"type":"Corrupted Arach","text":"Corrupted Arach"},{"type":"Crypt Weaver","text":"Crypt Weaver"},{"type":"Mutant Arach","text":"Mutant Arach"},{"type":"Crypt Ambusher","text":"Crypt Ambusher"},{"type":"Cave Skitterer","text":"Cave Skitterer"},{"type":"Spindle Spider","text":"Spindle Spider"},{"type":"Hatchling","text":"Hatchling"},{"type":"Vaal Recluse","text":"Vaal Recluse"},{"type":"Arakaali's Daughter","text":"Arakaali's Daughter"},{"type":"Leaping Spider","text":"Leaping Spider"},{"type":"Noxious Tarantula","text":"Noxious Tarantula"},{"type":"Deadly Tarantula","text":"Deadly Tarantula"},{"type":"Webbed Spider","text":"Webbed Spider"},{"type":"Infected Spiker","text":"Infected Spiker"},{"type":"Porcupine Goliath","text":"Porcupine Goliath"},{"type":"Thistlesage","text":"Thistlesage"},{"type":"Chrome-infused Goliath","text":"Chrome-infused Goliath"},{"type":"Chrome-touched Goliath","text":"Chrome-touched Goliath"},{"type":"Maze Needleback","text":"Maze Needleback"},{"type":"Bladeback Guardian","text":"Bladeback Guardian"},{"type":"Infected Watcher","text":"Infected Watcher"},{"type":"Mutated Watcher","text":"Mutated Watcher"},{"type":"Soulless Watcher","text":"Soulless Watcher"},{"type":"Drifting Eye","text":"Drifting Eye"},{"type":"Cavern Drifter","text":"Cavern Drifter"},{"type":"Sewer Drifter","text":"Sewer Drifter"},{"type":"Strangledrift","text":"Strangledrift"},{"type":"The All-seeing Eye","text":"The All-seeing Eye"},{"type":"Carius, the Unnatural","text":"Carius, the Unnatural"},{"type":"Suncaller Asha","text":"Suncaller Asha"},{"type":"The Cursed King","text":"The Cursed King"},{"type":"Lycius, Midnight's Howl","text":"Lycius, Midnight's Howl"},{"type":"Arwyn, the Houndmaster","text":"Arwyn, the Houndmaster"},{"type":"Forest of Flames","text":"Forest of Flames"},{"type":"Puruna, the Challenger","text":"Puruna, the Challenger"},{"type":"Poporo, the Highest Spire","text":"Poporo, the Highest Spire"},{"type":"Tahsin, Warmaker","text":"Tahsin, Warmaker"},{"type":"Excellis Aurafix","text":"Excellis Aurafix"},{"type":"Riftwalker","text":"Riftwalker"},{"type":"The Arbiter of Knowledge","text":"The Arbiter of Knowledge"},{"type":"Ancient Sculptor","text":"Ancient Sculptor"},{"type":"Ancient Architect","text":"Ancient Architect"},{"type":"The Reaver","text":"The Reaver"},{"type":"Amalgam of Nightmares","text":"Amalgam of Nightmares"},{"type":"Armala, the Widow","text":"Armala, the Widow"},{"type":"Tore, Towering Ancient","text":"Tore, Towering Ancient"},{"type":"Olof, Son of the Headsman","text":"Olof, Son of the Headsman"},{"type":"The Brittle Emperor","text":"The Brittle Emperor"},{"type":"Mindless Scavenger","text":"Mindless Scavenger"},{"type":"Scavenging Vulture","text":"Scavenging Vulture"},{"type":"Rotting Vulture","text":"Rotting Vulture"},{"type":"Infested Vulture","text":"Infested Vulture"},{"type":"The Hundred Foot Shadow","text":"The Hundred Foot Shadow"},{"type":"The Winged Death","text":"The Winged Death"},{"type":"Rama, The Kinslayer","text":"Rama, The Kinslayer"},{"type":"Kalria, The Fallen","text":"Kalria, The Fallen"},{"type":"Invari, The Bloodshaper","text":"Invari, The Bloodshaper"},{"type":"Lokan, The Deceiver","text":"Lokan, The Deceiver"},{"type":"Marchak, The Betrayer","text":"Marchak, The Betrayer"},{"type":"Berrots, The Breaker","text":"Berrots, The Breaker"},{"type":"Vessider, The Unrivaled","text":"Vessider, The Unrivaled"},{"type":"Morgrants, The Deafening","text":"Morgrants, The Deafening"},{"type":"Yorishi, Aurora-sage","text":"Yorishi, Aurora-sage"},{"type":"Jeinei Yuushu","text":"Jeinei Yuushu"},{"type":"Otesha, the Giantslayer","text":"Otesha, the Giantslayer"},{"type":"Mutewind Lynx","text":"Mutewind Lynx"},{"type":"Uruk Baleh","text":"Uruk Baleh"},{"type":"El'Abin, Bloodeater","text":"El'Abin, Bloodeater"},{"type":"Leli Goya, Daughter of Ash","text":"Leli Goya, Daughter of Ash"},{"type":"Bin'aia, Crimson Rain","text":"Bin'aia, Crimson Rain"},{"type":"Musky \"Two-Eyes\" Grenn","text":"Musky \"Two-Eyes\" Grenn"},{"type":"Susara, Siren of Pondium","text":"Susara, Siren of Pondium"},{"type":"Lussi \"Rotmother\" Roth","text":"Lussi \"Rotmother\" Roth"},{"type":"The Blacksmith","text":"The Blacksmith"},{"type":"Tolman, the Exhumer","text":"Tolman, the Exhumer"}]},{"label":"","entries":[{"name":"Booming Populace","type":"Ivory Watchstone","text":"Booming Populace Ivory Watchstone","flags":{"unique":true}},{"name":"Irresistable Temptation","type":"Ivory Watchstone","text":"Irresistable Temptation Ivory Watchstone","flags":{"unique":true}},{"name":"Misinformation","type":"Ivory Watchstone","text":"Misinformation Ivory Watchstone","flags":{"unique":true}},{"name":"Stalwart Defenders","type":"Ivory Watchstone","text":"Stalwart Defenders Ivory Watchstone","flags":{"unique":true}},{"name":"Territories Unknown","type":"Ivory Watchstone","text":"Territories Unknown Ivory Watchstone","flags":{"unique":true}},{"name":"Terror","type":"Ivory Watchstone","text":"Terror Ivory Watchstone","flags":{"unique":true}},{"name":"War Among the Stars","type":"Ivory Watchstone","text":"War Among the Stars Ivory Watchstone","flags":{"unique":true}},{"type":"Crimson Watchstone","text":"Crimson Watchstone"},{"type":"Cobalt Watchstone","text":"Cobalt Watchstone"},{"type":"Viridian Watchstone","text":"Viridian Watchstone"},{"type":"Golden Watchstone","text":"Golden Watchstone"},{"type":"Ivory Watchstone","text":"Ivory Watchstone"}]},{"label":"","entries":[{"type":"Eelskin Sole","text":"Eelskin Sole"},{"type":"Foxhide Sole","text":"Foxhide Sole"},{"type":"Winged Sole","text":"Winged Sole"},{"type":"Silkweave Sole","text":"Silkweave Sole"},{"type":"Silver Brooch","text":"Silver Brooch"},{"type":"Golden Brooch","text":"Golden Brooch"},{"type":"Enamel Brooch","text":"Enamel Brooch"},{"type":"Foliate Brooch","text":"Foliate Brooch"},{"type":"Leather Bracers","text":"Leather Bracers"},{"type":"Studded Bracers","text":"Studded Bracers"},{"type":"Runed Bracers","text":"Runed Bracers"},{"type":"Steel Bracers","text":"Steel Bracers"},{"type":"Focal Stone","text":"Focal Stone"},{"type":"Conduit Line","text":"Conduit Line"},{"type":"Aggregator Charm","text":"Aggregator Charm"},{"type":"Burst Band","text":"Burst Band"},{"type":"Torn Cloak","text":"Torn Cloak"},{"type":"Tattered Cloak","text":"Tattered Cloak"},{"type":"Hooded Cloak","text":"Hooded Cloak"},{"type":"Whisper-woven Cloak","text":"Whisper-woven Cloak"},{"type":"Crude Ward","text":"Crude Ward"},{"type":"Lustrous Ward","text":"Lustrous Ward"},{"type":"Shining Ward","text":"Shining Ward"},{"type":"Thaumaturgical Ward","text":"Thaumaturgical Ward"},{"type":"Basic Disguise Kit","text":"Basic Disguise Kit"},{"type":"Theatre Disguise Kit","text":"Theatre Disguise Kit"},{"type":"Espionage Disguise Kit","text":"Espionage Disguise Kit"},{"type":"Regicide Disguise Kit","text":"Regicide Disguise Kit"},{"type":"Voltaxic Flashpowder","text":"Voltaxic Flashpowder"},{"type":"Trarthan Flashpowder","text":"Trarthan Flashpowder"},{"type":"Azurite Flashpowder","text":"Azurite Flashpowder"},{"type":"Thaumetic Flashpowder","text":"Thaumetic Flashpowder"},{"type":"Steel Drill","text":"Steel Drill"},{"type":"Flanged Drill","text":"Flanged Drill"},{"type":"Sulphur Blowtorch","text":"Sulphur Blowtorch"},{"type":"Thaumetic Blowtorch","text":"Thaumetic Blowtorch"},{"type":"Simple Lockpick","text":"Simple Lockpick"},{"type":"Standard Lockpick","text":"Standard Lockpick"},{"type":"Fine Lockpick","text":"Fine Lockpick"},{"type":"Master Lockpick","text":"Master Lockpick"},{"type":"Rough Sharpening Stone","text":"Rough Sharpening Stone"},{"type":"Standard Sharpening Stone","text":"Standard Sharpening Stone"},{"type":"Fine Sharpening Stone","text":"Fine Sharpening Stone"},{"type":"Obsidian Sharpening Stone","text":"Obsidian Sharpening Stone"},{"type":"Crude Sensing Charm","text":"Crude Sensing Charm"},{"type":"Fine Sensing Charm","text":"Fine Sensing Charm"},{"type":"Polished Sensing Charm","text":"Polished Sensing Charm"},{"type":"Thaumaturgical Sensing Charm","text":"Thaumaturgical Sensing Charm"},{"type":"Flanged Arrowhead","text":"Flanged Arrowhead"},{"type":"Fragmenting Arrowhead","text":"Fragmenting Arrowhead"},{"type":"Hollowpoint Arrowhead","text":"Hollowpoint Arrowhead"},{"type":"Precise Arrowhead","text":"Precise Arrowhead"},{"type":"Essential Keyring","text":"Essential Keyring"},{"type":"Versatile Keyring","text":"Versatile Keyring"},{"type":"Skeleton Keyring","text":"Skeleton Keyring"},{"type":"Grandmaster Keyring","text":"Grandmaster Keyring"}]},{"label":"","entries":[{"type":"Blueprint: Bunker","text":"Blueprint: Bunker"},{"type":"Blueprint: Records Office","text":"Blueprint: Records Office"},{"type":"Blueprint: Laboratory","text":"Blueprint: Laboratory"},{"type":"Blueprint: Prohibited Library","text":"Blueprint: Prohibited Library"},{"type":"Blueprint: Smuggler's Den","text":"Blueprint: Smuggler's Den"},{"type":"Blueprint: Repository","text":"Blueprint: Repository"},{"type":"Blueprint: Tunnels","text":"Blueprint: Tunnels"},{"type":"Blueprint: Underbelly","text":"Blueprint: Underbelly"},{"type":"Contract: Bunker","text":"Contract: Bunker"},{"type":"Contract: Records Office","text":"Contract: Records Office"},{"type":"Contract: Laboratory","text":"Contract: Laboratory"},{"type":"Contract: Prohibited Library","text":"Contract: Prohibited Library"},{"type":"Contract: Mansion","text":"Contract: Mansion"},{"type":"Contract: Smuggler's Den","text":"Contract: Smuggler's Den"},{"type":"Contract: Repository","text":"Contract: Repository"},{"type":"Contract: Tunnels","text":"Contract: Tunnels"},{"type":"Contract: Underbelly","text":"Contract: Underbelly"}]}] \ No newline at end of file diff --git a/tests/Sidekick.TestInfrastructure/TestData/StatDataCategory.json b/tests/Sidekick.TestInfrastructure/TestData/StatDataCategory.json index fe5bb273..203f1389 100644 --- a/tests/Sidekick.TestInfrastructure/TestData/StatDataCategory.json +++ b/tests/Sidekick.TestInfrastructure/TestData/StatDataCategory.json @@ -1 +1 @@ -[{"label":"Pseudo","entries":[{"id":"pseudo.pseudo_total_cold_resistance","text":"\u002B#% total to Cold Resistance","type":"pseudo"},{"id":"pseudo.pseudo_total_fire_resistance","text":"\u002B#% total to Fire Resistance","type":"pseudo"},{"id":"pseudo.pseudo_total_lightning_resistance","text":"\u002B#% total to Lightning Resistance","type":"pseudo"},{"id":"pseudo.pseudo_total_elemental_resistance","text":"\u002B#% total Elemental Resistance","type":"pseudo"},{"id":"pseudo.pseudo_total_chaos_resistance","text":"\u002B#% total to Chaos Resistance","type":"pseudo"},{"id":"pseudo.pseudo_total_resistance","text":"\u002B#% total Resistance","type":"pseudo"},{"id":"pseudo.pseudo_count_resistances","text":"# total Resistances","type":"pseudo"},{"id":"pseudo.pseudo_count_elemental_resistances","text":"# total Elemental Resistances","type":"pseudo"},{"id":"pseudo.pseudo_total_all_elemental_resistances","text":"\u002B#% total to all Elemental Resistances","type":"pseudo"},{"id":"pseudo.pseudo_total_strength","text":"\u002B# total to Strength","type":"pseudo"},{"id":"pseudo.pseudo_total_dexterity","text":"\u002B# total to Dexterity","type":"pseudo"},{"id":"pseudo.pseudo_total_intelligence","text":"\u002B# total to Intelligence","type":"pseudo"},{"id":"pseudo.pseudo_total_all_attributes","text":"\u002B# total to all Attributes","type":"pseudo"},{"id":"pseudo.pseudo_total_life","text":"\u002B# total maximum Life","type":"pseudo"},{"id":"pseudo.pseudo_total_mana","text":"\u002B# total maximum Mana","type":"pseudo"},{"id":"pseudo.pseudo_total_energy_shield","text":"\u002B# total maximum Energy Shield","type":"pseudo"},{"id":"pseudo.pseudo_increased_energy_shield","text":"#% total increased maximum Energy Shield","type":"pseudo"},{"id":"pseudo.pseudo_total_attack_speed","text":"\u002B#% total Attack Speed","type":"pseudo"},{"id":"pseudo.pseudo_total_cast_speed","text":"\u002B#% total Cast Speed","type":"pseudo"},{"id":"pseudo.pseudo_increased_movement_speed","text":"#% increased Movement Speed","type":"pseudo"},{"id":"pseudo.pseudo_increased_physical_damage","text":"#% total increased Physical Damage","type":"pseudo"},{"id":"pseudo.pseudo_global_critical_strike_chance","text":"\u002B#% Global Critical Strike Chance","type":"pseudo"},{"id":"pseudo.pseudo_critical_strike_chance_for_spells","text":"\u002B#% total Critical Strike Chance for Spells","type":"pseudo"},{"id":"pseudo.pseudo_global_critical_strike_multiplier","text":"\u002B#% Global Critical Strike Multiplier","type":"pseudo"},{"id":"pseudo.pseudo_adds_physical_damage","text":"Adds # to # Physical Damage","type":"pseudo"},{"id":"pseudo.pseudo_adds_lightning_damage","text":"Adds # to # Lightning Damage","type":"pseudo"},{"id":"pseudo.pseudo_adds_cold_damage","text":"Adds # to # Cold Damage","type":"pseudo"},{"id":"pseudo.pseudo_adds_fire_damage","text":"Adds # to # Fire Damage","type":"pseudo"},{"id":"pseudo.pseudo_adds_elemental_damage","text":"Adds # to # Elemental Damage","type":"pseudo"},{"id":"pseudo.pseudo_adds_chaos_damage","text":"Adds # to # Chaos Damage","type":"pseudo"},{"id":"pseudo.pseudo_adds_damage","text":"Adds # to # Damage","type":"pseudo"},{"id":"pseudo.pseudo_adds_physical_damage_to_attacks","text":"Adds # to # Physical Damage to Attacks","type":"pseudo"},{"id":"pseudo.pseudo_adds_lightning_damage_to_attacks","text":"Adds # to # Lightning Damage to Attacks","type":"pseudo"},{"id":"pseudo.pseudo_adds_cold_damage_to_attacks","text":"Adds # to # Cold Damage to Attacks","type":"pseudo"},{"id":"pseudo.pseudo_adds_fire_damage_to_attacks","text":"Adds # to # Fire Damage to Attacks","type":"pseudo"},{"id":"pseudo.pseudo_adds_elemental_damage_to_attacks","text":"Adds # to # Elemental Damage to Attacks","type":"pseudo"},{"id":"pseudo.pseudo_adds_chaos_damage_to_attacks","text":"Adds # to # Chaos Damage to Attacks","type":"pseudo"},{"id":"pseudo.pseudo_adds_damage_to_attacks","text":"Adds # to # Damage to Attacks","type":"pseudo"},{"id":"pseudo.pseudo_adds_physical_damage_to_spells","text":"Adds # to # Physical Damage to Spells","type":"pseudo"},{"id":"pseudo.pseudo_adds_lightning_damage_to_spells","text":"Adds # to # Lightning Damage to Spells","type":"pseudo"},{"id":"pseudo.pseudo_adds_cold_damage_to_spells","text":"Adds # to # Cold Damage to Spells","type":"pseudo"},{"id":"pseudo.pseudo_adds_fire_damage_to_spells","text":"Adds # to # Fire Damage to Spells","type":"pseudo"},{"id":"pseudo.pseudo_adds_elemental_damage_to_spells","text":"Adds # to # Elemental Damage to Spells","type":"pseudo"},{"id":"pseudo.pseudo_adds_chaos_damage_to_spells","text":"Adds # to # Chaos Damage to Spells","type":"pseudo"},{"id":"pseudo.pseudo_adds_damage_to_spells","text":"Adds # to # Damage to Spells","type":"pseudo"},{"id":"pseudo.pseudo_increased_elemental_damage","text":"#% increased Elemental Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_lightning_damage","text":"#% increased Lightning Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_cold_damage","text":"#% increased Cold Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_fire_damage","text":"#% increased Fire Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_spell_damage","text":"#% increased Spell Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_lightning_spell_damage","text":"#% increased Lightning Spell Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_cold_spell_damage","text":"#% increased Cold Spell Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_fire_spell_damage","text":"#% increased Fire Spell Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_lightning_damage_with_attack_skills","text":"#% increased Lightning Damage with Attack Skills","type":"pseudo"},{"id":"pseudo.pseudo_increased_cold_damage_with_attack_skills","text":"#% increased Cold Damage with Attack Skills","type":"pseudo"},{"id":"pseudo.pseudo_increased_fire_damage_with_attack_skills","text":"#% increased Fire Damage with Attack Skills","type":"pseudo"},{"id":"pseudo.pseudo_increased_elemental_damage_with_attack_skills","text":"#% increased Elemental Damage with Attack Skills","type":"pseudo"},{"id":"pseudo.pseudo_increased_rarity","text":"#% increased Rarity of Items found","type":"pseudo"},{"id":"pseudo.pseudo_increased_burning_damage","text":"#% increased Burning Damage","type":"pseudo"},{"id":"pseudo.pseudo_total_life_regen","text":"# Life Regenerated per Second","type":"pseudo"},{"id":"pseudo.pseudo_percent_life_regen","text":"#% of Life Regenerated per Second","type":"pseudo"},{"id":"pseudo.pseudo_physical_attack_damage_leeched_as_life","text":"#% of Physical Attack Damage Leeched as Life","type":"pseudo"},{"id":"pseudo.pseudo_physical_attack_damage_leeched_as_mana","text":"#% of Physical Attack Damage Leeched as Mana","type":"pseudo"},{"id":"pseudo.pseudo_increased_mana_regen","text":"#% increased Mana Regeneration Rate","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_gem_levels","text":"\u002B# total to Level of Socketed Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_elemental_gem_levels","text":"\u002B# total to Level of Socketed Elemental Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_fire_gem_levels","text":"\u002B# total to Level of Socketed Fire Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_cold_gem_levels","text":"\u002B# total to Level of Socketed Cold Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_lightning_gem_levels","text":"\u002B# total to Level of Socketed Lightning Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_chaos_gem_levels","text":"\u002B# total to Level of Socketed Chaos Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_spell_gem_levels","text":"\u002B# total to Level of Socketed Spell Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_projectile_gem_levels","text":"\u002B# total to Level of Socketed Projectile Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_bow_gem_levels","text":"\u002B# total to Level of Socketed Bow Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_melee_gem_levels","text":"\u002B# total to Level of Socketed Melee Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_minion_gem_levels","text":"\u002B# total to Level of Socketed Minion Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_strength_gem_levels","text":"\u002B# total to Level of Socketed Strength Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_dexterity_gem_levels","text":"\u002B# total to Level of Socketed Dexterity Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_intelligence_gem_levels","text":"\u002B# total to Level of Socketed Intelligence Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_aura_gem_levels","text":"\u002B# total to Level of Socketed Aura Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_movement_gem_levels","text":"\u002B# total to Level of Socketed Movement Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_curse_gem_levels","text":"\u002B# total to Level of Socketed Curse Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_vaal_gem_levels","text":"\u002B# total to Level of Socketed Vaal Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_support_gem_levels","text":"\u002B# total to Level of Socketed Support Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_skill_gem_levels","text":"\u002B# total to Level of Socketed Skill Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_warcry_gem_levels","text":"\u002B# total to Level of Socketed Warcry Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_golem_gem_levels","text":"\u002B# total to Level of Socketed Golem Gems","type":"pseudo"},{"id":"pseudo.pseudo_number_of_implicit_mods","text":"# Implicit Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_prefix_mods","text":"# Prefix Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_suffix_mods","text":"# Suffix Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_affix_mods","text":"# Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_crafted_prefix_mods","text":"# Crafted Prefix Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_crafted_suffix_mods","text":"# Crafted Suffix Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_crafted_mods","text":"# Crafted Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_empty_prefix_mods","text":"# Empty Prefix Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_empty_suffix_mods","text":"# Empty Suffix Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_empty_affix_mods","text":"# Empty Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_whispering_incubator_kills","text":"# Incubator Kills (Whispering)","type":"pseudo"},{"id":"pseudo.pseudo_fine_incubator_kills","text":"# Incubator Kills (Fine)","type":"pseudo"},{"id":"pseudo.pseudo_singular_incubator_kills","text":"# Incubator Kills (Singular)","type":"pseudo"},{"id":"pseudo.pseudo_cartographers_incubator_kills","text":"# Incubator Kills (Cartographer\u0027s)","type":"pseudo"},{"id":"pseudo.pseudo_otherworldly_incubator_kills","text":"# Incubator Kills (Otherwordly)","type":"pseudo"},{"id":"pseudo.pseudo_abyssal_incubator_kills","text":"# Incubator Kills (Abyssal)","type":"pseudo"},{"id":"pseudo.pseudo_fragmented_incubator_kills","text":"# Incubator Kills (Fragmented)","type":"pseudo"},{"id":"pseudo.pseudo_skittering_incubator_kills","text":"# Incubator Kills (Skittering)","type":"pseudo"},{"id":"pseudo.pseudo_infused_incubator_kills","text":"# Incubator Kills (Infused)","type":"pseudo"},{"id":"pseudo.pseudo_fossilised_incubator_kills","text":"# Incubator Kills (Fossilised)","type":"pseudo"},{"id":"pseudo.pseudo_decadent_incubator_kills","text":"# Incubator Kills (Decadent)","type":"pseudo"},{"id":"pseudo.pseudo_diviners_incubator_kills","text":"# Incubator Kills (Diviner\u0027s)","type":"pseudo"},{"id":"pseudo.pseudo_primal_incubator_kills","text":"# Incubator Kills (Primal)","type":"pseudo"},{"id":"pseudo.pseudo_enchanted_incubator_kills","text":"# Incubator Kills (Enchanted)","type":"pseudo"},{"id":"pseudo.pseudo_geomancers_incubator_kills","text":"# Incubator Kills (Geomancer\u0027s)","type":"pseudo"},{"id":"pseudo.pseudo_ornate_incubator_kills","text":"# Incubator Kills (Ornate)","type":"pseudo"},{"id":"pseudo.pseudo_timelost_incubator_kills","text":"# Incubator Kills (Time-Lost)","type":"pseudo"},{"id":"pseudo.pseudo_celestial_armoursmiths_incubator_kills","text":"# Incubator Kills (Celestial Armoursmith\u0027s)","type":"pseudo"},{"id":"pseudo.pseudo_celestial_blacksmiths_incubator_kills","text":"# Incubator Kills (Celestial Blacksmith\u0027s)","type":"pseudo"},{"id":"pseudo.pseudo_celestial_jewellers_incubator_kills","text":"# Incubator Kills (Celestial Jeweller\u0027s)","type":"pseudo"},{"id":"pseudo.pseudo_eldritch_incubator_kills","text":"# Incubator Kills (Eldritch)","type":"pseudo"},{"id":"pseudo.pseudo_obscured_incubator_kills","text":"# Incubator Kills (Obscured)","type":"pseudo"},{"id":"pseudo.pseudo_foreboding_incubator_kills","text":"# Incubator Kills (Foreboding)","type":"pseudo"},{"id":"pseudo.pseudo_thaumaturges_incubator_kills","text":"# Incubator Kills (Thaumaturge\u0027s)","type":"pseudo"},{"id":"pseudo.pseudo_mysterious_incubator_kills","text":"# Incubator Kills (Mysterious)","type":"pseudo"},{"id":"pseudo.pseudo_gemcutters_incubator_kills","text":"# Incubator Kills (Gemcutter\u0027s)","type":"pseudo"},{"id":"pseudo.pseudo_feral_incubator_kills","text":"# Incubator Kills (Feral)","type":"pseudo"},{"id":"pseudo.pseudo_number_of_fractured_mods","text":"# Fractured Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_notable_passive_skills","text":"# Notable Passive Skills","type":"pseudo"},{"id":"pseudo.pseudo_jewellery_elemental_quality","text":"\u002B#% Quality to Elemental Damage Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_jewellery_caster_quality","text":"\u002B#% Quality to Caster Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_jewellery_attack_quality","text":"\u002B#% Quality to Attack Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_jewellery_defense_quality","text":"\u002B#% Quality to Defence Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_jewellery_resource_quality","text":"\u002B#% Quality to Life and Mana Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_jewellery_resistance_quality","text":"\u002B#% Quality to Resistance Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_jewellery_attribute_quality","text":"\u002B#% Quality to Attribute Modifiers","type":"pseudo"}]},{"label":"Explicit","entries":[{"id":"explicit.stat_3299347043","text":"# to maximum Life","type":"explicit"},{"id":"explicit.stat_4220027924","text":"#% to Cold Resistance","type":"explicit"},{"id":"explicit.stat_3372524247","text":"#% to Fire Resistance","type":"explicit"},{"id":"explicit.stat_1671376347","text":"#% to Lightning Resistance","type":"explicit"},{"id":"explicit.stat_1050105434","text":"# to maximum Mana","type":"explicit"},{"id":"explicit.stat_4080418644","text":"# to Strength","type":"explicit"},{"id":"explicit.stat_3489782002","text":"# to maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_3261801346","text":"# to Dexterity","type":"explicit"},{"id":"explicit.stat_328541901","text":"# to Intelligence","type":"explicit"},{"id":"explicit.stat_2901986750","text":"#% to all Elemental Resistances","type":"explicit"},{"id":"explicit.stat_2511217560","text":"#% increased Stun and Block Recovery","type":"explicit"},{"id":"explicit.stat_3325883026","text":"Regenerate # Life per second","type":"explicit"},{"id":"explicit.stat_3917489142","text":"#% increased Rarity of Items found","type":"explicit"},{"id":"explicit.stat_1509134228","text":"#% increased Physical Damage","type":"explicit"},{"id":"explicit.stat_3032590688","text":"Adds # to # Physical Damage to Attacks","type":"explicit"},{"id":"explicit.stat_2250533757","text":"#% increased Movement Speed","type":"explicit"},{"id":"explicit.stat_789117908","text":"#% increased Mana Regeneration Rate","type":"explicit"},{"id":"explicit.stat_3556824919","text":"#% to Global Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_803737631","text":"# to Accuracy Rating","type":"explicit"},{"id":"explicit.stat_4052037485","text":"# to maximum Energy Shield (Local)","type":"explicit"},{"id":"explicit.stat_983749596","text":"#% increased maximum Life","type":"explicit"},{"id":"explicit.stat_2923486259","text":"#% to Chaos Resistance","type":"explicit"},{"id":"explicit.stat_1940865751","text":"Adds # to # Physical Damage (Local)","type":"explicit"},{"id":"explicit.stat_4079888060","text":"# Added Passive Skills are Jewel Sockets","type":"explicit"},{"id":"explicit.stat_1754445556","text":"Adds # to # Lightning Damage to Attacks","type":"explicit"},{"id":"explicit.stat_2891184298","text":"#% increased Cast Speed","type":"explicit"},{"id":"explicit.stat_1573130764","text":"Adds # to # Fire Damage to Attacks","type":"explicit"},{"id":"explicit.stat_1379411836","text":"# to all Attributes","type":"explicit"},{"id":"explicit.stat_3962278098","text":"#% increased Fire Damage","type":"explicit"},{"id":"explicit.stat_4067062424","text":"Adds # to # Cold Damage to Attacks","type":"explicit"},{"id":"explicit.stat_587431675","text":"#% increased Global Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_124859000","text":"#% increased Evasion Rating (Local)","type":"explicit"},{"id":"explicit.stat_4015621042","text":"#% increased Energy Shield (Local)","type":"explicit"},{"id":"explicit.stat_3291658075","text":"#% increased Cold Damage","type":"explicit"},{"id":"explicit.stat_387439868","text":"#% increased Elemental Damage with Attack Skills","type":"explicit"},{"id":"explicit.stat_2231156303","text":"#% increased Lightning Damage","type":"explicit"},{"id":"explicit.stat_2144192055","text":"# to Evasion Rating","type":"explicit"},{"id":"explicit.stat_1310194496","text":"#% increased Global Physical Damage","type":"explicit"},{"id":"explicit.stat_1263695895","text":"#% increased Light Radius","type":"explicit"},{"id":"explicit.stat_1062208444","text":"#% increased Armour (Local)","type":"explicit"},{"id":"explicit.stat_2375316951","text":"#% increased Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_3593843976","text":"#% of Physical Attack Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_3695891184","text":"# Life gained on Kill","type":"explicit"},{"id":"explicit.stat_3321629045","text":"#% increased Armour and Energy Shield (Local)","type":"explicit"},{"id":"explicit.stat_53045048","text":"# to Evasion Rating (Local)","type":"explicit"},{"id":"explicit.stat_2517001139","text":"#% increased Stun Duration on Enemies","type":"explicit"},{"id":"explicit.stat_3336890334","text":"Adds # to # Lightning Damage (Local)","type":"explicit"},{"id":"explicit.stat_809229260","text":"# to Armour","type":"explicit"},{"id":"explicit.stat_1368271171","text":"# Mana gained on Kill","type":"explicit"},{"id":"explicit.stat_691932474","text":"# to Accuracy Rating (Local)","type":"explicit"},{"id":"explicit.stat_1037193709","text":"Adds # to # Cold Damage (Local)","type":"explicit"},{"id":"explicit.stat_3484657501","text":"# to Armour (Local)","type":"explicit"},{"id":"explicit.stat_2748665614","text":"#% increased maximum Mana","type":"explicit"},{"id":"explicit.stat_2451402625","text":"#% increased Armour and Evasion (Local)","type":"explicit"},{"id":"explicit.stat_2974417149","text":"#% increased Spell Damage","type":"explicit"},{"id":"explicit.stat_3237948413","text":"#% of Physical Attack Damage Leeched as Mana","type":"explicit"},{"id":"explicit.stat_624954515","text":"#% increased Global Accuracy Rating","type":"explicit"},{"id":"explicit.stat_709508406","text":"Adds # to # Fire Damage (Local)","type":"explicit"},{"id":"explicit.stat_2797971005","text":"# Life gained for each Enemy hit by your Attacks","type":"explicit"},{"id":"explicit.stat_3767873853","text":"Reflects # Physical Damage to Melee Attackers","type":"explicit"},{"id":"explicit.stat_1839076647","text":"#% increased Projectile Damage","type":"explicit"},{"id":"explicit.stat_3759663284","text":"#% increased Projectile Speed","type":"explicit"},{"id":"explicit.stat_2866361420","text":"#% increased Armour","type":"explicit"},{"id":"explicit.stat_1443060084","text":"#% reduced Enemy Stun Threshold","type":"explicit"},{"id":"explicit.stat_1999113824","text":"#% increased Evasion and Energy Shield (Local)","type":"explicit"},{"id":"explicit.stat_95249895","text":"#% more Monster Life","type":"explicit"},{"id":"explicit.stat_2106365538","text":"#% increased Evasion Rating","type":"explicit"},{"id":"explicit.stat_4251717817","text":"#% increased Area Damage","type":"explicit"},{"id":"explicit.stat_737908626","text":"#% increased Critical Strike Chance for Spells","type":"explicit"},{"id":"explicit.stat_210067635","text":"#% increased Attack Speed (Local)","type":"explicit"},{"id":"explicit.stat_2154246560","text":"#% increased Damage","type":"explicit"},{"id":"explicit.stat_1175385867","text":"#% increased Burning Damage","type":"explicit"},{"id":"explicit.stat_2831165374","text":"Adds # to # Lightning Damage to Spells","type":"explicit"},{"id":"explicit.stat_1335054179","text":"#% chance to Ignite","type":"explicit"},{"id":"explicit.stat_1890519597","text":"#% increased Monster Damage","type":"explicit"},{"id":"explicit.stat_1002362373","text":"#% increased Melee Damage","type":"explicit"},{"id":"explicit.stat_474294393","text":"#% reduced Mana Cost of Skills","type":"explicit"},{"id":"explicit.stat_1589917703","text":"Minions deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_770672621","text":"Minions have #% increased maximum Life","type":"explicit"},{"id":"explicit.stat_2672805335","text":"#% increased Attack and Cast Speed","type":"explicit"},{"id":"explicit.stat_821021828","text":"# Life gained for each Enemy hit by Attacks","type":"explicit"},{"id":"explicit.stat_2469416729","text":"Adds # to # Cold Damage to Spells","type":"explicit"},{"id":"explicit.stat_1294118672","text":"#% increased Damage with Bleeding","type":"explicit"},{"id":"explicit.stat_884586851","text":"#% increased Quantity of Items found","type":"explicit"},{"id":"explicit.stat_3639275092","text":"#% increased Attribute Requirements","type":"explicit"},{"id":"explicit.stat_3441501978","text":"#% to Fire and Lightning Resistances","type":"explicit"},{"id":"explicit.stat_2488361432","text":"#% increased Monster Cast Speed","type":"explicit"},{"id":"explicit.stat_1913583994","text":"#% increased Monster Attack Speed","type":"explicit"},{"id":"explicit.stat_2306522833","text":"#% increased Monster Movement Speed","type":"explicit"},{"id":"explicit.stat_2915988346","text":"#% to Fire and Cold Resistances","type":"explicit"},{"id":"explicit.stat_681332047","text":"#% increased Attack Speed","type":"explicit"},{"id":"explicit.stat_1290399200","text":"#% increased Damage with Poison","type":"explicit"},{"id":"explicit.stat_280731498","text":"#% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_1538773178","text":"#% chance to Shock","type":"explicit"},{"id":"explicit.stat_3873704640","text":"#% more Magic Monsters","type":"explicit"},{"id":"explicit.stat_2843100721","text":"# to Level of Socketed Gems","type":"explicit"},{"id":"explicit.stat_2391261970","text":"Rare Monsters each have a Nemesis Mod","type":"explicit"},{"id":"explicit.stat_2309614417","text":"#% chance to Freeze","type":"explicit"},{"id":"explicit.stat_1535626285","text":"# to Strength and Intelligence","type":"explicit"},{"id":"explicit.stat_3139816101","text":"#% increased Charges used","type":"explicit"},{"id":"explicit.stat_4249220643","text":"#% increased Attack Speed while Dual Wielding","type":"explicit"},{"id":"explicit.stat_538848803","text":"# to Strength and Dexterity","type":"explicit"},{"id":"explicit.stat_2166444903","text":"#% Chance to Block Attack Damage while Dual Wielding","type":"explicit"},{"id":"explicit.stat_2011656677","text":"#% increased Poison Duration","type":"explicit"},{"id":"explicit.stat_1714180526","text":"Players have Elemental Equilibrium","type":"explicit"},{"id":"explicit.stat_97115311","text":"Magic Monster Packs each have a Bloodline Mod","type":"explicit"},{"id":"explicit.stat_3350803563","text":"Monsters Poison on Hit","type":"explicit"},{"id":"explicit.stat_1000591322","text":"Area contains many Totems","type":"explicit"},{"id":"explicit.stat_1086147743","text":"#% increased Ignite Duration on Enemies","type":"explicit"},{"id":"explicit.stat_124877078","text":"Unique Boss deals #% increased Damage","type":"explicit"},{"id":"explicit.stat_3403461239","text":"Extra gore","type":"explicit"},{"id":"explicit.stat_4291461939","text":"Regenerate # Mana per second","type":"explicit"},{"id":"explicit.stat_3793155082","text":"#% more Rare Monsters","type":"explicit"},{"id":"explicit.stat_3416853625","text":"Monsters deal #% extra Physical Damage as Lightning","type":"explicit"},{"id":"explicit.stat_2941585404","text":"#% increased Trap Damage","type":"explicit"},{"id":"explicit.stat_674553446","text":"Adds # to # Chaos Damage to Attacks","type":"explicit"},{"id":"explicit.stat_795138349","text":"#% chance to Poison on Hit","type":"explicit"},{"id":"explicit.stat_4237442815","text":"#% to Melee Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_3805075944","text":"#% increased Attack Speed while holding a Shield","type":"explicit"},{"id":"explicit.stat_1514829491","text":"#% chance to Avoid being Frozen","type":"explicit"},{"id":"explicit.stat_2339757871","text":"#% increased Energy Shield Recharge Rate","type":"explicit"},{"id":"explicit.stat_3668351662","text":"#% increased Shock Duration on Enemies","type":"explicit"},{"id":"explicit.stat_3183973644","text":"Monsters\u0027 skills Chain # additional times","type":"explicit"},{"id":"explicit.stat_1041951480","text":"Monsters cannot be Stunned","type":"explicit"},{"id":"explicit.stat_836936635","text":"Regenerate #% of Life per second","type":"explicit"},{"id":"explicit.stat_3729221884","text":"Players have #% reduced Chance to Block","type":"explicit"},{"id":"explicit.stat_1959158336","text":"Unique Boss has #% increased Life","type":"explicit"},{"id":"explicit.stat_1708461270","text":"Monsters have #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_3086156145","text":"Adds # Passive Skills","type":"explicit"},{"id":"explicit.stat_1309819744","text":"Monsters fire # additional Projectiles","type":"explicit"},{"id":"explicit.stat_3040667106","text":"Unique Boss has #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_3293699237","text":"#% increased Attack Speed with Swords","type":"explicit"},{"id":"explicit.stat_1742567045","text":"Monsters have #% chance to gain a Frenzy Charge on Hit","type":"explicit"},{"id":"explicit.stat_4181072906","text":"Players have #% less Recovery Rate of Life and Energy Shield","type":"explicit"},{"id":"explicit.stat_322206271","text":"Monsters have #% chance to Avoid Elemental Ailments","type":"explicit"},{"id":"explicit.stat_1497673356","text":"Monsters deal #% extra Physical Damage as Fire","type":"explicit"},{"id":"explicit.stat_2482852589","text":"#% increased maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_2109106920","text":"Unique Boss has #% increased Attack and Cast Speed","type":"explicit"},{"id":"explicit.stat_4277795662","text":"#% to Cold and Lightning Resistances","type":"explicit"},{"id":"explicit.stat_272758639","text":"Players have #% less Armour","type":"explicit"},{"id":"explicit.stat_1588049749","text":"Monsters have #% increased Accuracy Rating","type":"explicit"},{"id":"explicit.stat_1813451228","text":"#% increased Attack Speed with One Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_1459321413","text":"#% increased Bleeding Duration","type":"explicit"},{"id":"explicit.stat_3851254963","text":"#% increased Totem Damage","type":"explicit"},{"id":"explicit.stat_700317374","text":"#% increased Amount Recovered","type":"explicit"},{"id":"explicit.stat_3550868361","text":"#% increased Attack Speed with Axes","type":"explicit"},{"id":"explicit.stat_3141070085","text":"#% increased Elemental Damage","type":"explicit"},{"id":"explicit.stat_51994685","text":"#% increased Flask Life Recovery rate","type":"explicit"},{"id":"explicit.stat_686254215","text":"#% increased Totem Life","type":"explicit"},{"id":"explicit.stat_4253454700","text":"#% Chance to Block (Shields)","type":"explicit"},{"id":"explicit.stat_57326096","text":"#% to Monster Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_4103440490","text":"Players are Cursed with Enfeeble","type":"explicit"},{"id":"explicit.stat_3483999943","text":"#% chance to Avoid being Chilled","type":"explicit"},{"id":"explicit.stat_4139681126","text":"#% increased Dexterity","type":"explicit"},{"id":"explicit.stat_2227180465","text":"#% increased Mana Reserved","type":"explicit"},{"id":"explicit.stat_979246511","text":"Gain #% of Physical Damage as Extra Cold Damage","type":"explicit"},{"id":"explicit.stat_839186746","text":"\u002B#% Monster Physical Damage Reduction","type":"explicit"},{"id":"explicit.stat_3448216135","text":"Monsters deal #% extra Physical Damage as Cold","type":"explicit"},{"id":"explicit.stat_1651847244","text":"Player chance to Dodge is Lucky","type":"explicit"},{"id":"explicit.stat_3741323227","text":"#% increased Flask Effect Duration","type":"explicit"},{"id":"explicit.stat_1054098949","text":"\u002B#% Monster Elemental Resistance","type":"explicit"},{"id":"explicit.stat_2215002568","text":"Monsters have a #% chance to avoid Poison, Blind, and Bleeding","type":"explicit"},{"id":"explicit.stat_1133016593","text":"Adds # to # Fire Damage to Spells","type":"explicit"},{"id":"explicit.stat_365540634","text":"\u002B#% Monster Chaos Resistance","type":"explicit"},{"id":"explicit.stat_2764017512","text":"Monsters reflect #% of Elemental Damage","type":"explicit"},{"id":"explicit.stat_829382474","text":"# to Level of Socketed Melee Gems","type":"explicit"},{"id":"explicit.stat_1917910910","text":"#% increased Attack Speed with Two Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_406353061","text":"Monsters have #% chance to gain a Power Charge on Hit","type":"explicit"},{"id":"explicit.stat_3120164895","text":"Adds # to # Fire Damage to Bow Attacks","type":"explicit"},{"id":"explicit.stat_915908446","text":"#% to Critical Strike Multiplier with Cold Skills","type":"explicit"},{"id":"explicit.stat_2618549697","text":"Added Small Passive Skills have #% increased Effect","type":"explicit"},{"id":"explicit.stat_3796523155","text":"#% less effect of Curses on Monsters","type":"explicit"},{"id":"explicit.stat_2137912951","text":"#% increased Mine Damage","type":"explicit"},{"id":"explicit.stat_734614379","text":"#% increased Strength","type":"explicit"},{"id":"explicit.stat_799271621","text":"Area contains two Unique Bosses","type":"explicit"},{"id":"explicit.stat_1811341815","text":"Historic","type":"explicit"},{"id":"explicit.stat_57434274","text":"#% increased Experience gain (Maps)","type":"explicit"},{"id":"explicit.stat_561307714","text":"#% Chance to Block Spell Damage","type":"explicit"},{"id":"explicit.stat_724930776","text":"Added Small Passive Skills also grant: # to Intelligence","type":"explicit"},{"id":"explicit.stat_820939409","text":"# Mana gained for each Enemy hit by your Attacks","type":"explicit"},{"id":"explicit.stat_1040269876","text":"Adds # to # Lightning Damage to Bow Attacks","type":"explicit"},{"id":"explicit.stat_2441475928","text":"#% to Critical Strike Multiplier with Lightning Skills","type":"explicit"},{"id":"explicit.stat_215124030","text":"Adds # to # Cold Damage to Bow Attacks","type":"explicit"},{"id":"explicit.stat_2307547323","text":"#% to Critical Strike Multiplier with Fire Skills","type":"explicit"},{"id":"explicit.stat_1790411851","text":"Added Small Passive Skills also grant: #% to Fire Resistance","type":"explicit"},{"id":"explicit.stat_2250780084","text":"Added Small Passive Skills also grant: #% to Lightning Resistance","type":"explicit"},{"id":"explicit.stat_3464419871","text":"Monsters reflect #% of Physical Damage","type":"explicit"},{"id":"explicit.stat_2300399854","text":"Adds # to # Chaos Damage to Spells","type":"explicit"},{"id":"explicit.stat_1513447578","text":"#% increased Damage when on Low Life","type":"explicit"},{"id":"explicit.stat_2474836297","text":"Added Small Passive Skills also grant: #% increased Mana Regeneration Rate","type":"explicit"},{"id":"explicit.stat_2709692542","text":"Added Small Passive Skills also grant: #% to Cold Resistance","type":"explicit"},{"id":"explicit.stat_3258414199","text":"Added Small Passive Skills also grant: # to Strength","type":"explicit"},{"id":"explicit.stat_1366534040","text":"Players are Cursed with Vulnerability","type":"explicit"},{"id":"explicit.stat_4055307827","text":"#% to Chaos Damage over Time Multiplier","type":"explicit"},{"id":"explicit.stat_4036575250","text":"Added Small Passive Skills also grant: # to All Attributes","type":"explicit"},{"id":"explicit.stat_3721672021","text":"Added Small Passive Skills also grant: Regenerate #% of Life per Second","type":"explicit"},{"id":"explicit.stat_2326202293","text":"Players are Cursed with Temporal Chains","type":"explicit"},{"id":"explicit.stat_1519615863","text":"#% chance to cause Bleeding on Hit","type":"explicit"},{"id":"explicit.stat_1760576992","text":"Adds # to # Physical Damage to Bow Attacks","type":"explicit"},{"id":"explicit.stat_2669029667","text":"Added Small Passive Skills also grant: #% to Elemental Resistance","type":"explicit"},{"id":"explicit.stat_2090413987","text":"Added Small Passive Skills also grant: # to Dexterity","type":"explicit"},{"id":"explicit.stat_1811604576","text":"Added Small Passive Skills also grant: #% to Chaos Resistance","type":"explicit"},{"id":"explicit.stat_1010549321","text":"#% increased Damage with One Handed Weapons","type":"explicit"},{"id":"explicit.stat_1199429645","text":"#% increased Melee Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_2342448236","text":"1 Added Passive Skill is Prismatic Heart","type":"explicit"},{"id":"explicit.stat_174664100","text":"Minions have #% increased Movement Speed","type":"explicit"},{"id":"explicit.stat_444174528","text":"#% increased Attack Damage while Dual Wielding","type":"explicit"},{"id":"explicit.stat_977908611","text":"#% chance to Knock Enemies Back on hit","type":"explicit"},{"id":"explicit.stat_649025131","text":"#% increased Movement Speed when on Low Life","type":"explicit"},{"id":"explicit.stat_3527617737","text":"Has # Abyssal Sockets","type":"explicit"},{"id":"explicit.stat_3599340381","text":"1 Added Passive Skill is Fuel the Fight","type":"explicit"},{"id":"explicit.stat_1106651798","text":"Monsters cannot be Taunted","type":"explicit"},{"id":"explicit.stat_938645499","text":"#% Chance to Block Spell Damage while holding a Shield","type":"explicit"},{"id":"explicit.stat_1452809865","text":"#% increased Flask Charges gained","type":"explicit"},{"id":"explicit.stat_3819827377","text":"Added Small Passive Skills also grant: # to Maximum Life","type":"explicit"},{"id":"explicit.stat_490098963","text":"#% of Physical Damage Converted to Chaos Damage","type":"explicit"},{"id":"explicit.stat_1809006367","text":"Totems gain #% to all Elemental Resistances","type":"explicit"},{"id":"explicit.stat_3314142259","text":"#% increased Damage with Axes","type":"explicit"},{"id":"explicit.stat_656461285","text":"#% increased Intelligence","type":"explicit"},{"id":"explicit.stat_1186596295","text":"#% increased Critical Strike Chance with Lightning Skills","type":"explicit"},{"id":"explicit.stat_4262448838","text":"#% chance to Avoid being Stunned","type":"explicit"},{"id":"explicit.stat_2643685329","text":"Added Small Passive Skills also grant: # to Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_1719521705","text":"Added Small Passive Skills also grant: #% increased Damage","type":"explicit"},{"id":"explicit.stat_3337344042","text":"#% increased Critical Strike Chance with Cold Skills","type":"explicit"},{"id":"explicit.stat_2452998583","text":"# to Level of Socketed Aura Gems","type":"explicit"},{"id":"explicit.stat_1515657623","text":"# to Maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_3152982863","text":"Minions deal # to # additional Cold Damage","type":"explicit"},{"id":"explicit.stat_3577222856","text":"Area has patches of desecrated ground","type":"explicit"},{"id":"explicit.stat_1662717006","text":"Adds # to # Cold Damage to Spells and Attacks","type":"explicit"},{"id":"explicit.stat_3382807662","text":"#% to Fire Damage over Time Multiplier","type":"explicit"},{"id":"explicit.stat_2620267328","text":"1 Added Passive Skill is Vengeful Commander","type":"explicit"},{"id":"explicit.stat_1911162866","text":"1 Added Passive Skill is Drive the Destruction","type":"explicit"},{"id":"explicit.stat_1950806024","text":"#% to Cold Damage over Time Multiplier","type":"explicit"},{"id":"explicit.stat_816367946","text":"All Monster Damage from Hits always Ignites","type":"explicit"},{"id":"explicit.stat_1782086450","text":"#% faster start of Energy Shield Recharge","type":"explicit"},{"id":"explicit.stat_3407849389","text":"#% increased Effect of Curses on you","type":"explicit"},{"id":"explicit.stat_2553656203","text":"Monsters have a #% chance to cause Elemental Ailments on Hit","type":"explicit"},{"id":"explicit.stat_3319896421","text":"Gain #% of Physical Damage as Extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_2435536961","text":"Adds # to # Physical Damage to Spells","type":"explicit"},{"id":"explicit.stat_2749862839","text":"#% chance to Dodge Attack Hits","type":"explicit"},{"id":"explicit.stat_3023957681","text":"#% chance to gain Onslaught for 4 seconds on Kill","type":"explicit"},{"id":"explicit.stat_1104796138","text":"#% increased Critical Strike Chance with Fire Skills","type":"explicit"},{"id":"explicit.stat_687813731","text":"Monsters have #% chance to gain an Endurance Charge on Hit","type":"explicit"},{"id":"explicit.stat_3736589033","text":"# to Total Mana Cost of Skills","type":"explicit"},{"id":"explicit.stat_670153687","text":"#% to Critical Strike Multiplier with One Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_3181974858","text":"#% chance to Cause Monsters to Flee","type":"explicit"},{"id":"explicit.stat_211381198","text":"# Energy Shield gained for each Enemy hit by your Attacks","type":"explicit"},{"id":"explicit.stat_3196823591","text":"#% increased Charge Recovery","type":"explicit"},{"id":"explicit.stat_2918708827","text":"#% chance to gain Phasing for 4 seconds on Kill","type":"explicit"},{"id":"explicit.stat_1766142294","text":"#% increased Spell Damage while holding a Shield","type":"explicit"},{"id":"explicit.stat_4061558269","text":"#% Chance to Block Attack Damage while holding a Shield","type":"explicit"},{"id":"explicit.stat_696707743","text":"#% chance to Dodge Spell Hits","type":"explicit"},{"id":"explicit.stat_3885634897","text":"#% chance to Poison on Hit (Local)","type":"explicit"},{"id":"explicit.stat_3604946673","text":"# to Level of Socketed Minion Gems","type":"explicit"},{"id":"explicit.stat_2554466725","text":"Added Small Passive Skills also grant: # to Armour","type":"explicit"},{"id":"explicit.stat_339179093","text":"# to Level of Socketed Fire Gems","type":"explicit"},{"id":"explicit.stat_173226756","text":"#% increased Recovery rate","type":"explicit"},{"id":"explicit.stat_1836374041","text":"#% increased Damage with Two Handed Weapons","type":"explicit"},{"id":"explicit.stat_4100161067","text":"Added Small Passive Skills also grant: # to Evasion","type":"explicit"},{"id":"explicit.stat_2561836520","text":"Regenerate # Energy Shield per second","type":"explicit"},{"id":"explicit.stat_540300548","text":"1 Added Passive Skill is Smite the Weak","type":"explicit"},{"id":"explicit.stat_1172029298","text":"Minions deal # to # additional Physical Damage","type":"explicit"},{"id":"explicit.stat_2527686725","text":"#% increased Effect of Shock","type":"explicit"},{"id":"explicit.stat_3182498570","text":"#% increased Movement Speed during Flask effect","type":"explicit"},{"id":"explicit.stat_118398748","text":"#% increased Trap Throwing Speed","type":"explicit"},{"id":"explicit.stat_1393393937","text":"#% increased Attack Damage while holding a Shield","type":"explicit"},{"id":"explicit.stat_83050999","text":"#% increased Damage with Swords","type":"explicit"},{"id":"explicit.stat_122525378","text":"Immunity to Bleeding during Flask effect\nRemoves Bleeding on use","type":"explicit"},{"id":"explicit.stat_1678690824","text":"#% increased Spell Damage while Dual Wielding","type":"explicit"},{"id":"explicit.stat_472520716","text":"#% of Damage taken gained as Mana over 4 seconds when Hit","type":"explicit"},{"id":"explicit.stat_318953428","text":"#% chance to Blind Enemies on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_798009319","text":"Monsters\u0027 Action Speed cannot be modified to below base value","type":"explicit"},{"id":"explicit.stat_295075366","text":"#% increased Strength Requirement","type":"explicit"},{"id":"explicit.stat_2312028586","text":"Players have #% less Area of Effect","type":"explicit"},{"id":"explicit.stat_349586058","text":"Area has patches of chilled ground","type":"explicit"},{"id":"explicit.stat_3351784991","text":"Minions deal # to # additional Fire Damage","type":"explicit"},{"id":"explicit.stat_2381842786","text":"#% increased Critical Strike Chance with One Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_1533563525","text":"#% of Physical Damage Converted to Fire Damage","type":"explicit"},{"id":"explicit.stat_274716455","text":"#% to Critical Strike Multiplier for Spells","type":"explicit"},{"id":"explicit.stat_2930653471","text":"Minions deal # to # additional Lightning Damage","type":"explicit"},{"id":"explicit.stat_2889601781","text":"Minions deal # to # additional Chaos Damage","type":"explicit"},{"id":"explicit.stat_3377888098","text":"#% increased Skill Effect Duration","type":"explicit"},{"id":"explicit.stat_3375935924","text":"Minions have #% increased Attack Speed","type":"explicit"},{"id":"explicit.stat_3441651621","text":"# Physical Damage taken from Attack Hits","type":"explicit"},{"id":"explicit.stat_1788635023","text":"#% increased Cast Speed with Lightning Skills","type":"explicit"},{"id":"explicit.stat_3720627346","text":"#% increased Attack Speed with Wands","type":"explicit"},{"id":"explicit.stat_227523295","text":"# to Maximum Power Charges","type":"explicit"},{"id":"explicit.stat_3702513529","text":"#% increased Attack Critical Strike Chance while Dual Wielding","type":"explicit"},{"id":"explicit.stat_504850499","text":"Area contains an extra Harbinger","type":"explicit"},{"id":"explicit.stat_3496944181","text":"#% increased Spell Damage while wielding a Staff","type":"explicit"},{"id":"explicit.stat_287491423","text":"#% additional Physical Damage Reduction against Abyssal Monsters","type":"explicit"},{"id":"explicit.stat_3591635592","text":"Immunity to Freeze and Chill during Flask effect\nRemoves Freeze and Chill on use","type":"explicit"},{"id":"explicit.stat_2223678961","text":"Adds # to # Chaos Damage (Local)","type":"explicit"},{"id":"explicit.stat_369494213","text":"Gain #% of Physical Damage as Extra Fire Damage","type":"explicit"},{"id":"explicit.stat_2753083623","text":"Monsters have #% increased Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_3608809816","text":"# to Maximum Charges","type":"explicit"},{"id":"explicit.stat_252507949","text":"#% to Critical Strike Multiplier with Two Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_581625445","text":"#% increased Movement Speed while Ignited","type":"explicit"},{"id":"explicit.stat_2633745731","text":"#% increased total Recovery per second from Life Leech","type":"explicit"},{"id":"explicit.stat_2695354435","text":"#% increased Global Evasion Rating when on Low Life","type":"explicit"},{"id":"explicit.stat_2382196858","text":"#% increased Cast Speed while Dual Wielding","type":"explicit"},{"id":"explicit.stat_2023107756","text":"Recover #% of Life on Kill","type":"explicit"},{"id":"explicit.stat_2524254339","text":"Culling Strike","type":"explicit"},{"id":"explicit.stat_1412217137","text":"#% increased Flask Mana Recovery rate","type":"explicit"},{"id":"explicit.stat_928238845","text":"#% increased Cast Speed with Cold Skills","type":"explicit"},{"id":"explicit.stat_45546355","text":"Area is inhabited by Skeletons","type":"explicit"},{"id":"explicit.stat_1274831335","text":"#% increased Physical Attack Damage while Dual Wielding","type":"explicit"},{"id":"explicit.stat_2133341901","text":"#% of Physical Damage Converted to Cold Damage","type":"explicit"},{"id":"explicit.stat_3942946753","text":"Regenerate #% of Life per second while on Low Life","type":"explicit"},{"id":"explicit.stat_1783006896","text":"#% chance to Avoid being Ignited","type":"explicit"},{"id":"explicit.stat_133340941","text":"Area has patches of burning ground","type":"explicit"},{"id":"explicit.stat_1089165168","text":"Primordial","type":"explicit"},{"id":"explicit.stat_1896971621","text":"#% increased Mine Throwing Speed","type":"explicit"},{"id":"explicit.stat_2515515064","text":"#% increased Attack Speed with Maces or Sceptres","type":"explicit"},{"id":"explicit.stat_2122183138","text":"# Mana gained when you Block","type":"explicit"},{"id":"explicit.stat_4000101551","text":"Minions have #% increased Cast Speed","type":"explicit"},{"id":"explicit.stat_764295120","text":"#% increased Critical Strike Chance with Two Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_2223640518","text":"Socketed Gems are supported by Level # Blind","type":"explicit"},{"id":"explicit.stat_1880071428","text":"#% increased effect of Non-Curse Auras from your Skills","type":"explicit"},{"id":"explicit.stat_3855016469","text":"You take #% reduced Extra Damage from Critical Strikes","type":"explicit"},{"id":"explicit.stat_3759735052","text":"#% increased Attack Speed with Bows","type":"explicit"},{"id":"explicit.stat_2538566497","text":"#% increased Attack Speed with Daggers","type":"explicit"},{"id":"explicit.stat_2066542501","text":"#% increased Cast Speed while wielding a Staff","type":"explicit"},{"id":"explicit.stat_439950087","text":"#% increased Critical Strike Chance with Elemental Skills","type":"explicit"},{"id":"explicit.stat_125218179","text":"# to maximum number of Spectres","type":"explicit"},{"id":"explicit.stat_1421645223","text":"#% increased Attack Speed with Claws","type":"explicit"},{"id":"explicit.stat_3854949926","text":"#% increased Movement Speed if you haven\u0027t taken Damage Recently","type":"explicit"},{"id":"explicit.stat_587175996","text":"Area is a large Maze","type":"explicit"},{"id":"explicit.stat_2120297997","text":"#% Chance to Block Spell Damage while wielding a Staff","type":"explicit"},{"id":"explicit.stat_1314617696","text":"#% to Physical Damage over Time Multiplier","type":"explicit"},{"id":"explicit.stat_3691695237","text":"# to Level of Socketed Curse Gems","type":"explicit"},{"id":"explicit.stat_1778298516","text":"#% Chance to Block Attack Damage while wielding a Staff","type":"explicit"},{"id":"explicit.stat_644456512","text":"#% reduced Flask Charges used","type":"explicit"},{"id":"explicit.stat_2428829184","text":"# to maximum number of Skeletons","type":"explicit"},{"id":"explicit.stat_2805714016","text":"#% increased Damage with Hits against Chilled Enemies","type":"explicit"},{"id":"explicit.stat_3393547195","text":"#% increased Movement Speed when on Full Life","type":"explicit"},{"id":"explicit.stat_3562241510","text":"Gain #% of Elemental Damage as Extra Chaos Damage during effect","type":"explicit"},{"id":"explicit.stat_1341148741","text":"#% of Chaos Damage Leeched as Life during Flask effect","type":"explicit"},{"id":"explicit.stat_3240769289","text":"#% of Physical Damage Converted to Lightning Damage","type":"explicit"},{"id":"explicit.stat_3485067555","text":"#% increased Chill Duration on Enemies","type":"explicit"},{"id":"explicit.stat_2397408229","text":"Rampage","type":"explicit"},{"id":"explicit.stat_4078695","text":"# to Maximum Frenzy Charges","type":"explicit"},{"id":"explicit.stat_734823525","text":"#% increased Evasion Rating while moving","type":"explicit"},{"id":"explicit.stat_3964634628","text":"Adds # to # Fire Damage to Spells and Attacks","type":"explicit"},{"id":"explicit.stat_3720936304","text":"Socketed Gems are Supported by Level # Increased Area of Effect","type":"explicit"},{"id":"explicit.stat_1478653032","text":"#% reduced Effect of Chill on you","type":"explicit"},{"id":"explicit.stat_4154059009","text":"Monsters are Hexproof","type":"explicit"},{"id":"explicit.stat_2818167778","text":"Gain #% of Physical Damage as Extra Chaos Damage during effect","type":"explicit"},{"id":"explicit.stat_1871765599","text":"#% chance to Avoid being Shocked","type":"explicit"},{"id":"explicit.stat_728267040","text":"Found Items have a #% chance to drop Corrupted in Area","type":"explicit"},{"id":"explicit.stat_2388360415","text":"Socketed Gems are Supported by Level # Concentrated Effect","type":"explicit"},{"id":"explicit.stat_3278968597","text":"#% chance to Dodge Attack and Spell Hits if you\u0027ve\nbeen Hit Recently","type":"explicit"},{"id":"explicit.stat_2479683456","text":"Minions Regenerate #% of Life per second","type":"explicit"},{"id":"explicit.stat_2937483991","text":"#% to Critical Strike Multiplier if you\u0027ve Killed Recently","type":"explicit"},{"id":"explicit.stat_3550168289","text":"Area is inhabited by # additional Rogue Exile","type":"explicit"},{"id":"explicit.stat_1476643878","text":"#% increased Cast Speed with Fire Skills","type":"explicit"},{"id":"explicit.stat_379328644","text":"#% increased Damage with Wands","type":"explicit"},{"id":"explicit.stat_3594640492","text":"Regenerate #% of Energy Shield per second","type":"explicit"},{"id":"explicit.stat_2027269580","text":"# to Level of Socketed Bow Gems","type":"explicit"},{"id":"explicit.stat_2304729532","text":"Implicit Modifier magnitudes are doubled","type":"explicit"},{"id":"explicit.stat_2101383955","text":"Damage Penetrates #% Elemental Resistances","type":"explicit"},{"id":"explicit.stat_1661151735","text":"Minions have # to Accuracy Rating","type":"explicit"},{"id":"explicit.stat_455556407","text":"Damage Penetrates #% Elemental Resistance if you haven\u0027t Killed Recently","type":"explicit"},{"id":"explicit.stat_1394963553","text":"#% increased Attack Speed with Staves","type":"explicit"},{"id":"explicit.stat_1826802197","text":"#% chance to gain a Frenzy Charge on Kill","type":"explicit"},{"id":"explicit.stat_3970396418","text":"Mercury Footprints","type":"explicit"},{"id":"explicit.stat_2355312681","text":"Monsters are Immune to randomly chosen Elemental Ailments or Stun","type":"explicit"},{"id":"explicit.stat_3531280422","text":"Adds # to # Chaos Damage","type":"explicit"},{"id":"explicit.stat_30642521","text":"You can apply an additional Curse","type":"explicit"},{"id":"explicit.stat_908516597","text":"Regenerate #% of Life per second while moving","type":"explicit"},{"id":"explicit.stat_3359207393","text":"1 Added Passive Skill is Calamitous","type":"explicit"},{"id":"explicit.stat_1073942215","text":"#% increased Freeze Duration on Enemies","type":"explicit"},{"id":"explicit.stat_2999796964","text":"Curses have #% reduced effect on Monsters","type":"explicit"},{"id":"explicit.stat_1541516339","text":"#% increased Movement Speed per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_3257279374","text":"#% increased Damage against Abyssal Monsters","type":"explicit"},{"id":"explicit.stat_2484223218","text":"Unique Boss gives #% increased Experience","type":"explicit"},{"id":"explicit.stat_928701213","text":"Socketed Gems are Supported by Level # Faster Attacks","type":"explicit"},{"id":"explicit.stat_3342989455","text":"#% of Physical Damage from Hits taken as Fire Damage","type":"explicit"},{"id":"explicit.stat_1101206134","text":"#% Chance to Block Spell Damage if you were Damaged by a Hit Recently","type":"explicit"},{"id":"explicit.stat_1652515349","text":"# to maximum number of Raised Zombies","type":"explicit"},{"id":"explicit.stat_3166317791","text":"#% chance to Gain Unholy Might for 4 seconds on Melee Kill","type":"explicit"},{"id":"explicit.stat_4235886357","text":"Reflects # Cold Damage to Melee Attackers","type":"explicit"},{"id":"explicit.stat_279227559","text":"#% increased Movement Speed if you\u0027ve Killed Recently","type":"explicit"},{"id":"explicit.stat_3994193163","text":"Added Small Passive Skills also grant: # to Maximum Mana","type":"explicit"},{"id":"explicit.stat_513681673","text":"#% chance to Cause Bleeding on Critical Strike","type":"explicit"},{"id":"explicit.stat_2787733863","text":"Adds # to # Lightning Damage to Wand Attacks","type":"explicit"},{"id":"explicit.stat_251342217","text":"Adds Knockback to Melee Attacks during Flask effect","type":"explicit"},{"id":"explicit.stat_1626998468","text":"Area contains no monsters","type":"explicit"},{"id":"explicit.stat_156096868","text":"#% increased Duration","type":"explicit"},{"id":"explicit.stat_967627487","text":"#% increased Damage over Time","type":"explicit"},{"id":"explicit.stat_3457143479","text":"Chests have #% increased Item Rarity","type":"explicit"},{"id":"explicit.stat_3603666270","text":"#% additional Physical Damage Reduction if you weren\u0027t Damaged by a Hit Recently","type":"explicit"},{"id":"explicit.stat_852195286","text":"#% Chance to Block Attack Damage if you were Damaged by a Hit Recently","type":"explicit"},{"id":"explicit.stat_1174076861","text":"#% increased Cast Speed if you\u0027ve dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_3853018505","text":"#% increased Physical Damage taken","type":"explicit"},{"id":"explicit.stat_1493091477","text":"Has no Sockets","type":"explicit"},{"id":"explicit.stat_2885144362","text":"Adds # to # Lightning Damage to Spells and Attacks","type":"explicit"},{"id":"explicit.stat_1526933524","text":"Instant Recovery","type":"explicit"},{"id":"explicit.stat_337935900","text":"Monsters take #% reduced Extra Damage from Critical Strikes","type":"explicit"},{"id":"explicit.stat_1181419800","text":"#% increased Damage with Maces or Sceptres","type":"explicit"},{"id":"explicit.stat_2018035324","text":"# Life gained for each Enemy hit by your Spells","type":"explicit"},{"id":"explicit.stat_2649720402","text":"#% more Physical Damage with Unarmed Attacks","type":"explicit"},{"id":"explicit.stat_828179689","text":"#% increased Effect of Chill","type":"explicit"},{"id":"explicit.stat_2001530951","text":"#% increased Trap Duration","type":"explicit"},{"id":"explicit.stat_4188894176","text":"#% increased Damage with Bows","type":"explicit"},{"id":"explicit.stat_3814560373","text":"#% increased Physical Damage with Swords","type":"explicit"},{"id":"explicit.stat_2008219439","text":"#% increased Physical Damage with Axes","type":"explicit"},{"id":"explicit.stat_742529963","text":"Bow Attacks fire an additional Arrow","type":"explicit"},{"id":"explicit.stat_446733281","text":"# to Level of Socketed Spell Gems","type":"explicit"},{"id":"explicit.stat_3435403756","text":"1 Added Passive Skill is Practiced Caster","type":"explicit"},{"id":"explicit.stat_1334465904","text":"#% increased Physical Damage with One Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_2501237765","text":"Socketed Gems are supported by Level # Multistrike","type":"explicit"},{"id":"explicit.stat_2483795307","text":"#% chance to gain a Power Charge on Kill","type":"explicit"},{"id":"explicit.stat_3143208761","text":"#% increased Attributes","type":"explicit"},{"id":"explicit.stat_4193088553","text":"#% increased Damage over Time while wielding a Two Handed Weapon","type":"explicit"},{"id":"explicit.stat_1645459191","text":"# to Level of Socketed Cold Gems","type":"explicit"},{"id":"explicit.stat_372478711","text":"This Jewel\u0027s Socket has #% increased effect per Allocated Passive Skill between\nit and your Class\u0027 starting location","type":"explicit"},{"id":"explicit.stat_2159994279","text":"Players have #% increased Cooldown Recovery Speed for Movement Skills","type":"explicit"},{"id":"explicit.stat_2259700079","text":"Socketed Gems are Supported by Level # Increased Critical Strikes","type":"explicit"},{"id":"explicit.stat_2835888248","text":"Players have Point Blank","type":"explicit"},{"id":"explicit.stat_172852114","text":"#% of Physical Attack Damage Leeched as Mana per Blue Socket","type":"explicit"},{"id":"explicit.stat_87098247","text":"Adds # to # Fire Damage to Wand Attacks","type":"explicit"},{"id":"explicit.stat_3376488707","text":"#% maximum Player Resistances","type":"explicit"},{"id":"explicit.stat_4043416969","text":"# to Level of Socketed Lightning Gems","type":"explicit"},{"id":"explicit.stat_762600725","text":"# Life gained when you Block","type":"explicit"},{"id":"explicit.stat_2808735733","text":"Area contains a Large Chest","type":"explicit"},{"id":"explicit.stat_655278200","text":"Unique Boss drops an additional Map","type":"explicit"},{"id":"explicit.stat_1384864963","text":"Regenerate # Life per second per Level","type":"explicit"},{"id":"explicit.stat_1069260037","text":"#% increased Damage with Claws","type":"explicit"},{"id":"explicit.stat_3640252904","text":"1 Added Passive Skill is Heavy Hitter","type":"explicit"},{"id":"explicit.stat_895264825","text":"#% increased Area of Effect of Aura Skills","type":"explicit"},{"id":"explicit.stat_3470876581","text":"# to Evasion Rating while on Low Life","type":"explicit"},{"id":"explicit.stat_2689259705","text":"Final Boss drops higher Level Items","type":"explicit"},{"id":"explicit.stat_3258653591","text":"1 Added Passive Skill is Iron Breaker","type":"explicit"},{"id":"explicit.stat_376585490","text":"Monsters have #% chance to Avoid Ailments","type":"explicit"},{"id":"explicit.stat_1955882986","text":"Regenerate # Life over 1 second when you Cast a Spell","type":"explicit"},{"id":"explicit.stat_2858921304","text":"#% chance to gain a Flask Charge when you deal a Critical Strike","type":"explicit"},{"id":"explicit.stat_3374054207","text":"Minions have #% Chance to Block Attack Damage","type":"explicit"},{"id":"explicit.stat_1334060246","text":"Adds # to # Lightning Damage","type":"explicit"},{"id":"explicit.stat_2378288719","text":"Area becomes fatal after some time","type":"explicit"},{"id":"explicit.stat_3811191316","text":"Minions have #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_2546185479","text":"#% to Critical Strike Multiplier while Dual Wielding","type":"explicit"},{"id":"explicit.stat_3662336899","text":"Recharges # Charge when you take a Critical Strike","type":"explicit"},{"id":"explicit.stat_860864690","text":"Area contains unbridged gaps to cross","type":"explicit"},{"id":"explicit.stat_2228279620","text":"Socketed Gems are Supported by Level # Poison","type":"explicit"},{"id":"explicit.stat_1618589784","text":"#% chance to avoid Bleeding","type":"explicit"},{"id":"explicit.stat_3051845758","text":"#% to Fire Resistance when Socketed with a Red Gem","type":"explicit"},{"id":"explicit.stat_3005472710","text":"#% chance to Avoid Elemental Ailments","type":"explicit"},{"id":"explicit.stat_3561450806","text":"Area has increased monster variety","type":"explicit"},{"id":"explicit.stat_1612163368","text":"#% increased Cast Speed while holding a Shield","type":"explicit"},{"id":"explicit.stat_1618339429","text":"#% chance to be Ignited","type":"explicit"},{"id":"explicit.stat_1064331314","text":"#% to Cold Resistance when Socketed with a Green Gem","type":"explicit"},{"id":"explicit.stat_4016885052","text":"Socketed Gems fire an additional Projectile","type":"explicit"},{"id":"explicit.stat_2899095498","text":"Nearby Enemies are Intimidated","type":"explicit"},{"id":"explicit.stat_412745376","text":"Minions deal #% increased Damage if you\u0027ve used a Minion Skill Recently","type":"explicit"},{"id":"explicit.stat_3338298622","text":"#% increased Frenzy Charge Duration","type":"explicit"},{"id":"explicit.stat_3303551725","text":"Restless Dead","type":"explicit"},{"id":"explicit.stat_3999401129","text":"#% of Cold Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_2605850929","text":"Socketed Gems have Elemental Equilibrium","type":"explicit"},{"id":"explicit.stat_4087089130","text":"#% increased Damage with Staves","type":"explicit"},{"id":"explicit.stat_3660039923","text":"#% increased Cast Speed while Ignited","type":"explicit"},{"id":"explicit.stat_289814996","text":"#% to Lightning Resistance when Socketed with a Blue Gem","type":"explicit"},{"id":"explicit.stat_2063695047","text":"Gain #% of Non-Chaos Damage as extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_80079005","text":"#% of Lightning Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_2323739383","text":"Minions have #% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed","type":"explicit"},{"id":"explicit.stat_3501769159","text":"#% increased Melee Physical Damage while holding a Shield","type":"explicit"},{"id":"explicit.stat_2366940416","text":"#% to Chaos Resistance when on Low Life","type":"explicit"},{"id":"explicit.stat_3848282610","text":"#% of Fire Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_1479533453","text":"# uses remaining","type":"explicit"},{"id":"explicit.stat_2387423236","text":"Adds # to # Cold Damage","type":"explicit"},{"id":"explicit.stat_2169938251","text":"Socketed Gems are Supported by Level # Faster Casting","type":"explicit"},{"id":"explicit.stat_3666934677","text":"#% increased Experience gain","type":"explicit"},{"id":"explicit.stat_3753748365","text":"Damage from Enemies Hitting you is Unlucky while you are on Low Life","type":"explicit"},{"id":"explicit.stat_2202161594","text":"Slaying Enemies close together has a #% chance to attract monsters from Beyond","type":"explicit"},{"id":"explicit.stat_2056783069","text":"#% increased Physical Damage with Two Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_383245807","text":"1 Added Passive Skill is Feasting Fiends","type":"explicit"},{"id":"explicit.stat_2881111359","text":"#% Chance to Block Spell Damage (Legacy)","type":"explicit"},{"id":"explicit.stat_2264295449","text":"# to Melee Strike Range","type":"explicit"},{"id":"explicit.stat_321077055","text":"Adds # to # Fire Damage","type":"explicit"},{"id":"explicit.stat_4053951709","text":"#% chance to Avoid being Poisoned","type":"explicit"},{"id":"explicit.stat_3374165039","text":"#% increased Totem Placement speed","type":"explicit"},{"id":"explicit.stat_3586984690","text":"#% increased Damage with Daggers","type":"explicit"},{"id":"explicit.stat_2067062068","text":"Projectiles Pierce # additional Targets","type":"explicit"},{"id":"explicit.stat_2350668735","text":"1 Added Passive Skill is Stalwart Commander","type":"explicit"},{"id":"explicit.stat_752930724","text":"Items and Gems have #% increased Attribute Requirements","type":"explicit"},{"id":"explicit.stat_1670623917","text":"Immune to Curses during Flask effect\nRemoves Curses on use","type":"explicit"},{"id":"explicit.stat_3738001379","text":"#% chance to gain a Flask Charge when you deal a Critical Strike","type":"explicit"},{"id":"explicit.stat_1411310186","text":"Added Small Passive Skills also grant: #% increased Attack Speed","type":"explicit"},{"id":"explicit.stat_1435748744","text":"Curse Skills have #% increased Skill Effect Duration","type":"explicit"},{"id":"explicit.stat_131358113","text":"1 Added Passive Skill is Exposure Therapy","type":"explicit"},{"id":"explicit.stat_4227567885","text":"Minions have #% increased Attack and Cast Speed if you or your Minions have Killed Recently","type":"explicit"},{"id":"explicit.stat_425242359","text":"#% of Physical Damage from Hits taken as Lightning Damage","type":"explicit"},{"id":"explicit.stat_2047819517","text":"#% increased Attack Speed while Ignited","type":"explicit"},{"id":"explicit.stat_1793666115","text":"Immunity to Shock during Flask effect\nRemoves Shock on use","type":"explicit"},{"id":"explicit.stat_2731249891","text":"#% of Fire Damage Converted to Chaos Damage","type":"explicit"},{"id":"explicit.stat_832404842","text":"#% reduced Enemy Stun Threshold with this Weapon","type":"explicit"},{"id":"explicit.stat_310246444","text":"#% increased Damage while Leeching","type":"explicit"},{"id":"explicit.stat_856021430","text":"#% increased Damage with Movement Skills","type":"explicit"},{"id":"explicit.stat_4126210832","text":"Hits can\u0027t be Evaded","type":"explicit"},{"id":"explicit.stat_2300185227","text":"# to Dexterity and Intelligence","type":"explicit"},{"id":"explicit.stat_13669281","text":"Socketed Gems are Supported by Level # Hypothermia","type":"explicit"},{"id":"explicit.stat_1237708713","text":"Adds # to # Lightning Damage to Sword Attacks","type":"explicit"},{"id":"explicit.stat_2431643207","text":"Minions have #% chance to Blind on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_3246076198","text":"Area has patches of Shocking Ground which increase Damage taken by #%","type":"explicit"},{"id":"explicit.stat_1152934561","text":"Temporal Chains has #% reduced Effect on you","type":"explicit"},{"id":"explicit.stat_299054775","text":"#% increased Evasion Rating during Flask effect","type":"explicit"},{"id":"explicit.stat_350598685","text":"# to Weapon Range","type":"explicit"},{"id":"explicit.stat_2383797932","text":"Adds # to # Cold Damage to Wand Attacks","type":"explicit"},{"id":"explicit.stat_2962840349","text":"Socketed Gems are Supported by Level # Spell Totem","type":"explicit"},{"id":"explicit.stat_2042405614","text":"# Life per 4 Dexterity","type":"explicit"},{"id":"explicit.stat_4176970656","text":"# Physical Damage taken on Minion Death","type":"explicit"},{"id":"explicit.stat_1445684883","text":"Reflects # to # Physical Damage to Attackers on Block","type":"explicit"},{"id":"explicit.stat_2788982914","text":"1 Added Passive Skill is Unwaveringly Evil","type":"explicit"},{"id":"explicit.stat_507075051","text":"# Mana per 4 Strength","type":"explicit"},{"id":"explicit.stat_2196657026","text":"# Accuracy Rating per 2 Intelligence","type":"explicit"},{"id":"explicit.stat_1693613464","text":"#% increased Armour during Flask effect","type":"explicit"},{"id":"explicit.stat_3676141501","text":"#% to maximum Cold Resistance","type":"explicit"},{"id":"explicit.stat_2343216207","text":"Unique Boss drops # additional Rare #","type":"explicit"},{"id":"explicit.stat_665823128","text":"#% chance to gain Onslaught for 4 seconds on Kill","type":"explicit"},{"id":"explicit.stat_810772344","text":"#% increased Evasion Rating per 10 Intelligence","type":"explicit"},{"id":"explicit.stat_3206911230","text":"1 Added Passive Skill is Disorienting Display","type":"explicit"},{"id":"explicit.stat_821241191","text":"#% increased Life Recovery from Flasks","type":"explicit"},{"id":"explicit.stat_972201717","text":"Adds # to # Cold Damage to Sword Attacks","type":"explicit"},{"id":"explicit.stat_1787073323","text":"Skills Chain # times","type":"explicit"},{"id":"explicit.stat_138741818","text":"#% Chance to Block Spell Damage while Dual Wielding","type":"explicit"},{"id":"explicit.stat_2222186378","text":"#% increased Mana Recovery from Flasks","type":"explicit"},{"id":"explicit.stat_3691641145","text":"#% increased Damage taken","type":"explicit"},{"id":"explicit.stat_2075199521","text":"Dexterity from Passives in Radius is Transformed to Intelligence","type":"explicit"},{"id":"explicit.stat_4095671657","text":"#% to maximum Fire Resistance","type":"explicit"},{"id":"explicit.stat_2848646243","text":"Adds # to # Cold Damage to Claw Attacks","type":"explicit"},{"id":"explicit.stat_3250272113","text":"1 Added Passive Skill is Brewed for Potency","type":"explicit"},{"id":"explicit.stat_4197676934","text":"Socketed Gems are Supported by Level # Chance To Bleed","type":"explicit"},{"id":"explicit.stat_1163758055","text":"With at least 40 Strength in Radius, Molten Strike has #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_3899352861","text":"#% increased maximum Life, Mana and Global Energy Shield","type":"explicit"},{"id":"explicit.stat_1683578560","text":"Unwavering Stance","type":"explicit"},{"id":"explicit.stat_1776945532","text":"Enemies you Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage","type":"explicit"},{"id":"explicit.stat_2571899044","text":"Transfiguration of Mind","type":"explicit"},{"id":"explicit.stat_601249293","text":"Adds # to # Fire Damage to Sword Attacks","type":"explicit"},{"id":"explicit.stat_2424133568","text":"#% increased Armour if you haven\u0027t Killed Recently","type":"explicit"},{"id":"explicit.stat_2845889407","text":"With at least 40 Strength in Radius, Molten Strike fires an additional Projectile","type":"explicit"},{"id":"explicit.stat_4212255859","text":"Cannot be Knocked Back","type":"explicit"},{"id":"explicit.stat_498214257","text":"#% chance to gain a Power, Frenzy or Endurance Charge on Kill","type":"explicit"},{"id":"explicit.stat_1331384105","text":"#% increased Skeleton Duration","type":"explicit"},{"id":"explicit.stat_506942497","text":"#% increased Energy Shield per 10 Strength","type":"explicit"},{"id":"explicit.stat_3944782785","text":"#% increased Attack Damage against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_3268519799","text":"Transfiguration of Soul","type":"explicit"},{"id":"explicit.stat_2763429652","text":"#% chance to Maim on Hit","type":"explicit"},{"id":"explicit.stat_3479683016","text":"Adds # to # Lightning Damage to Dagger Attacks","type":"explicit"},{"id":"explicit.stat_2780712583","text":"1 Added Passive Skill is Touch of Cruelty","type":"explicit"},{"id":"explicit.stat_1582068183","text":"Adds # to # Lightning Damage to Axe Attacks","type":"explicit"},{"id":"explicit.stat_567971948","text":"1 Added Passive Skill is Vicious Skewering","type":"explicit"},{"id":"explicit.stat_782230869","text":"#% increased Effect of Non-Damaging Ailments","type":"explicit"},{"id":"explicit.stat_2969128501","text":"#% reduced Mana Cost of Minion Skills","type":"explicit"},{"id":"explicit.stat_827329571","text":"#% increased Spell Damage per Power Charge","type":"explicit"},{"id":"explicit.stat_2629106530","text":"Recover #% of Life on use","type":"explicit"},{"id":"explicit.stat_1085359447","text":"#% increased Charges gained by Other Flasks during Flask Effect","type":"explicit"},{"id":"explicit.stat_1030153674","text":"Recover #% of Mana on Kill","type":"explicit"},{"id":"explicit.stat_3232201443","text":"#% of Maximum Life taken as Chaos Damage per second","type":"explicit"},{"id":"explicit.stat_3062329212","text":"Minions Regenerate # Life per second","type":"explicit"},{"id":"explicit.stat_1104246401","text":"Socketed Gems have Blood Magic","type":"explicit"},{"id":"explicit.stat_3591397930","text":"Knocks Back Enemies in an Area when you use a Flask","type":"explicit"},{"id":"explicit.stat_4188581520","text":"1 Added Passive Skill is Battle-Hardened","type":"explicit"},{"id":"explicit.stat_1244360317","text":"#% increased Damage over Time while holding a Shield","type":"explicit"},{"id":"explicit.stat_3741956733","text":"Gains no Charges during Effect of any Overflowing Chalice Flask","type":"explicit"},{"id":"explicit.stat_1457911472","text":"#% chance to cause Enemies to Flee on use","type":"explicit"},{"id":"explicit.stat_2392912145","text":"Immune to Poison during Flask Effect\nRemoves Poison on use","type":"explicit"},{"id":"explicit.stat_2422197812","text":"Left ring slot: You and your Minions take #% reduced Reflected Elemental Damage","type":"explicit"},{"id":"explicit.stat_350069479","text":"#% of Attack Damage Leeched as Mana","type":"explicit"},{"id":"explicit.stat_3636096208","text":"#% more Melee Physical Damage during effect","type":"explicit"},{"id":"explicit.stat_1408638732","text":"#% increased Character Size","type":"explicit"},{"id":"explicit.stat_962725504","text":"#% additional Elemental Resistances during Flask effect","type":"explicit"},{"id":"explicit.stat_2129392647","text":"1 Added Passive Skill is Circling Oblivion","type":"explicit"},{"id":"explicit.stat_2549889921","text":"Players gain #% reduced Flask Charges","type":"explicit"},{"id":"explicit.stat_1357244124","text":"Right ring slot: You and your Minions take #% reduced Reflected Physical Damage","type":"explicit"},{"id":"explicit.stat_2920970371","text":"#% increased Duration of Curses on you","type":"explicit"},{"id":"explicit.stat_2671663397","text":"Adds # to # Cold Damage to Spells while holding a Shield","type":"explicit"},{"id":"explicit.stat_214001793","text":"#% increased Damage over Time while Dual Wielding","type":"explicit"},{"id":"explicit.stat_2822821681","text":"With at least 40 Dexterity in Radius, Ethereal Knives fires an additional Projectile","type":"explicit"},{"id":"explicit.stat_2929101122","text":"Socketed Gems are Supported by Level # Elemental Proliferation","type":"explicit"},{"id":"explicit.stat_4186213466","text":"1 Added Passive Skill is Unholy Grace","type":"explicit"},{"id":"explicit.stat_1811422871","text":"Socketed Gems are supported by Level # Melee Splash","type":"explicit"},{"id":"explicit.stat_553298121","text":"#% increased effect","type":"explicit"},{"id":"explicit.stat_2415398184","text":"#% to all Elemental Resistances while you have at least 200 Strength","type":"explicit"},{"id":"explicit.stat_1718147982","text":"#% increased Minion Accuracy Rating","type":"explicit"},{"id":"explicit.stat_3376452528","text":"Adds # to # Cold Damage to Spells while Dual Wielding","type":"explicit"},{"id":"explicit.stat_3950683692","text":"1 Added Passive Skill is Pure Commander","type":"explicit"},{"id":"explicit.stat_2387539034","text":"Attacks with this Weapon Penetrate #% Lightning Resistance","type":"explicit"},{"id":"explicit.stat_2453026567","text":"#% chance to gain Onslaught for 10 seconds on Kill","type":"explicit"},{"id":"explicit.stat_4154259475","text":"# to Level of Socketed Support Gems","type":"explicit"},{"id":"explicit.stat_1263342750","text":"Adds # to # Cold Damage to Dagger Attacks","type":"explicit"},{"id":"explicit.stat_2353576063","text":"#% increased Effect of your Curses","type":"explicit"},{"id":"explicit.stat_628716294","text":"Action Speed cannot be modified to below base value","type":"explicit"},{"id":"explicit.stat_3110907148","text":"#% increased Cast Speed if a Minion has been Killed Recently","type":"explicit"},{"id":"explicit.stat_1745710984","text":"#% chance to grant Unholy Might to nearby Enemies on Kill","type":"explicit"},{"id":"explicit.stat_1910361436","text":"Adds # to # Fire Damage to Dagger Attacks","type":"explicit"},{"id":"explicit.stat_3991482957","text":"#% chance to gain Unholy Might for 10 seconds on Kill","type":"explicit"},{"id":"explicit.stat_2355151849","text":"#% increased Melee Physical Damage per 10 Dexterity","type":"explicit"},{"id":"explicit.stat_3814686091","text":"Herald of Thunder has #% increased Buff Effect","type":"explicit"},{"id":"explicit.stat_2886441936","text":"1 Added Passive Skill is Magnifier","type":"explicit"},{"id":"explicit.stat_2319448214","text":"Gore Footprints","type":"explicit"},{"id":"explicit.stat_2464689927","text":"Adds # to # Cold Damage to Spells while wielding a Two Handed Weapon","type":"explicit"},{"id":"explicit.stat_392168009","text":"#% to Chaos Resistance during any Flask Effect","type":"explicit"},{"id":"explicit.stat_3988349707","text":"#% to Damage over Time Multiplier","type":"explicit"},{"id":"explicit.stat_1688975080","text":"Nearby Allies gain #% of Life Regenerated per second","type":"explicit"},{"id":"explicit.stat_4231842891","text":"Adds # to # Lightning Damage to Claw Attacks","type":"explicit"},{"id":"explicit.stat_723832351","text":"#% of Cold Damage Converted to Fire Damage","type":"explicit"},{"id":"explicit.stat_881645355","text":"Transfiguration of Body","type":"explicit"},{"id":"explicit.stat_2653955271","text":"Damage Penetrates #% Fire Resistance","type":"explicit"},{"id":"explicit.stat_2098320128","text":"With at least 40 Intelligence in Radius, Freezing Pulse fires an additional Projectile","type":"explicit"},{"id":"explicit.stat_2511280084","text":"With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle","type":"explicit"},{"id":"explicit.stat_1924591908","text":"#% chance to grant Onslaught to nearby Enemies on Kill","type":"explicit"},{"id":"explicit.stat_436556261","text":"This Map\u0027s Modifiers to Quantity of Items found also apply to Rarity","type":"explicit"},{"id":"explicit.stat_3382957283","text":"Curse Enemies with Level # Assassin\u0027s Mark on Hit","type":"explicit"},{"id":"explicit.stat_1782176131","text":"Adds # to # Cold Damage to Axe Attacks","type":"explicit"},{"id":"explicit.stat_3352373076","text":"Adds # to # Lightning Damage to Spells while Dual Wielding","type":"explicit"},{"id":"explicit.stat_3317068522","text":"1 Added Passive Skill is Call to the Slaughter","type":"explicit"},{"id":"explicit.stat_2074744008","text":"With at least 40 Intelligence in Radius, #% increased Freezing Pulse Damage if\nyou\u0027ve Shattered an Enemy Recently","type":"explicit"},{"id":"explicit.stat_64726306","text":"Can\u0027t use other Rings","type":"explicit"},{"id":"explicit.stat_2727977666","text":"With at least 40 Intelligence in Radius, Frostbolt Projectiles gain #% increased Projectile Speed per second","type":"explicit"},{"id":"explicit.stat_276103140","text":"#% increased Critical Strike Chance against Shocked Enemies","type":"explicit"},{"id":"explicit.stat_1370753114","text":"Nearby Allies gain #% increased Mana Regeneration Rate","type":"explicit"},{"id":"explicit.stat_935386993","text":"With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle","type":"explicit"},{"id":"explicit.stat_3790108551","text":"With at least 40 Intelligence in Radius, Frostbolt fires an additional Projectile","type":"explicit"},{"id":"explicit.stat_2444301311","text":"During Flask Effect, Damage Penetrates #% Resistance of each Element for which your Uncapped Elemental Resistance is highest","type":"explicit"},{"id":"explicit.stat_3837707023","text":"Minions have #% to Chaos Resistance","type":"explicit"},{"id":"explicit.stat_3954157711","text":"Adds # to # Physical Damage to Spells while holding a Shield","type":"explicit"},{"id":"explicit.stat_1703766309","text":"1 Added Passive Skill is Deep Chill","type":"explicit"},{"id":"explicit.stat_133683091","text":"Adds # to # Physical Damage to Wand Attacks","type":"explicit"},{"id":"explicit.stat_3420284170","text":"#% reduced Spark Duration","type":"explicit"},{"id":"explicit.stat_187418672","text":"Adds # to # Cold Damage to Mace or Sceptre Attacks","type":"explicit"},{"id":"explicit.stat_429867172","text":"# to maximum number of Summoned Totems","type":"explicit"},{"id":"explicit.stat_1119465199","text":"Chaos Damage does not bypass Energy Shield","type":"explicit"},{"id":"explicit.stat_662691280","text":"Adds # to # Fire Damage to Spells while Dual Wielding","type":"explicit"},{"id":"explicit.stat_3771516363","text":"#% additional Physical Damage Reduction","type":"explicit"},{"id":"explicit.stat_3103494675","text":"With at least 40 Dexterity in Radius, Ice Shot Pierces an additional Target","type":"explicit"},{"id":"explicit.stat_3477714116","text":"Curse Enemies with Level 5 Vulnerability on Block","type":"explicit"},{"id":"explicit.stat_3002506763","text":"#% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed","type":"explicit"},{"id":"explicit.stat_893903361","text":"# Life gained on Killing Ignited Enemies","type":"explicit"},{"id":"explicit.stat_3415827027","text":"1 Added Passive Skill is Furious Assault","type":"explicit"},{"id":"explicit.stat_935326447","text":"Moving while Bleeding doesn\u0027t cause you to take extra Damage","type":"explicit"},{"id":"explicit.stat_4255924189","text":"Adds # to # Physical Damage to Spells while Dual Wielding","type":"explicit"},{"id":"explicit.stat_507505131","text":"1 Added Passive Skill is Purposeful Harbinger","type":"explicit"},{"id":"explicit.stat_2461965653","text":"Adds # to # Fire Damage to Axe Attacks","type":"explicit"},{"id":"explicit.stat_3986030307","text":"You gain an Endurance Charge on use","type":"explicit"},{"id":"explicit.stat_41394014","text":"Monsters\u0027 Melee Attacks apply random Curses on Hit","type":"explicit"},{"id":"explicit.stat_3146788701","text":"Adds # to # Fire Damage to Mace or Sceptre Attacks","type":"explicit"},{"id":"explicit.stat_2301696196","text":"You take #% of your maximum Life as Chaos Damage on use","type":"explicit"},{"id":"explicit.stat_3457100218","text":"Gain Onslaught for # second per Frenzy Charge on use","type":"explicit"},{"id":"explicit.stat_696805682","text":"Socketed Gems are Supported by Level # Ancestral Call","type":"explicit"},{"id":"explicit.stat_3398283493","text":"Attacks with this Weapon Penetrate #% Fire Resistance","type":"explicit"},{"id":"explicit.stat_1686122637","text":"#% increased Damage while Ignited","type":"explicit"},{"id":"explicit.stat_1389153006","text":"#% increased Global Defences","type":"explicit"},{"id":"explicit.stat_2135335407","text":"Adds # to # Fire Damage to Spells while wielding a Two Handed Weapon","type":"explicit"},{"id":"explicit.stat_1072119541","text":"#% increased Damage if you\u0027ve Killed Recently","type":"explicit"},{"id":"explicit.stat_2076080860","text":"# to Melee Strike Range per White Socket","type":"explicit"},{"id":"explicit.stat_250876318","text":"#% increased Global Attack Speed per Green Socket","type":"explicit"},{"id":"explicit.stat_808939569","text":"Socketed Gems are Supported by Level # Minion Damage","type":"explicit"},{"id":"explicit.stat_1237038225","text":"Socketed Gems Reserve No Mana","type":"explicit"},{"id":"explicit.stat_107118693","text":"Socketed Gems are Supported by Level # Fortify","type":"explicit"},{"id":"explicit.stat_2221570601","text":"#% Global chance to Blind Enemies on hit","type":"explicit"},{"id":"explicit.stat_640052854","text":"# Mana gained for each Enemy hit by Attacks","type":"explicit"},{"id":"explicit.stat_3212481075","text":"Adds # to # Lightning Damage to Staff Attacks","type":"explicit"},{"id":"explicit.stat_2112615899","text":"#% increased Global Physical Damage with Weapons per Red Socket","type":"explicit"},{"id":"explicit.stat_2921084940","text":"Adds # to # Physical Damage to Spells while wielding a Two Handed Weapon","type":"explicit"},{"id":"explicit.stat_1181129483","text":"Adds # to # Chaos Damage to Spells while holding a Shield","type":"explicit"},{"id":"explicit.stat_2697049014","text":"You gain a Power Charge on use","type":"explicit"},{"id":"explicit.stat_570159344","text":"Consumes 1 Frenzy Charge on use","type":"explicit"},{"id":"explicit.stat_782323220","text":"#% increased Elemental Damage with Attack Skills during any Flask Effect","type":"explicit"},{"id":"explicit.stat_4124805414","text":"#% to maximum Chance to Block Attack Damage","type":"explicit"},{"id":"explicit.stat_4077035099","text":"Passives in Radius can be Allocated without being connected to your tree","type":"explicit"},{"id":"explicit.stat_3230795453","text":"You gain a Frenzy Charge on use","type":"explicit"},{"id":"explicit.stat_1740229525","text":"Attacks with this Weapon Penetrate #% Cold Resistance","type":"explicit"},{"id":"explicit.stat_90012347","text":"Adds # to # Lightning Damage against Shocked Enemies","type":"explicit"},{"id":"explicit.stat_1650632809","text":"With at least 40 Intelligence in Radius, Spark fires an additional Projectile","type":"explicit"},{"id":"explicit.stat_3410049114","text":"#% increased Movement Speed for you and nearby Allies","type":"explicit"},{"id":"explicit.stat_3228973398","text":"# Flask Charges recovered every 3 seconds","type":"explicit"},{"id":"explicit.stat_2406605753","text":"Recover #% of Energy Shield on Kill","type":"explicit"},{"id":"explicit.stat_1122134690","text":"Socketed Gems are Supported by Level # Trap","type":"explicit"},{"id":"explicit.stat_156016608","text":"With at least 40 Strength in Radius, Ground Slam\nhas a #% increased angle","type":"explicit"},{"id":"explicit.stat_160933750","text":"With at least 40 Intelligence in Radius, Magma Orb\nhas #% increased Area of Effect per Chain","type":"explicit"},{"id":"explicit.stat_284496119","text":"Monster Level: #","type":"explicit"},{"id":"explicit.stat_3638731729","text":"1 Added Passive Skill is Sadist","type":"explicit"},{"id":"explicit.stat_3235814433","text":"# to Level of all Raise Spectre Gems","type":"explicit"},{"id":"explicit.stat_4053097676","text":"# to Maximum Spirit Charges per Abyss Jewel affecting you","type":"explicit"},{"id":"explicit.stat_305634887","text":"Recover #% of Life when you lose a Spirit Charge","type":"explicit"},{"id":"explicit.stat_1865428306","text":"Adds # to # Chaos Damage to Spells while Dual Wielding","type":"explicit"},{"id":"explicit.stat_2412100590","text":"With at least 40 Dexterity in Radius, Melee Damage\ndealt by Frost Blades Penetrates #% Cold Resistance","type":"explicit"},{"id":"explicit.stat_630867098","text":"With at least 40 Dexterity in Radius, Barrage fires an additional projectile simultaneously on the first and final attacks","type":"explicit"},{"id":"explicit.stat_591105508","text":"# to Level of all Fire Spell Skill Gems","type":"explicit"},{"id":"explicit.stat_1337327984","text":"Socketed Gems are Supported by Level # Minion Life","type":"explicit"},{"id":"explicit.stat_2160417795","text":"You and your Minions take #% reduced Reflected Elemental Damage","type":"explicit"},{"id":"explicit.stat_819529588","text":"#% increased Global Damage","type":"explicit"},{"id":"explicit.stat_338121249","text":"Curse Enemies with Level # Flammability on Hit","type":"explicit"},{"id":"explicit.stat_2605119037","text":"Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value","type":"explicit"},{"id":"explicit.stat_1248507170","text":"With at least 40 Strength in Radius, Cleave grants Fortify on Hit","type":"explicit"},{"id":"explicit.stat_1423639565","text":"Minions have #% to all Elemental Resistances","type":"explicit"},{"id":"explicit.stat_4105031548","text":"1 Added Passive Skill is Conjured Wall","type":"explicit"},{"id":"explicit.stat_1743759111","text":"Adds # to # Chaos Damage to Spells while wielding a Two Handed Weapon","type":"explicit"},{"id":"explicit.stat_1038949719","text":"Gain #% of Weapon Physical Damage as Extra Damage of a random Element","type":"explicit"},{"id":"explicit.stat_1140739168","text":"#% increased Damage Over Time during Flask Effect","type":"explicit"},{"id":"explicit.stat_2092708508","text":"With at least 40 Dexterity in Radius, Frost Blades has #% increased Projectile Speed","type":"explicit"},{"id":"explicit.stat_2008682345","text":"1 Added Passive Skill is Burden Projection","type":"explicit"},{"id":"explicit.stat_1604995720","text":"Grants Level # Despair Curse Aura during Flask Effect","type":"explicit"},{"id":"explicit.stat_3277537093","text":"# Physical Damage taken from Hits by Animals","type":"explicit"},{"id":"explicit.stat_2156764291","text":"#% increased Damage taken from Ghosts","type":"explicit"},{"id":"explicit.stat_3220927448","text":"Adds # to # Fire Damage to Staff Attacks","type":"explicit"},{"id":"explicit.stat_3495544060","text":"Gain #% of Elemental Damage as Extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_2519106214","text":"#% Chance to Block Attack Damage during Flask effect","type":"explicit"},{"id":"explicit.stat_695031402","text":"With at least 40 Dexterity in Radius, Viper Strike deals #% increased Damage with Hits and Poison for each Poison on the Enemy","type":"explicit"},{"id":"explicit.stat_1559361866","text":"With at least 40 Strength in Radius, Ground Slam has a #% chance\nto grant an Endurance Charge when you Stun an Enemy","type":"explicit"},{"id":"explicit.stat_215754572","text":"#% Chance to Block Spell Damage during Flask effect","type":"explicit"},{"id":"explicit.stat_2154290807","text":"Adds # to # Fire Damage to Claw Attacks","type":"explicit"},{"id":"explicit.stat_129035625","text":"You and your Minions take #% reduced Reflected Physical Damage","type":"explicit"},{"id":"explicit.stat_2080171093","text":"#% increased Spell Damage during any Flask Effect","type":"explicit"},{"id":"explicit.stat_2806435316","text":"#% increased Accuracy Rating if you haven\u0027t Killed Recently","type":"explicit"},{"id":"explicit.stat_1025503586","text":"With at least 40 Strength in Radius, Heavy Strike has a \n#% chance to deal Double Damage","type":"explicit"},{"id":"explicit.stat_2591020064","text":"1% increased Movement Speed per # Evasion Rating, up to 75%","type":"explicit"},{"id":"explicit.stat_1482572705","text":"#% increased Effect of Socketed Jewels","type":"explicit"},{"id":"explicit.stat_1086057912","text":"Minions deal #% increased Damage against Abyssal Monsters","type":"explicit"},{"id":"explicit.stat_308396001","text":"#% increased Movement Speed if you haven\u0027t been Hit Recently","type":"explicit"},{"id":"explicit.stat_1710508327","text":"Socketed Gems are Supported by Level # Blastchain Mine","type":"explicit"},{"id":"explicit.stat_4226189338","text":"# to Level of all Chaos Spell Skill Gems","type":"explicit"},{"id":"explicit.stat_2301191210","text":"#% chance to Blind Enemies on hit","type":"explicit"},{"id":"explicit.stat_2109043683","text":"#% increased Effect of Buffs granted by your Golems","type":"explicit"},{"id":"explicit.stat_2770782267","text":"Minions Leech #% of Damage as Life","type":"explicit"},{"id":"explicit.stat_1004011302","text":"#% increased Cooldown Recovery Speed","type":"explicit"},{"id":"explicit.stat_1020786773","text":"Golems have # to Armour","type":"explicit"},{"id":"explicit.stat_729180395","text":"Golem Skills have #% increased Cooldown Recovery Speed","type":"explicit"},{"id":"explicit.stat_2114157293","text":"#% increased Golem Damage for each Type of Golem you have Summoned","type":"explicit"},{"id":"explicit.stat_56225773","text":"Golems have #% increased Attack and Cast Speed","type":"explicit"},{"id":"explicit.stat_169657426","text":"Adds # to # Fire Damage in Main Hand","type":"explicit"},{"id":"explicit.stat_3700381193","text":"#% increased Accuracy Rating per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_1801889979","text":"Adds # to # Lightning Damage to Spells while holding a Shield","type":"explicit"},{"id":"explicit.stat_3881647885","text":"With at least 40 Intelligence in Radius, Blight inflicts Withered for # seconds","type":"explicit"},{"id":"explicit.stat_3603019813","text":"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage\nto surrounding targets","type":"explicit"},{"id":"explicit.stat_3607300552","text":"1 Added Passive Skill is Renewal","type":"explicit"},{"id":"explicit.stat_1002855537","text":"Socketed Gems are Supported by Level # Vile Toxins","type":"explicit"},{"id":"explicit.stat_2528955616","text":"# Energy Shield gained on Kill","type":"explicit"},{"id":"explicit.stat_1351893427","text":"With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to # Radius","type":"explicit"},{"id":"explicit.stat_2162876159","text":"#% increased Projectile Attack Damage","type":"explicit"},{"id":"explicit.stat_736967255","text":"#% increased Chaos Damage","type":"explicit"},{"id":"explicit.stat_3192135716","text":"Traps and Mines have a #% chance to Poison on Hit","type":"explicit"},{"id":"explicit.stat_2235163762","text":"Summoned Golems Regenerate #% of their Life per second","type":"explicit"},{"id":"explicit.stat_2224292784","text":"Can have up to # additional Trap placed at a time","type":"explicit"},{"id":"explicit.stat_3762784591","text":"#% reduced Chaos Damage taken over time","type":"explicit"},{"id":"explicit.stat_2750004091","text":"With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_412462523","text":"#% more Damage","type":"explicit"},{"id":"explicit.stat_1019020209","text":"#% increased Damage per Curse on you","type":"explicit"},{"id":"explicit.stat_952060721","text":"Socketed Gems are supported by Level # Chance to Flee","type":"explicit"},{"id":"explicit.stat_1001829678","text":"#% Chance to Block Attack Damage while wielding a Staff (Staves)","type":"explicit"},{"id":"explicit.stat_2921373173","text":"#% increased Spell Damage if your other Ring is an Elder Item","type":"explicit"},{"id":"explicit.stat_2312817839","text":"Cannot be Stunned by Spells if your other Ring is a Shaper Item","type":"explicit"},{"id":"explicit.stat_2143990571","text":"#% chance to Trigger Level 20 Summon Volatile Anomaly on Kill","type":"explicit"},{"id":"explicit.stat_177215332","text":"1 Added Passive Skill is Thaumophage","type":"explicit"},{"id":"explicit.stat_3621894381","text":"#% chance to Dodge Spell Hits while Phasing","type":"explicit"},{"id":"explicit.stat_1164767410","text":"#% increased Armour while not Ignited, Frozen or Shocked","type":"explicit"},{"id":"explicit.stat_156734303","text":"#% increased Evasion Rating during Onslaught","type":"explicit"},{"id":"explicit.stat_3214518396","text":"Minions have #% chance to Dodge Attack Hits","type":"explicit"},{"id":"explicit.stat_570644802","text":"#% chance to gain a Spirit Charge on Kill","type":"explicit"},{"id":"explicit.stat_280213220","text":"#% chance to Taunt Enemies on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_3762412853","text":"Attacks with this Weapon Penetrate #% Chaos Resistance","type":"explicit"},{"id":"explicit.stat_1592029809","text":"Gain a Power Charge on Non-Critical Strike","type":"explicit"},{"id":"explicit.stat_1994392904","text":"Conduit","type":"explicit"},{"id":"explicit.stat_1040189894","text":"Adds # to # Physical Damage to Sword Attacks","type":"explicit"},{"id":"explicit.stat_705686721","text":"#% increased Damage taken from Skeletons","type":"explicit"},{"id":"explicit.stat_3585232432","text":"1 Added Passive Skill is Master the Fundamentals","type":"explicit"},{"id":"explicit.stat_2608615082","text":"Socketed Gems are Supported by Level # Mana Leech","type":"explicit"},{"id":"explicit.stat_2735889191","text":"Lose all Power Charges on Critical Strike","type":"explicit"},{"id":"explicit.stat_2821079699","text":"# to maximum number of Golems","type":"explicit"},{"id":"explicit.stat_794830148","text":"Adds # to # Fire Damage against Ignited Enemies","type":"explicit"},{"id":"explicit.stat_3102860761","text":"30% increased Movement Speed for # seconds on Throwing a Trap","type":"explicit"},{"id":"explicit.stat_3565558422","text":"With at least 40 Strength in Radius, Glacial Hammer deals\nCold-only Splash Damage to surrounding targets","type":"explicit"},{"id":"explicit.stat_2856328513","text":"#% increased Critical Strike Chance if you haven\u0027t dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_38301299","text":"#% to Fire Resistance while on Low Life","type":"explicit"},{"id":"explicit.stat_3442107889","text":"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy","type":"explicit"},{"id":"explicit.stat_4271082039","text":"#% chance to Avoid being Ignited while on Low Life","type":"explicit"},{"id":"explicit.stat_1096136223","text":"1 Added Passive Skill is Essence Rush","type":"explicit"},{"id":"explicit.stat_3881126302","text":"Cannot be Frozen if Dexterity is higher than Intelligence","type":"explicit"},{"id":"explicit.stat_818778753","text":"Damage Penetrates #% Lightning Resistance","type":"explicit"},{"id":"explicit.stat_3743301799","text":"#% increased Fire Damage taken","type":"explicit"},{"id":"explicit.stat_1261612903","text":"Your Cold Damage can Ignite but not Freeze or Chill","type":"explicit"},{"id":"explicit.stat_35476451","text":"#% increased Damage per 5 of your lowest Attribute","type":"explicit"},{"id":"explicit.stat_1011772129","text":"Your Lightning Damage can Freeze but not Shock","type":"explicit"},{"id":"explicit.stat_3612256591","text":"#% increased Cold Damage if you have used a Fire Skill Recently","type":"explicit"},{"id":"explicit.stat_4167600809","text":"#% increased Fire Damage if you have used a Cold Skill Recently","type":"explicit"},{"id":"explicit.stat_2949096603","text":"Your Fire Damage can Shock but not Ignite","type":"explicit"},{"id":"explicit.stat_1881314095","text":"Share Endurance Charges with nearby party members","type":"explicit"},{"id":"explicit.stat_2609824731","text":"Gain an Endurance Charge when you take a Critical Strike","type":"explicit"},{"id":"explicit.stat_3240073117","text":"#% increased Life Recovery rate","type":"explicit"},{"id":"explicit.stat_2651141461","text":"Area is inhabited by Humanoids","type":"explicit"},{"id":"explicit.stat_808491979","text":"Area is inhabited by Undead","type":"explicit"},{"id":"explicit.stat_228455793","text":"1 Added Passive Skill is Doryani\u0027s Lesson","type":"explicit"},{"id":"explicit.stat_2680613507","text":"Socketed Gems are Supported by Level # Burning Damage","type":"explicit"},{"id":"explicit.stat_645841425","text":"Area is inhabited by ranged monsters","type":"explicit"},{"id":"explicit.stat_1813544255","text":"Area is inhabited by Goatmen","type":"explicit"},{"id":"explicit.stat_3738331820","text":"With at least 40 Strength in Radius, #% of Glacial\nHammer Physical Damage Converted to Cold Damage","type":"explicit"},{"id":"explicit.stat_3024242403","text":"Cannot be Shocked if Intelligence is higher than Strength","type":"explicit"},{"id":"explicit.stat_2926399803","text":"Cannot be Stunned by Attacks if your other Ring is an Elder Item","type":"explicit"},{"id":"explicit.stat_219391121","text":"Gain #% of Physical Damage as Extra Lightning Damage","type":"explicit"},{"id":"explicit.stat_1910157106","text":"Players cannot Regenerate Life, Mana or Energy Shield","type":"explicit"},{"id":"explicit.stat_165402179","text":"# to # added Fire Damage against Burning Enemies","type":"explicit"},{"id":"explicit.stat_2929867083","text":"#% increased Rarity of Items found when on Low Life","type":"explicit"},{"id":"explicit.stat_1350938937","text":"#% chance to Trigger Level 20 Tentacle Whip on Kill","type":"explicit"},{"id":"explicit.stat_3579807004","text":"#% increased Melee Damage when on Full Life","type":"explicit"},{"id":"explicit.stat_2153364323","text":"# Intelligence Requirement","type":"explicit"},{"id":"explicit.stat_2048970144","text":"Minions have # to Armour","type":"explicit"},{"id":"explicit.stat_3774831856","text":"#% increased Physical Damage with Maces or Sceptres","type":"explicit"},{"id":"explicit.stat_2825197711","text":"#% increased Movement Speed while on Full Energy Shield","type":"explicit"},{"id":"explicit.stat_4268321763","text":"#% increased Attack Speed when on Full Life","type":"explicit"},{"id":"explicit.stat_3134632618","text":"Area is inhabited by Lunaris fanatics","type":"explicit"},{"id":"explicit.stat_3279535558","text":"Cannot Leech when on Low Life","type":"explicit"},{"id":"explicit.stat_647201233","text":"1 Added Passive Skill is Vile Reinvigoration","type":"explicit"},{"id":"explicit.stat_3479987487","text":"#% increased Block and Stun Recovery during Flask effect","type":"explicit"},{"id":"explicit.stat_3642528642","text":"Only affects Passives in # Ring","type":"explicit","option":{"options":[{"id":"1","value":"1","text":"Small"},{"id":"2","value":"2","text":"Medium"},{"id":"3","value":"3","text":"Large"},{"id":"4","value":"4","text":"Very Large"}]}},{"id":"explicit.stat_2543931078","text":"#% reduced Frenzy Charge Duration per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_44182350","text":"Adds # to # Fire Damage to Spells while holding a Shield","type":"explicit"},{"id":"explicit.stat_2198697797","text":"Cannot gain Mana during effect","type":"explicit"},{"id":"explicit.stat_2254480358","text":"# to Level of all Cold Spell Skill Gems","type":"explicit"},{"id":"explicit.stat_2457517302","text":"Area is inhabited by Solaris fanatics","type":"explicit"},{"id":"explicit.stat_4067144129","text":"Vaal Skills deal #% increased Damage during effect","type":"explicit"},{"id":"explicit.stat_2740359895","text":"Your Hits can only Kill Frozen Enemies","type":"explicit"},{"id":"explicit.stat_2629689891","text":"# to Monster Level of Area","type":"explicit"},{"id":"explicit.stat_1616734644","text":"1 Added Passive Skill is Wicked Pall","type":"explicit"},{"id":"explicit.stat_2918129907","text":"Inflicts a random Level # Curse on you when your Totems die","type":"explicit"},{"id":"explicit.stat_99089516","text":"Socketed Gems are supported by Level # Faster Projectiles","type":"explicit"},{"id":"explicit.stat_902947445","text":"Vaal Skills used during effect have #% reduced Soul Gain Prevention Duration","type":"explicit"},{"id":"explicit.stat_3516340048","text":"Area is inhabited by Ghosts","type":"explicit"},{"id":"explicit.stat_311030839","text":"Adds # to # Physical Damage to Axe Attacks","type":"explicit"},{"id":"explicit.stat_25085466","text":"Area is inhabited by Sea Witches and their Spawn","type":"explicit"},{"id":"explicit.stat_411460446","text":"Socketed Gems are Supported by Level # Added Chaos Damage","type":"explicit"},{"id":"explicit.stat_4198346809","text":"Area is inhabited by Animals","type":"explicit"},{"id":"explicit.stat_3882531569","text":"#% increased Physical Damage with Daggers","type":"explicit"},{"id":"explicit.stat_1740200922","text":"#% increased Rarity of Items found during Flask effect","type":"explicit"},{"id":"explicit.stat_2961018200","text":"Area is inhabited by Abominations","type":"explicit"},{"id":"explicit.stat_2138434718","text":"#% increased Rarity of Items Dropped by Frozen Enemies","type":"explicit"},{"id":"explicit.stat_1106668565","text":"Socketed Gems are Supported by Level # Innervate","type":"explicit"},{"id":"explicit.stat_1555962658","text":"#% increased Attack Damage if your other Ring is a Shaper Item","type":"explicit"},{"id":"explicit.stat_72129119","text":"1 Added Passive Skill is Haemorrhage","type":"explicit"},{"id":"explicit.stat_282062371","text":"1 Added Passive Skill is Strike Leader","type":"explicit"},{"id":"explicit.stat_860668586","text":"#% increased Cold Damage with Attack Skills","type":"explicit"},{"id":"explicit.stat_1384629003","text":"Socketed Gems are Supported by Level # Ice Bite","type":"explicit"},{"id":"explicit.stat_3829706447","text":"Attacks with this Weapon deal #-# added Chaos Damage against\nEnemies affected by at least 5 Poisons","type":"explicit"},{"id":"explicit.stat_1991958615","text":"Socketed Gems are Supported by Level # Cold Penetration","type":"explicit"},{"id":"explicit.stat_1539696482","text":"With at least 40 Strength in Radius, Cleave has \u002B1 to Radius per Nearby\nEnemy, up to \u002B10","type":"explicit"},{"id":"explicit.stat_1261982764","text":"#% increased Life Recovered","type":"explicit"},{"id":"explicit.stat_1705633890","text":"1 Added Passive Skill is Prodigious Defence","type":"explicit"},{"id":"explicit.stat_2160282525","text":"#% reduced Freeze Duration on you","type":"explicit"},{"id":"explicit.stat_3751996449","text":"#% chance to Trigger Level 8 Summon Raging Spirit on Kill","type":"explicit"},{"id":"explicit.stat_2745936267","text":"#% increased Light Radius during Flask effect","type":"explicit"},{"id":"explicit.stat_4252630904","text":"Area is inhabited by Cultists of Kitava","type":"explicit"},{"id":"explicit.stat_447636597","text":"#% of Attack Damage Leeched as Life against Maimed Enemies","type":"explicit"},{"id":"explicit.stat_47954913","text":"#% increased Critical Strike Chance against Enemies on Full Life","type":"explicit"},{"id":"explicit.stat_3067409450","text":"#% of Attack Damage Leeched as Mana against Poisoned Enemies","type":"explicit"},{"id":"explicit.stat_800141891","text":"#% chance to Freeze, Shock and Ignite","type":"explicit"},{"id":"explicit.stat_3910961021","text":"#% increased Herald of Ice Damage","type":"explicit"},{"id":"explicit.stat_2100196861","text":"#% of Attack Damage Leeched as Life on Critical Strike","type":"explicit"},{"id":"explicit.stat_2739830820","text":"# to Level of all Raise Zombie Gems","type":"explicit"},{"id":"explicit.stat_751813227","text":"Lose #% of Life on Kill","type":"explicit"},{"id":"explicit.stat_3905661226","text":"#% increased Damage while you have no Frenzy Charges","type":"explicit"},{"id":"explicit.stat_1582728645","text":"Gain # Charge when you are Hit by an Enemy","type":"explicit"},{"id":"explicit.stat_402920808","text":"#% increased Physical Damage with Bows","type":"explicit"},{"id":"explicit.stat_389725673","text":"Area has patches of chilled ground","type":"explicit"},{"id":"explicit.stat_3852526385","text":"# to Level of Socketed Movement Gems","type":"explicit"},{"id":"explicit.stat_2289610642","text":"1 Added Passive Skill is Rotten Claws","type":"explicit"},{"id":"explicit.stat_2572042788","text":"Attacks have #% to Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_1390285657","text":"Socketed Gems are Supported by Level # Slower Projectiles","type":"explicit"},{"id":"explicit.stat_410939404","text":"1 Added Passive Skill is Deep Cuts","type":"explicit"},{"id":"explicit.stat_743992531","text":"#% of Damage you Reflect to Enemies when Hit is gained as Life","type":"explicit"},{"id":"explicit.stat_172894060","text":"#% chance to Dodge Attack Hits per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_3711553948","text":"1 Added Passive Skill is Devastator","type":"explicit"},{"id":"explicit.stat_2201614328","text":"Regenerate #% of Life per second if you have been Hit Recently","type":"explicit"},{"id":"explicit.stat_635761691","text":"#% increased Physical Damage with Claws","type":"explicit"},{"id":"explicit.stat_2675603254","text":"# to Level of Socketed Chaos Gems","type":"explicit"},{"id":"explicit.stat_474452755","text":"Cannot Evade Enemy Attacks","type":"explicit"},{"id":"explicit.stat_766615564","text":"#% increased Physical Damage with Ranged Weapons","type":"explicit"},{"id":"explicit.stat_916797432","text":"# to Level of Socketed Strength Gems","type":"explicit"},{"id":"explicit.stat_2769075491","text":"#% increased Physical Damage with Wands","type":"explicit"},{"id":"explicit.stat_3212461220","text":"#% Chance to Cause Monster to Flee on Block","type":"explicit"},{"id":"explicit.stat_1731672673","text":"Curse Reflection","type":"explicit"},{"id":"explicit.stat_568070507","text":"Raised Zombies deal #% more Physical Damage","type":"explicit"},{"id":"explicit.stat_3150000576","text":"Raised Zombies have #% to all Resistances","type":"explicit"},{"id":"explicit.stat_417188801","text":"#% chance to gain an Endurance Charge when you Block","type":"explicit"},{"id":"explicit.stat_3563667308","text":"#% increased Raised Zombie Size","type":"explicit"},{"id":"explicit.stat_573347393","text":"Iron Grip","type":"explicit"},{"id":"explicit.stat_2372915005","text":"1 Added Passive Skill is Pure Might","type":"explicit"},{"id":"explicit.stat_2857427872","text":"Enemies Killed by Zombies\u0027 Hits Explode, dealing #% of their Life as Fire Damage","type":"explicit"},{"id":"explicit.stat_1285587221","text":"Intelligence from Passives in Radius is Transformed to Strength","type":"explicit"},{"id":"explicit.stat_114734841","text":"Flasks applied to you have #% increased Effect","type":"explicit"},{"id":"explicit.stat_3418949024","text":"Attacks with this Weapon Maim on hit","type":"explicit"},{"id":"explicit.stat_228165595","text":"Socketed Gems are Supported by Level # Lesser Poison","type":"explicit"},{"id":"explicit.stat_3246099900","text":"Golems have #% increased Cooldown Recovery Speed","type":"explicit"},{"id":"explicit.stat_347697569","text":"#% increased Accuracy Rating when on Low Life","type":"explicit"},{"id":"explicit.stat_3520048646","text":"#% increased Cold Damage while your Off Hand is empty","type":"explicit"},{"id":"explicit.stat_3882662078","text":"Adds # to # Physical Damage to Mace or Sceptre Attacks","type":"explicit"},{"id":"explicit.stat_4293455942","text":"Enemies Cannot Leech Life From you","type":"explicit"},{"id":"explicit.stat_3548561213","text":"#% increased Attack Speed per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_4116579804","text":"Raised Zombies have # to maximum Life","type":"explicit"},{"id":"explicit.stat_1081444608","text":"#% increased Claw Physical Damage when on Low Life","type":"explicit"},{"id":"explicit.stat_1011760251","text":"#% to maximum Lightning Resistance","type":"explicit"},{"id":"explicit.stat_2801937280","text":"Blood Magic","type":"explicit"},{"id":"explicit.stat_1172810729","text":"#% chance to deal Double Damage","type":"explicit"},{"id":"explicit.stat_1818773442","text":"#% increased Damage with Hits and Ailments per Curse on Enemy","type":"explicit"},{"id":"explicit.stat_1397498432","text":"1 Added Passive Skill is Streamlined","type":"explicit"},{"id":"explicit.stat_3509724289","text":"1 Added Passive Skill is Pure Aptitude","type":"explicit"},{"id":"explicit.stat_4041805509","text":"#% reduced maximum number of Raised Zombies","type":"explicit"},{"id":"explicit.stat_3238189103","text":"Your Spells have Culling Strike","type":"explicit"},{"id":"explicit.stat_3915702459","text":"Gain # Life when you lose an Endurance Charge","type":"explicit"},{"id":"explicit.stat_3771273420","text":"Strength from Passives in Radius is Transformed to Intelligence","type":"explicit"},{"id":"explicit.stat_3416410609","text":"#% Chance to Block Projectile Attack Damage","type":"explicit"},{"id":"explicit.stat_2532625478","text":"Socketed Gems are supported by Level # Elemental Damage with Attacks","type":"explicit"},{"id":"explicit.stat_306443498","text":"Minions convert #% of Physical Damage to Cold Damage per Green Socket","type":"explicit"},{"id":"explicit.stat_323705912","text":"Skills fire an additional Projectile during Flask Effect","type":"explicit"},{"id":"explicit.stat_1019891080","text":"Arrows deal #% increased Damage with Hits and Ailments to Targets they Pierce","type":"explicit"},{"id":"explicit.stat_426503793","text":"Curses on Slain Enemies are transferred to a nearby Enemy","type":"explicit"},{"id":"explicit.stat_199362230","text":"Minions convert #% of Physical Damage to Chaos Damage per White Socket","type":"explicit"},{"id":"explicit.stat_3269060224","text":"Gain a Power Charge after Spending a total of 200 Mana","type":"explicit"},{"id":"explicit.stat_3736953565","text":"#% increased Quantity of Items found during Flask effect","type":"explicit"},{"id":"explicit.stat_1699499433","text":"Lose #% of Energy Shield on Kill","type":"explicit"},{"id":"explicit.stat_4077843608","text":"Has 1 Socket","type":"explicit"},{"id":"explicit.stat_3111456397","text":"# to Spectre maximum Life","type":"explicit"},{"id":"explicit.stat_3872306017","text":"#% increased Power Charge Duration","type":"explicit"},{"id":"explicit.stat_2367680009","text":"#% chance to grant a Power Charge to nearby Allies on Kill","type":"explicit"},{"id":"explicit.stat_991168463","text":"#% chance to grant a Frenzy Charge to nearby Allies on Hit","type":"explicit"},{"id":"explicit.stat_2771016039","text":"#% increased Projectile Attack Damage during any Flask Effect","type":"explicit"},{"id":"explicit.stat_2306924373","text":"You cannot be Chilled for # second after being Chilled","type":"explicit"},{"id":"explicit.stat_3612464552","text":"You cannot be Frozen for # second after being Frozen","type":"explicit"},{"id":"explicit.stat_215882879","text":"#% increased Area of Effect during Flask Effect","type":"explicit"},{"id":"explicit.stat_2831922878","text":"#% increased Attack and Cast Speed if you\u0027ve used a Movement Skill Recently","type":"explicit"},{"id":"explicit.stat_32859524","text":"Curses in this item are reflected back to you","type":"explicit"},{"id":"explicit.stat_4293245253","text":"Enemies Cannot Leech Mana From you","type":"explicit"},{"id":"explicit.stat_2466604008","text":"Attacks Chain an additional time when in Main Hand","type":"explicit"},{"id":"explicit.stat_3345724391","text":"#% chance to Dodge Attack Hits while your Off Hand is empty","type":"explicit"},{"id":"explicit.stat_2872105818","text":"#% chance to Avoid being Chilled during Onslaught","type":"explicit"},{"id":"explicit.stat_2139569643","text":"Minions convert #% of Physical Damage to Fire Damage per Red Socket","type":"explicit"},{"id":"explicit.stat_2105456174","text":"You grant # Frenzy Charges to allies on Death","type":"explicit"},{"id":"explicit.stat_2233272527","text":"1 Added Passive Skill is Repeater","type":"explicit"},{"id":"explicit.stat_2917449574","text":"Removes #% of your maximum Energy Shield on use","type":"explicit"},{"id":"explicit.stat_969865219","text":"#% increased Damage taken while on Full Energy Shield","type":"explicit"},{"id":"explicit.stat_3818161429","text":"You gain Onslaught for # seconds on Culling Strike","type":"explicit"},{"id":"explicit.stat_215346464","text":"You cannot be Shocked for # second after being Shocked","type":"explicit"},{"id":"explicit.stat_2402136583","text":"Gain #% of Lightning Damage as Extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_1757945818","text":"Reflects # Fire Damage to Melee Attackers","type":"explicit"},{"id":"explicit.stat_4215039317","text":"# to Level of Socketed Active Skill Gems","type":"explicit"},{"id":"explicit.stat_2843214518","text":"#% increased Attack Damage","type":"explicit"},{"id":"explicit.stat_2401834120","text":"Added Small Passive Skills also grant: #% increased Damage over Time","type":"explicit"},{"id":"explicit.stat_1777334641","text":"Culling Strike against Burning Enemies","type":"explicit"},{"id":"explicit.stat_2572192375","text":"Socketed Gems are Supported by Level # Added Fire Damage","type":"explicit"},{"id":"explicit.stat_3442976749","text":"Players are Cursed with Frostbite","type":"explicit"},{"id":"explicit.stat_2237528173","text":"Strength from Passives in Radius is Transformed to Dexterity","type":"explicit"},{"id":"explicit.stat_3826977109","text":"Socketed Gems are Supported by Level # Maim","type":"explicit"},{"id":"explicit.stat_989228672","text":"Players are Cursed with Flammability","type":"explicit"},{"id":"explicit.stat_1595367309","text":"1 Added Passive Skill is Snowstorm","type":"explicit"},{"id":"explicit.stat_235847153","text":"With at least 40 Dexterity in Radius, Viper Strike has a #% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit","type":"explicit"},{"id":"explicit.stat_1327522346","text":"#% increased Mana Regeneration Rate while moving","type":"explicit"},{"id":"explicit.stat_1608425196","text":"Intelligence from Passives in Radius is Transformed to Dexterity","type":"explicit"},{"id":"explicit.stat_4064396395","text":"Attacks with this Weapon Penetrate #% Elemental Resistances","type":"explicit"},{"id":"explicit.stat_1604736568","text":"Recover #% of Mana on Kill","type":"explicit"},{"id":"explicit.stat_3519268108","text":"Adds # to # Chaos Damage to Spells and Attacks during any Flask Effect","type":"explicit"},{"id":"explicit.stat_2833226514","text":"# Strength Requirement","type":"explicit"},{"id":"explicit.stat_651875072","text":"Triggers Level # Death Walk when Equipped","type":"explicit"},{"id":"explicit.stat_3665534869","text":"Area has patches of burning ground","type":"explicit"},{"id":"explicit.stat_798767971","text":"Your Maximum Resistances are #%","type":"explicit"},{"id":"explicit.stat_3433676080","text":"#% increased Rarity of Items Dropped by Slain Magic Enemies","type":"explicit"},{"id":"explicit.stat_2483362276","text":"Far Shot","type":"explicit"},{"id":"explicit.stat_2915373966","text":"Gain #% of Cold Damage as Extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_1643796079","text":"Gain Rampage while at Maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_256730087","text":"#% increased Damage with Poison if you have at least 300 Dexterity","type":"explicit"},{"id":"explicit.stat_3619054484","text":"#% Chance to Block Attack Damage while not Cursed","type":"explicit"},{"id":"explicit.stat_1774881905","text":"#% reduced Mana Cost per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2771181375","text":"#% increased Poison Duration if you have at least 150 Intelligence","type":"explicit"},{"id":"explicit.stat_1342790450","text":"#% increased Quantity of Items Dropped by Slain Normal Enemies","type":"explicit"},{"id":"explicit.stat_478147593","text":"1 Added Passive Skill is Sage","type":"explicit"},{"id":"explicit.stat_798111687","text":"You cannot be Shocked while at maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_156080652","text":"1 Added Passive Skill is Whispers of Death","type":"explicit"},{"id":"explicit.stat_2758966888","text":"1 Added Passive Skill is Untouchable","type":"explicit"},{"id":"explicit.stat_3218891195","text":"#% Chance to Block Spell Damage while Cursed","type":"explicit"},{"id":"explicit.stat_2881426199","text":"Lose all Endurance Charges when Rampage ends","type":"explicit"},{"id":"explicit.stat_1569407745","text":"#% to Critical Strike Multiplier with Elemental Skills","type":"explicit"},{"id":"explicit.stat_2479374428","text":"Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value","type":"explicit"},{"id":"explicit.stat_2907156609","text":"Poisons you inflict deal Damage #% faster","type":"explicit"},{"id":"explicit.stat_2040585053","text":"#% Chance to Block Attack Damage when in Off Hand","type":"explicit"},{"id":"explicit.stat_3404168630","text":"#% increased Global Critical Strike Chance when in Main Hand","type":"explicit"},{"id":"explicit.stat_3612407781","text":"# Physical Damage taken from Projectile Attacks","type":"explicit"},{"id":"explicit.stat_4020144606","text":"Socketed Gems are Supported by Level # Added Cold Damage","type":"explicit"},{"id":"explicit.stat_1921572790","text":"#% increased Attack Speed when on Low Life","type":"explicit"},{"id":"explicit.stat_2087561637","text":"1 Added Passive Skill is Storm Drinker","type":"explicit"},{"id":"explicit.stat_1108755349","text":"Socketed Gems are supported by Level # Increased Critical Damage","type":"explicit"},{"id":"explicit.stat_3025389409","text":"#% of Physical Attack Damage Leeched as Life per Red Socket","type":"explicit"},{"id":"explicit.stat_2826979740","text":"Nearby Enemies are Blinded","type":"explicit"},{"id":"explicit.stat_211836731","text":"All Sockets are White","type":"explicit"},{"id":"explicit.stat_956546305","text":"Grants Level # Aspect of the Spider Skill","type":"explicit"},{"id":"explicit.stat_642457541","text":"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_1586440250","text":"#% increased Elemental Damage per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_4082111882","text":"# to Evasion Rating while on Full Life","type":"explicit"},{"id":"explicit.stat_154272030","text":"#% increased Damage for each type of Abyss Jewel affecting you","type":"explicit"},{"id":"explicit.stat_749770518","text":"Socketed Gems are Supported by Level # Inspiration","type":"explicit"},{"id":"explicit.stat_967556848","text":"Socketed Gems fire Projectiles in a circle","type":"explicit"},{"id":"explicit.stat_875143443","text":"#% chance to Steal Power, Frenzy, and Endurance Charges on Hit","type":"explicit"},{"id":"explicit.stat_2234049899","text":"Unaffected by Shocked Ground","type":"explicit"},{"id":"explicit.stat_1625933063","text":"#% of Attack Damage Leeched as Life against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_1275066948","text":"#% increased Melee Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_3265951306","text":"Socketed Gems are Supported by Level # Fire Penetration","type":"explicit"},{"id":"explicit.stat_2434293916","text":"An Enemy Writhing Worms escape the Flask when used\nWrithing Worms are destroyed when Hit","type":"explicit"},{"id":"explicit.stat_1092987622","text":"#% of Melee Physical Damage taken reflected to Attacker","type":"explicit"},{"id":"explicit.stat_3266394681","text":"Attack Skills have # to maximum number of Summoned Totems","type":"explicit"},{"id":"explicit.stat_1599775597","text":"Gain #% of Fire Damage as Extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_1214153650","text":"#% chance to Block Spell Damage if you have Blocked Attack Damage Recently","type":"explicit"},{"id":"explicit.stat_3914638685","text":"#% increased Critical Strike Chance if you have Killed Recently","type":"explicit"},{"id":"explicit.stat_1169502663","text":"Grants Level # Frostbite Skill","type":"explicit"},{"id":"explicit.stat_647983250","text":"#% Chance to Block Attack Damage if you have Blocked Spell Damage Recently","type":"explicit"},{"id":"explicit.stat_3191479793","text":"#% increased effect of Offerings","type":"explicit"},{"id":"explicit.stat_17526298","text":"Attacks with this Weapon have #% increased Elemental Damage","type":"explicit"},{"id":"explicit.stat_3150705301","text":"#% increased Physical Damage with Staves","type":"explicit"},{"id":"explicit.stat_1173027373","text":"Regenerate #% of Life per second with at least 400 Strength","type":"explicit"},{"id":"explicit.stat_573884683","text":"#% chance to create Consecrated Ground when you Block","type":"explicit"},{"id":"explicit.stat_1992516007","text":"Trigger Level # Spirit Burst when you Use a Skill while you have a Spirit Charge","type":"explicit"},{"id":"explicit.stat_1994549323","text":"Minions have #% chance to Freeze, Shock and Ignite","type":"explicit"},{"id":"explicit.stat_2665170385","text":"1 Added Passive Skill is Hit and Run","type":"explicit"},{"id":"explicit.stat_1298238534","text":"Adds # to # Physical Damage to Dagger Attacks","type":"explicit"},{"id":"explicit.stat_4045269075","text":"Recover # Life when you Ignite an Enemy","type":"explicit"},{"id":"explicit.stat_374737750","text":"#% chance to Cause Poison on Critical Strike","type":"explicit"},{"id":"explicit.stat_3513180117","text":"#% increased Mana Recovery rate","type":"explicit"},{"id":"explicit.stat_485151258","text":"#% increased Damage against Ignited Enemies","type":"explicit"},{"id":"explicit.stat_1067429236","text":"#% increased Stun Duration on you","type":"explicit"},{"id":"explicit.stat_3683134121","text":"#% increased Attack Speed with Movement Skills","type":"explicit"},{"id":"explicit.stat_1604393896","text":"#% increased Cast Speed per Power Charge","type":"explicit"},{"id":"explicit.stat_550444281","text":"Socketed Gems are Supported by Level # Cold to Fire","type":"explicit"},{"id":"explicit.stat_3765671129","text":"With at least 40 Dexterity in Radius, Dual Strike has a #% chance\nto deal Double Damage with the Main-Hand Weapon","type":"explicit"},{"id":"explicit.stat_2996445420","text":"Critical Strikes have Culling Strike","type":"explicit"},{"id":"explicit.stat_3872739249","text":"Grants Summon Harbinger of the Arcane Skill","type":"explicit"},{"id":"explicit.stat_1325047894","text":"#% of Damage is taken from Mana before Life per Power Charge","type":"explicit"},{"id":"explicit.stat_797833282","text":"Minions deal # to # Added Attack Physical Damage","type":"explicit"},{"id":"explicit.stat_2589589781","text":"1 Added Passive Skill is Scintillating Idea","type":"explicit"},{"id":"explicit.stat_2930275641","text":"1 Added Passive Skill is Titanic Swings","type":"explicit"},{"id":"explicit.stat_3653191834","text":"Unaffected by Chilled Ground","type":"explicit"},{"id":"explicit.stat_2847548062","text":"#% increased Mana Regeneration Rate per Power Charge","type":"explicit"},{"id":"explicit.stat_1619549198","text":"Ignited Enemies Burn #% slower","type":"explicit"},{"id":"explicit.stat_1939202111","text":"#% increased Critical Strike Chance against Blinded Enemies","type":"explicit"},{"id":"explicit.stat_2749166636","text":"#% More Damage with Arrow Hits at Close Range","type":"explicit"},{"id":"explicit.stat_803730540","text":"Immune to Freeze, Chill, Curses and Stuns during Flask Effect","type":"explicit"},{"id":"explicit.stat_2818518881","text":"#% increased Spell Damage per 10 Intelligence","type":"explicit"},{"id":"explicit.stat_3274270612","text":"1 Added Passive Skill is Heraldry","type":"explicit"},{"id":"explicit.stat_974757096","text":"Triggers Level # Manifest Dancing Dervish on Rampage","type":"explicit"},{"id":"explicit.stat_1289910726","text":"Socketed Gems deal # to # additional Fire Damage","type":"explicit"},{"id":"explicit.stat_3457687358","text":"Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage","type":"explicit"},{"id":"explicit.stat_2194205899","text":"1 Added Passive Skill is Grim Oath","type":"explicit"},{"id":"explicit.stat_1265282021","text":"Grants Level # Aspect of the Cat Skill","type":"explicit"},{"id":"explicit.stat_4181057577","text":"#% less Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_1243237244","text":"Reflects # to # Lightning Damage to Melee Attackers","type":"explicit"},{"id":"explicit.stat_4291066912","text":"1 Added Passive Skill is Evil Eye","type":"explicit"},{"id":"explicit.stat_2342431054","text":"Your Energy Shield starts at zero","type":"explicit"},{"id":"explicit.stat_2839036860","text":"#% increased Endurance, Frenzy and Power Charge Duration","type":"explicit"},{"id":"explicit.stat_422591144","text":"Manifested Dancing Dervish dies when Rampage ends","type":"explicit"},{"id":"explicit.stat_2773515950","text":"1 Added Passive Skill is Second Skin","type":"explicit"},{"id":"explicit.stat_1665492921","text":"Grants Level # Herald of Thunder Skill","type":"explicit"},{"id":"explicit.stat_2102212273","text":"#% reduced Critical Strike Chance per Power Charge","type":"explicit"},{"id":"explicit.stat_1341845920","text":"Monsters reflect Curses","type":"explicit"},{"id":"explicit.stat_77045106","text":"1 Added Passive Skill is Ancestral Inspiration","type":"explicit"},{"id":"explicit.stat_3685028559","text":"#% chance to create Desecrated Ground when you Block","type":"explicit"},{"id":"explicit.stat_2103009393","text":"Grants Level # Icestorm Skill","type":"explicit"},{"id":"explicit.stat_2195518432","text":"1 Added Passive Skill is Energy From Naught","type":"explicit"},{"id":"explicit.stat_1777139212","text":"1 Added Passive Skill is Corrosive Elements","type":"explicit"},{"id":"explicit.stat_50381303","text":"Celestial Footprints","type":"explicit"},{"id":"explicit.stat_3489372920","text":"You have Phasing if you\u0027ve Killed Recently","type":"explicit"},{"id":"explicit.stat_189451991","text":"Reflects # Chaos Damage to Melee Attackers","type":"explicit"},{"id":"explicit.stat_3162258068","text":"Cannot Block Attacks","type":"explicit"},{"id":"explicit.stat_1756125633","text":"Manifested Dancing Dervish disables both weapon slots","type":"explicit"},{"id":"explicit.stat_3635120731","text":"#% chance to Avoid Projectiles while Phasing","type":"explicit"},{"id":"explicit.stat_3901992019","text":"1 Added Passive Skill is Arcane Heroism","type":"explicit"},{"id":"explicit.stat_3812107348","text":"Instant Recovery when on Low Life","type":"explicit"},{"id":"explicit.stat_3221550523","text":"Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level\nCan Consume # Uncorrupted Support Gem\nHas not Consumed any Gems","type":"explicit"},{"id":"explicit.stat_4199056048","text":"1 Added Passive Skill is Burning Bright","type":"explicit"},{"id":"explicit.stat_2864779809","text":"Gain #% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana","type":"explicit"},{"id":"explicit.stat_4159248054","text":"#% increased Warcry Cooldown Recovery Speed","type":"explicit"},{"id":"explicit.stat_3491499175","text":"#% increased Poison Duration per Power Charge","type":"explicit"},{"id":"explicit.stat_2961372685","text":"Recharges # Charge when you deal a Critical Strike","type":"explicit"},{"id":"explicit.stat_4084763463","text":"Regenerate # Mana per Second per Power Charge","type":"explicit"},{"id":"explicit.stat_1221011086","text":"#% increased Damage with Poison per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_3706656107","text":"#% chance to Avoid being Frozen or Chilled if you have used a Fire Skill Recently","type":"explicit"},{"id":"explicit.stat_54812069","text":"#% of Damage from Hits is taken from your Spectres\u0027 Life before you","type":"explicit"},{"id":"explicit.stat_2837603657","text":"You can inflict an additional Ignite on an Enemy","type":"explicit"},{"id":"explicit.stat_393565679","text":"1 Added Passive Skill is Arcane Adept","type":"explicit"},{"id":"explicit.stat_1210937073","text":"Spectres have a Base Duration of # seconds\nSpectres do not travel between Areas","type":"explicit"},{"id":"explicit.stat_2777278657","text":"#% chance to Poison on Hit during Flask effect","type":"explicit"},{"id":"explicit.stat_308618188","text":"Take # Chaos Damage per Second during Flask effect","type":"explicit"},{"id":"explicit.stat_2893557981","text":"Your Critical Strikes do not deal extra Damage during Flask effect","type":"explicit"},{"id":"explicit.stat_927458676","text":"Spreads Tar when you take a Critical Strike","type":"explicit"},{"id":"explicit.stat_3243534964","text":"Cannot Leech Life from Critical Strikes","type":"explicit"},{"id":"explicit.stat_1736172673","text":"Damage with Weapons Penetrates #% Elemental Resistance","type":"explicit"},{"id":"explicit.stat_35810390","text":"\u002B#% to Global Critical Strike Multiplier per Green Socket","type":"explicit"},{"id":"explicit.stat_2503377690","text":"#% of Recovery applied Instantly","type":"explicit"},{"id":"explicit.stat_3544527742","text":"You take #% reduced Extra Damage from Critical Strikes while you have no Power Charges","type":"explicit"},{"id":"explicit.stat_2032453153","text":"1 Added Passive Skill is Empowered Envoy","type":"explicit"},{"id":"explicit.stat_2449668043","text":"#% increased Spell Damage per 5% Chance to Block Attack Damage","type":"explicit"},{"id":"explicit.stat_1438403666","text":"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary","type":"explicit"},{"id":"explicit.stat_791835907","text":"Spells have #% to Critical Strike Chance ","type":"explicit"},{"id":"explicit.stat_273476097","text":"Gain #% of Physical Attack Damage as Extra Fire Damage","type":"explicit"},{"id":"explicit.stat_503990161","text":"Socketed Gems are Supported by Level # Spell Cascade","type":"explicit"},{"id":"explicit.stat_2614321687","text":"#% of Damage Leeched as Life against Shocked Enemies","type":"explicit"},{"id":"explicit.stat_510304734","text":"#% increased Duration of Poisons you inflict during Flask effect","type":"explicit"},{"id":"explicit.stat_1282978314","text":"#% increased Melee Damage against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_1923879260","text":"Attacks have #% chance to cause Bleeding","type":"explicit"},{"id":"explicit.stat_2985291457","text":"Socketed Gems are Supported by Level # Melee Physical Damage","type":"explicit"},{"id":"explicit.stat_496011033","text":"# Chaos Damage taken","type":"explicit"},{"id":"explicit.stat_496822696","text":"#% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons","type":"explicit"},{"id":"explicit.stat_2322980282","text":"1 Added Passive Skill is Smoking Remains","type":"explicit"},{"id":"explicit.stat_1507059769","text":"#% increased Attack Speed if you\u0027ve Killed Recently","type":"explicit"},{"id":"explicit.stat_664010431","text":"1 Added Passive Skill is Veteran Defender","type":"explicit"},{"id":"explicit.stat_1968038301","text":"Contains additional waves of Undead Monsters","type":"explicit"},{"id":"explicit.stat_2920230984","text":"#% additional chance for Slain monsters to drop Scrolls of Wisdom","type":"explicit"},{"id":"explicit.stat_2687254633","text":"#% of Lightning Damage Leeched as Life during Flask effect","type":"explicit"},{"id":"explicit.stat_637766438","text":"You and nearby allies gain #% increased Damage","type":"explicit"},{"id":"explicit.stat_2590715472","text":"Take # Physical Damage when you use a Movement Skill","type":"explicit"},{"id":"explicit.stat_2114080270","text":"Culling Strike against Enemies Cursed with Poacher\u0027s Mark","type":"explicit"},{"id":"explicit.stat_3446170049","text":"Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken","type":"explicit"},{"id":"explicit.stat_31415336","text":"Lose all Frenzy, Endurance, and Power Charges when you Move","type":"explicit"},{"id":"explicit.stat_352612932","text":"#% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons","type":"explicit"},{"id":"explicit.stat_3983981705","text":"#% chance to Blind Enemies on Critical Strike","type":"explicit"},{"id":"explicit.stat_3591359751","text":"You have no Armour or Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_4207939995","text":"#% increased Intelligence for each Unique Item Equipped","type":"explicit"},{"id":"explicit.stat_364728407","text":"Curse Enemies with Level # Poacher\u0027s Mark on Hit, which can apply to Hexproof Enemies","type":"explicit"},{"id":"explicit.stat_1435838855","text":"\u002B1 to Level of Socketed Active Skill Gems per # Player Levels","type":"explicit"},{"id":"explicit.stat_209056835","text":"#% chance to Trigger a Socketed Spell when you Attack with this Weapon","type":"explicit"},{"id":"explicit.stat_1862097882","text":"Spectres have #% increased Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_2417845663","text":"#% chance to Dodge Spell Hits while Channelling","type":"explicit"},{"id":"explicit.stat_440248135","text":"Socketed Triggered Bow Skills deal #% more Damage","type":"explicit"},{"id":"explicit.stat_325437053","text":"Mines can be Detonated an additional time","type":"explicit"},{"id":"explicit.stat_1695720239","text":"#% chance to gain a Frenzy Charge when you Stun an Enemy","type":"explicit"},{"id":"explicit.stat_1643688236","text":"Unaffected by Burning Ground","type":"explicit"},{"id":"explicit.stat_3095266721","text":"#% chance to Dodge Attack Hits while Channelling","type":"explicit"},{"id":"explicit.stat_69078820","text":"1 Added Passive Skill is Wound Aggravation","type":"explicit"},{"id":"explicit.stat_2911442053","text":"Minions have #% chance to Taunt on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_3818661553","text":"1 Added Passive Skill is Eye of the Storm","type":"explicit"},{"id":"explicit.stat_3758293500","text":"Adds # to # Chaos Damage in Off Hand","type":"explicit"},{"id":"explicit.stat_1898967950","text":"Regenerate # Life per second per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2797075304","text":"Counts as Dual Wielding","type":"explicit"},{"id":"explicit.stat_3585572043","text":"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to # Ranged Weapons","type":"explicit"},{"id":"explicit.stat_3282302743","text":"Socketed Non-Channelling Bow Skills are Triggered by Snipe","type":"explicit"},{"id":"explicit.stat_690135178","text":"#% increased total Recovery per second from Mana Leech","type":"explicit"},{"id":"explicit.stat_2195137717","text":"Half of your Strength is added to your Minions","type":"explicit"},{"id":"explicit.stat_4004298002","text":"Unaffected by Desecrated Ground","type":"explicit"},{"id":"explicit.stat_1829238593","text":"Arrows Pierce all Targets","type":"explicit"},{"id":"explicit.stat_3779823630","text":"#% increased Spell Damage while no Mana is Reserved","type":"explicit"},{"id":"explicit.stat_2343098806","text":"Grants Level # Snipe Skill","type":"explicit"},{"id":"explicit.stat_3741365813","text":"Grants Perfect Agony during Flask effect","type":"explicit"},{"id":"explicit.stat_915233352","text":"1% increased Melee Physical Damage with Unarmed Attacks per # Dexterity Allocated in Radius","type":"explicit"},{"id":"explicit.stat_3192592092","text":"Sockets cannot be modified","type":"explicit"},{"id":"explicit.stat_4113852051","text":"1% increased Evasion Rating per # Dexterity Allocated in Radius","type":"explicit"},{"id":"explicit.stat_1054322244","text":"#% chance to gain an Endurance Charge on Kill","type":"explicit"},{"id":"explicit.stat_2335364359","text":"1 Added Passive Skill is Precise Retaliation","type":"explicit"},{"id":"explicit.stat_1619923327","text":"1% increased Claw Physical Damage per # Dexterity Allocated in Radius","type":"explicit"},{"id":"explicit.stat_1647529598","text":"Socketed Gems are Supported by Level # Added Lightning Damage","type":"explicit"},{"id":"explicit.stat_4129825612","text":"#% of Physical Damage from Hits taken as Chaos Damage","type":"explicit"},{"id":"explicit.stat_2085855914","text":"Summoned Raging Spirits deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_576760472","text":"Passive Skills in Radius also grant: Traps and Mines deal # to # added Physical Damage","type":"explicit"},{"id":"explicit.stat_539747809","text":"Socketed Gems are Supported by Level # Blasphemy","type":"explicit"},{"id":"explicit.stat_1569463444","text":"# Physical Damage taken from Attack Hits","type":"explicit"},{"id":"explicit.stat_3804297142","text":"#% chance to Curse non-Cursed Enemies with Enfeeble on Hit","type":"explicit"},{"id":"explicit.stat_2328588114","text":"#% to Critical Strike Multiplier if Dexterity is higher than Intelligence","type":"explicit"},{"id":"explicit.stat_1153801980","text":"1 Added Passive Skill is Cremator","type":"explicit"},{"id":"explicit.stat_69898010","text":"Adds # to # Physical Damage to Staff Attacks","type":"explicit"},{"id":"explicit.stat_3914740665","text":"Grants Level # Aspect of the Avian Skill","type":"explicit"},{"id":"explicit.stat_982290947","text":"1 Added Passive Skill is Flexible Sentry","type":"explicit"},{"id":"explicit.stat_3013430129","text":"# second to Summon Skeleton Cooldown","type":"explicit"},{"id":"explicit.stat_4196775867","text":"Your Aura Buffs do not affect allies","type":"explicit"},{"id":"explicit.stat_3194864913","text":"Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield","type":"explicit"},{"id":"explicit.stat_963261439","text":"#% increased Elemental Damage per 10 Dexterity","type":"explicit"},{"id":"explicit.stat_1114351662","text":"# to Maximum Life per 10 Intelligence","type":"explicit"},{"id":"explicit.stat_2096159630","text":"Adds # to # Lightning Damage to Mace or Sceptre Attacks","type":"explicit"},{"id":"explicit.stat_889728548","text":"1 Added Passive Skill is Stormrider","type":"explicit"},{"id":"explicit.stat_1589090910","text":"Summon an additional Skeleton Warrior with Summon Skeleton","type":"explicit"},{"id":"explicit.stat_1454603936","text":"Adds # to # Physical Damage to Attacks with this Weapon per 3 Player Levels","type":"explicit"},{"id":"explicit.stat_2900833792","text":"1 Added Passive Skill is Brush with Death","type":"explicit"},{"id":"explicit.stat_968369591","text":"#% increased Attack Speed during Flask effect","type":"explicit"},{"id":"explicit.stat_1625103793","text":"#% increased Damage taken per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_2562665460","text":"Stun Threshold is based on Energy Shield instead of Life","type":"explicit"},{"id":"explicit.stat_2021420128","text":"Curse Enemies with Level # Warlord\u0027s Mark on Hit","type":"explicit"},{"id":"explicit.stat_988575597","text":"#% increased Energy Shield Recovery rate","type":"explicit"},{"id":"explicit.stat_1702195217","text":"#% Chance to Block Attack Damage","type":"explicit"},{"id":"explicit.stat_778050954","text":"Adds 1 maximum Lightning Damage to Attacks per # Dexterity Allocated in Radius","type":"explicit"},{"id":"explicit.stat_3872380586","text":"1 Added Passive Skill is Inspired Oppression","type":"explicit"},{"id":"explicit.stat_3772485866","text":"Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage","type":"explicit"},{"id":"explicit.stat_2917587077","text":"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items","type":"explicit"},{"id":"explicit.stat_3057853352","text":"#% chance to Sap Enemies in Chilling Areas","type":"explicit"},{"id":"explicit.stat_2609768284","text":"Area is inhabited by the Vaal","type":"explicit"},{"id":"explicit.stat_4078194486","text":"Recover #% of Life at the end of the Flask Effect","type":"explicit"},{"id":"explicit.stat_3261557635","text":"Bow Knockback at Close Range","type":"explicit"},{"id":"explicit.stat_3814066599","text":"Socketed Gems are Supported by Level # Trap And Mine Damage","type":"explicit"},{"id":"explicit.stat_1723061251","text":"Totems Reflect #% of their maximum Life as Fire Damage to nearby Enemies when Hit","type":"explicit"},{"id":"explicit.stat_3110554274","text":"#% to Elemental Resistances during Flask Effect","type":"explicit"},{"id":"explicit.stat_1736403946","text":"Minions\u0027 Hits can only Kill Ignited Enemies","type":"explicit"},{"id":"explicit.stat_755922799","text":"Minions have #% chance to deal Double Damage","type":"explicit"},{"id":"explicit.stat_1195849808","text":"You gain Onslaught for # seconds on Kill","type":"explicit"},{"id":"explicit.stat_3417757416","text":"#% increased Cooldown Recovery Speed for throwing Traps","type":"explicit"},{"id":"explicit.stat_2761732967","text":"Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy","type":"explicit"},{"id":"explicit.stat_1187803783","text":"You are Shocked during Flask effect, causing 50% increased Damage taken","type":"explicit"},{"id":"explicit.stat_3796013729","text":"Socketed Gems are Supported by Level # Ruthless","type":"explicit"},{"id":"explicit.stat_990335387","text":"Life Leech effects are not removed at Full Life\nLife Leech effects Recover Energy Shield instead while on Full Life","type":"explicit"},{"id":"explicit.stat_2350411833","text":"You lose #% of Energy Shield per second","type":"explicit"},{"id":"explicit.stat_105466375","text":"Grants Level # Purity of Elements Skill","type":"explicit"},{"id":"explicit.stat_715256302","text":"Socketed Gems are Supported by Level # Brutality","type":"explicit"},{"id":"explicit.stat_851224302","text":"Zealot\u0027s Oath during Flask effect","type":"explicit"},{"id":"explicit.stat_1478305007","text":"With 40 Intelligence in Radius, #% of Glacial Cascade Physical Damage\nConverted to Cold Damage","type":"explicit"},{"id":"explicit.stat_2739148464","text":"Has no Attribute Requirements","type":"explicit"},{"id":"explicit.stat_4164247992","text":"You cannot Recharge Energy Shield","type":"explicit"},{"id":"explicit.stat_836566759","text":"1 Added Passive Skill is Cold-Blooded Killer","type":"explicit"},{"id":"explicit.stat_3084359503","text":"1 Added Passive Skill is Basics of Pain","type":"explicit"},{"id":"explicit.stat_3769854701","text":"Cannot Leech Life","type":"explicit"},{"id":"explicit.stat_2419712247","text":"#% increased Duration of Ailments on Enemies","type":"explicit"},{"id":"explicit.stat_306104305","text":"#% increased Effect of Buffs on you","type":"explicit"},{"id":"explicit.stat_2066426995","text":"Adds # to # Physical Damage to Attacks per 25 Dexterity","type":"explicit"},{"id":"explicit.stat_811386429","text":"With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains #% increased Damage each time it Hits","type":"explicit"},{"id":"explicit.stat_2582360791","text":"#% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_1473289174","text":"Unaffected by Shock","type":"explicit"},{"id":"explicit.stat_1787444936","text":"Contains waves of Monsters","type":"explicit"},{"id":"explicit.stat_28721242","text":"You can have two different Banners at the same time","type":"explicit"},{"id":"explicit.stat_1785942004","text":"#% Chance to Trigger Level 18 Summon Spectral Wolf on Kill","type":"explicit"},{"id":"explicit.stat_3652138990","text":"1 Added Passive Skill is Distilled Perfection","type":"explicit"},{"id":"explicit.stat_3849523464","text":"# to Maximum Life per Elder Item Equipped","type":"explicit"},{"id":"explicit.stat_967108924","text":"#% increased Global Defences per White Socket","type":"explicit"},{"id":"explicit.stat_67280387","text":"Gain #% of Maximum Life as Extra Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_3900877792","text":"Deal no Physical Damage","type":"explicit"},{"id":"explicit.stat_2901262227","text":"#% chance to create Chilled Ground when you Freeze an Enemy","type":"explicit"},{"id":"explicit.stat_2241560081","text":"#% increased Attack Speed per 25 Dexterity","type":"explicit"},{"id":"explicit.stat_3175679225","text":"Nearby allies gain #% increased Damage","type":"explicit"},{"id":"explicit.stat_1420236871","text":"Ignites you inflict with Attacks deal Damage #% faster","type":"explicit"},{"id":"explicit.stat_443525707","text":"Nearby Enemies have #% increased Effect of Curses on them","type":"explicit"},{"id":"explicit.stat_1168603868","text":"and nearby Allies Regenerate 200 Life per second","type":"explicit"},{"id":"explicit.stat_497716276","text":"#% increased Trap Trigger Area of Effect","type":"explicit"},{"id":"explicit.stat_2314111938","text":"1 Added Passive Skill is Mystical Ward","type":"explicit"},{"id":"explicit.stat_886931978","text":"#% increased Recovery when on Low Life","type":"explicit"},{"id":"explicit.stat_1269609669","text":"# Life gained on Kill per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_625885138","text":"Left Ring Slot: Your Chilling Skitterbot\u0027s Aura applies Socketed Curse instead","type":"explicit"},{"id":"explicit.stat_2125178364","text":"Siege Ballista has # to maximum number of Summoned Totems per 200 Dexterity","type":"explicit"},{"id":"explicit.stat_1696792323","text":"#% increased Damage per Frenzy Charge with Hits against Enemies on Low Life","type":"explicit"},{"id":"explicit.stat_748813744","text":"#% of Attack Damage Leeched as Life against Chilled Enemies","type":"explicit"},{"id":"explicit.stat_4125471110","text":"#% chance to Trigger Level 16 Molten Burst on Melee Hit","type":"explicit"},{"id":"explicit.stat_2503253050","text":"Cannot gain Power Charges","type":"explicit"},{"id":"explicit.stat_1367987042","text":"With 40 Intelligence in Radius, Glacial Cascade has an additional Burst","type":"explicit"},{"id":"explicit.stat_175362265","text":"#% to Chaos Resistance per Poison on you","type":"explicit"},{"id":"explicit.stat_3853465279","text":"Dread Banner has #% increased Fortify duration","type":"explicit"},{"id":"explicit.stat_3880462354","text":"Grants Level # Herald of Ash Skill","type":"explicit"},{"id":"explicit.stat_3648858570","text":"# to # Cold Damage per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_456916387","text":"On Killing a Poisoned Enemy, nearby Enemies are Poisoned","type":"explicit"},{"id":"explicit.stat_2828673491","text":"Regenerate #% of Life per second per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_1626818279","text":"1 Added Passive Skill is Quick Getaway","type":"explicit"},{"id":"explicit.stat_3133323410","text":"Bleeding Enemies you Kill Explode, dealing #% of\ntheir Maximum Life as Physical Damage","type":"explicit"},{"id":"explicit.stat_2912438397","text":"Summoned Skeletons take #% of their Maximum Life per second as Fire Damage","type":"explicit"},{"id":"explicit.stat_4235300427","text":"1 Added Passive Skill is Special Reserve","type":"explicit"},{"id":"explicit.stat_3088991881","text":"With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to # Skeleton Mages","type":"explicit"},{"id":"explicit.stat_1186934478","text":"#% reduced Maximum number of Summoned Raging Spirits","type":"explicit"},{"id":"explicit.stat_121185030","text":"#% increased Rarity of Items found from Slain Unique Enemies","type":"explicit"},{"id":"explicit.stat_3074608753","text":"Summoned Skeletons have a #% chance to Cover Enemies in Ash on Hit","type":"explicit"},{"id":"explicit.stat_4047895119","text":"#% increased Minion Attack Speed per 50 Dexterity","type":"explicit"},{"id":"explicit.stat_2466912132","text":"#% increased Armour while Bleeding","type":"explicit"},{"id":"explicit.stat_4173140569","text":"Banners you are carrying gain 1 Stage on Melee Hit, up to 5 per second","type":"explicit"},{"id":"explicit.stat_2134166669","text":"#% increased Effect of Chilled Ground","type":"explicit"},{"id":"explicit.stat_1603621602","text":"1 Added Passive Skill is Dark Ideation","type":"explicit"},{"id":"explicit.stat_4119032338","text":"#% increased Area of Effect per 25 Rampage Kills","type":"explicit"},{"id":"explicit.stat_262301496","text":"#% reduced Mana Cost of Raise Spectre","type":"explicit"},{"id":"explicit.stat_2706994884","text":"Shocked Enemies you Kill Explode, dealing #% of\ntheir Life as Lightning Damage which cannot Shock","type":"explicit"},{"id":"explicit.stat_1307972622","text":"#% increased Area of Effect per 20 Intelligence","type":"explicit"},{"id":"explicit.stat_889691035","text":"#% increased Attack Speed per 10 Dexterity","type":"explicit"},{"id":"explicit.stat_825352061","text":"Grants Level # Death Aura Skill","type":"explicit"},{"id":"explicit.stat_4120779321","text":"Removes all but one Life on use\nRemoved life is Regenerated as Energy Shield over # seconds","type":"explicit"},{"id":"explicit.stat_3408601861","text":"Area is inhabited by Lunaris fanatics","type":"explicit"},{"id":"explicit.stat_2594215131","text":"#% increased Physical Weapon Damage per 10 Strength","type":"explicit"},{"id":"explicit.stat_2374357674","text":"Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you","type":"explicit"},{"id":"explicit.stat_1010340836","text":"#% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy","type":"explicit"},{"id":"explicit.stat_1917661185","text":"Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity","type":"explicit"},{"id":"explicit.stat_1028754276","text":"1 Added Passive Skill is Numbing Elixir","type":"explicit"},{"id":"explicit.stat_1250317014","text":"With at least 40 Strength in Radius, #% increased\nRarity of Items dropped by Enemies Shattered by Glacial Hammer","type":"explicit"},{"id":"explicit.stat_736847554","text":"Totems fire # additional Projectile","type":"explicit"},{"id":"explicit.stat_637690626","text":"Gain a Frenzy Charge on every 50th Rampage Kill","type":"explicit"},{"id":"explicit.stat_2870108850","text":"Adds # to # Lightning Damage to Hits against Ignited Enemies","type":"explicit"},{"id":"explicit.stat_1607849541","text":"#% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently","type":"explicit"},{"id":"explicit.stat_1958210928","text":"Summoned Skeletons have Avatar of Fire","type":"explicit"},{"id":"explicit.stat_637033100","text":"With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike cannot choose Lightning","type":"explicit"},{"id":"explicit.stat_3607154250","text":"#% chance to gain a Power Charge on Killing a Frozen Enemy","type":"explicit"},{"id":"explicit.stat_2034658008","text":"#% increased Damage per Power Charge","type":"explicit"},{"id":"explicit.stat_4091369450","text":"#% increased Melee Damage during any Flask Effect","type":"explicit"},{"id":"explicit.stat_1023752508","text":"No Chance to Block","type":"explicit"},{"id":"explicit.stat_3557561376","text":"#% increased Spell Damage taken when on Low Mana","type":"explicit"},{"id":"explicit.stat_1669220541","text":"Your Skills have no Mana Cost during Flask effect","type":"explicit"},{"id":"explicit.stat_3788706881","text":"# maximum Energy Shield per 5 Strength","type":"explicit"},{"id":"explicit.stat_243713911","text":"Grants Level # Lightning Warp Skill","type":"explicit"},{"id":"explicit.stat_1585280892","text":"Mortal Conviction","type":"explicit"},{"id":"explicit.stat_2053992416","text":"With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike deal 50% less Lightning Damage","type":"explicit"},{"id":"explicit.stat_2109066258","text":"Adds # to # Cold Damage in Off Hand","type":"explicit"},{"id":"explicit.stat_269590092","text":"#% reduced Attack and Cast Speed per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_335735137","text":"Totems cannot be Stunned","type":"explicit"},{"id":"explicit.stat_1053326368","text":"#% chance to Avoid being Chilled during Flask effect","type":"explicit"},{"id":"explicit.stat_3587013273","text":"Socketed Gems are Supported by Level # Item Rarity","type":"explicit"},{"id":"explicit.stat_1478247313","text":"#% to Critical Strike Multiplier if you haven\u0027t dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_4133552694","text":"#% increased Effect of non-Damaging Ailments per Elder Item Equipped","type":"explicit"},{"id":"explicit.stat_2919089822","text":"#% chance to Ignite when in Main Hand","type":"explicit"},{"id":"explicit.stat_1073384532","text":"Recover # Energy Shield when your Trap is triggered by an Enemy","type":"explicit"},{"id":"explicit.stat_2661163721","text":"Gain #% of Physical Damage as Extra Cold Damage during effect","type":"explicit"},{"id":"explicit.stat_2872815301","text":"#% chance to Avoid being Frozen during Flask effect","type":"explicit"},{"id":"explicit.stat_1601181226","text":"#% increased Fire Damage with Hits and Ailments against Blinded Enemies","type":"explicit"},{"id":"explicit.stat_530280833","text":"With at least 40 Strength in Radius, Vigilant Strike\nFortifies you and Nearby Allies for # seconds","type":"explicit"},{"id":"explicit.stat_747037697","text":"#% increased Totem Life per 10 Strength Allocated in Radius","type":"explicit"},{"id":"explicit.stat_4056985119","text":"\u002B1 to maximum number of Raised Zombies per # Strength","type":"explicit"},{"id":"explicit.stat_3087667389","text":"1 Added Passive Skill is Dread March","type":"explicit"},{"id":"explicit.stat_3560157887","text":"Fortify Buffs you create instead grant 30% more Evasion Rating","type":"explicit"},{"id":"explicit.stat_3821472155","text":"Adds # to # Physical Damage to Attacks per Level","type":"explicit"},{"id":"explicit.stat_2428334013","text":"1 Added Passive Skill is Astonishing Affliction","type":"explicit"},{"id":"explicit.stat_5955083","text":"Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence","type":"explicit"},{"id":"explicit.stat_2560038623","text":"With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area\nWith at least 40 Intelligence in Radius, Cold Snap\u0027s Cooldown can be bypassed by Power Charges instead of Frenzy Charges","type":"explicit"},{"id":"explicit.stat_693808153","text":"1 Added Passive Skill is Blast-Freeze","type":"explicit"},{"id":"explicit.stat_1810011556","text":"Reflects # Lightning Damage to Attackers on Block","type":"explicit"},{"id":"explicit.stat_1600707273","text":"# to Level of all Physical Spell Skill Gems","type":"explicit"},{"id":"explicit.stat_2803182108","text":"#% increased Elemental Damage if you\u0027ve used a Warcry Recently","type":"explicit"},{"id":"explicit.stat_1473444150","text":"#% increased Attack and Cast Speed while you have Fortify","type":"explicit"},{"id":"explicit.stat_2135899247","text":"Lose all Power Charges on reaching Maximum Power Charges","type":"explicit"},{"id":"explicit.stat_2593773031","text":"Socketed Gems are Supported by Level # Generosity","type":"explicit"},{"id":"explicit.stat_1567462963","text":"Socketed Gems are supported by Level # Additional Accuracy","type":"explicit"},{"id":"explicit.stat_2546417825","text":"#% increased Movement Speed if you\u0027ve used a Warcry Recently","type":"explicit"},{"id":"explicit.stat_519622288","text":"Warcries Knock Enemies Back in an Area","type":"explicit"},{"id":"explicit.stat_1198418726","text":"Grants Level # Blight Skill","type":"explicit"},{"id":"explicit.stat_2886998024","text":"Gems Socketed in Red Sockets have # to Level","type":"explicit"},{"id":"explicit.stat_4170725899","text":"Blight has #% increased Hinder Duration","type":"explicit"},{"id":"explicit.stat_899329924","text":"Gems can be Socketed in this Item ignoring Socket Colour","type":"explicit"},{"id":"explicit.stat_542923416","text":"#% increased Movement Speed while Shocked","type":"explicit"},{"id":"explicit.stat_3417711605","text":"Damage Penetrates #% Cold Resistance","type":"explicit"},{"id":"explicit.stat_529432426","text":"#% increased Damage while Shocked","type":"explicit"},{"id":"explicit.stat_721014846","text":"You cannot be Hindered","type":"explicit"},{"id":"explicit.stat_2229840047","text":"Chaos Damage does not bypass Energy Shield during effect","type":"explicit"},{"id":"explicit.stat_918170065","text":"#% Monster Mana Leech Resistance","type":"explicit"},{"id":"explicit.stat_807955413","text":"Shocks you cause are reflected back to you","type":"explicit"},{"id":"explicit.stat_854030602","text":"Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers","type":"explicit"},{"id":"explicit.stat_3442130499","text":"With at least 40 Dexterity in Radius, Ice Shot has #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_1165847826","text":"#% reduced Spell Damage taken from Blinded Enemies","type":"explicit"},{"id":"explicit.stat_3764265320","text":"#% of Physical Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_1749783861","text":"Grants Level # Embrace Madness Skill","type":"explicit"},{"id":"explicit.stat_85576425","text":"Elemental Resistances are Zero","type":"explicit"},{"id":"explicit.stat_2604619892","text":"#% increased Duration of Elemental Ailments on Enemies","type":"explicit"},{"id":"explicit.stat_63111803","text":"With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike cannot choose Fire","type":"explicit"},{"id":"explicit.stat_1939175721","text":"#% increased Effect of Shrine Buffs on you","type":"explicit"},{"id":"explicit.stat_4097174922","text":"Dexterity from Passives in Radius is Transformed to Strength","type":"explicit"},{"id":"explicit.stat_1936544447","text":"#% chance to gain a Power Charge when you Throw a Trap","type":"explicit"},{"id":"explicit.stat_3062763405","text":"#% Global Critical Strike Multiplier while you have no Frenzy Charges","type":"explicit"},{"id":"explicit.stat_1877661946","text":"#% increased Duration of Shrine Effects on you","type":"explicit"},{"id":"explicit.stat_3799930101","text":"Gems Socketed in Green Sockets have #% to Quality","type":"explicit"},{"id":"explicit.stat_3085465082","text":"Mines have #% increased Detonation Speed","type":"explicit"},{"id":"explicit.stat_1934713036","text":"Area is inhabited by Solaris fanatics","type":"explicit"},{"id":"explicit.stat_1358422215","text":"1% increased Attack Damage per 300 of the lowest of Armour and Evasion Rating","type":"explicit"},{"id":"explicit.stat_3256116097","text":"#% increased Cast Speed during Flask effect","type":"explicit"},{"id":"explicit.stat_1765389199","text":"Life Leech from Hits with this Weapon is instant","type":"explicit"},{"id":"explicit.stat_3286480398","text":"With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike deal 50% less Cold Damage","type":"explicit"},{"id":"explicit.stat_1882129725","text":"1 Added Passive Skill is Guerilla Tactics","type":"explicit"},{"id":"explicit.stat_526251910","text":"Cannot Leech Life from Monsters","type":"explicit"},{"id":"explicit.stat_625037258","text":"Attacks with this Weapon deal Double Damage to Chilled Enemies","type":"explicit"},{"id":"explicit.stat_1759630226","text":"Cannot Leech Mana","type":"explicit"},{"id":"explicit.stat_3114469764","text":"War Banner has #% increased Adrenaline duration","type":"explicit"},{"id":"explicit.stat_3213407110","text":"# to Accuracy Rating while at Maximum Frenzy Charges","type":"explicit"},{"id":"explicit.stat_1809329372","text":"Right Ring Slot: Your Shocking Skitterbot\u0027s Aura applies Socketed Curse instead","type":"explicit"},{"id":"explicit.stat_1038897629","text":"1 Added Passive Skill is Raze and Pillage","type":"explicit"},{"id":"explicit.stat_3541114083","text":"Grants Level # Bear Trap Skill","type":"explicit"},{"id":"explicit.stat_1364858171","text":"1 Added Passive Skill is Sublime Sensation","type":"explicit"},{"id":"explicit.stat_3413085237","text":"#% increased Skeleton Attack Speed","type":"explicit"},{"id":"explicit.stat_3484267929","text":"Nearby allies Recover #% of your Maximum Life when you Die","type":"explicit"},{"id":"explicit.stat_288651645","text":"Your spells have #% chance to Shock against Frozen Enemies","type":"explicit"},{"id":"explicit.stat_1903496649","text":"1 Added Passive Skill is Graceful Execution","type":"explicit"},{"id":"explicit.stat_710372469","text":"Curse Enemies with Level # Conductivity on Hit","type":"explicit"},{"id":"explicit.stat_1013470938","text":"1 Added Passive Skill is Deadly Repartee","type":"explicit"},{"id":"explicit.stat_3635566977","text":"#% to all maximum Resistances while you have no Endurance Charges","type":"explicit"},{"id":"explicit.stat_1052583507","text":"You cannot Regenerate Energy Shield","type":"explicit"},{"id":"explicit.stat_715786975","text":"1 Added Passive Skill is Sap Psyche","type":"explicit"},{"id":"explicit.stat_3577316952","text":"Lose Souls gained from Soul Eater when you use a Flask","type":"explicit"},{"id":"explicit.stat_208447205","text":"Trigger Level # Fog of War when your Trap is triggered","type":"explicit"},{"id":"explicit.stat_2783012144","text":"1 Added Passive Skill is Shrieking Bolts","type":"explicit"},{"id":"explicit.stat_1005475168","text":"1 Added Passive Skill is Powerful Assault","type":"explicit"},{"id":"explicit.stat_770408103","text":"1 Added Passive Skill is Overwhelming Malice","type":"explicit"},{"id":"explicit.stat_1290215329","text":"1 Added Passive Skill is Skeletal Atrophy","type":"explicit"},{"id":"explicit.stat_1170174456","text":"#% increased Endurance Charge Duration","type":"explicit"},{"id":"explicit.stat_1996576560","text":"1 Added Passive Skill is Vast Power","type":"explicit"},{"id":"explicit.stat_3446950357","text":"Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage","type":"explicit"},{"id":"explicit.stat_2350430215","text":"1 Added Passive Skill is Flow of Life","type":"explicit"},{"id":"explicit.stat_3969608626","text":"Flask Effect is not removed at Full Mana\nFlask Effect does not Queue","type":"explicit"},{"id":"explicit.stat_908650225","text":"#% increased Damage if you have Shocked an Enemy Recently","type":"explicit"},{"id":"explicit.stat_3384291300","text":"#% increased Damage if you Summoned a Golem in the past 8 seconds","type":"explicit"},{"id":"explicit.stat_3630426972","text":"Summoned Golems are Aggressive","type":"explicit"},{"id":"explicit.stat_3981960937","text":"#% chance to Avoid being Shocked while Chilled","type":"explicit"},{"id":"explicit.stat_633943719","text":"1 Added Passive Skill is Openness","type":"explicit"},{"id":"explicit.stat_1499057234","text":"1 Added Passive Skill is Battlefield Dominator","type":"explicit"},{"id":"explicit.stat_850729424","text":"Triggers Level # Lightning Aegis when Equipped","type":"explicit"},{"id":"explicit.stat_23537505","text":"Map has # additional random Prefix","type":"explicit"},{"id":"explicit.stat_1087710344","text":"#% Chance for Traps to Trigger an additional time","type":"explicit"},{"id":"explicit.stat_2869193493","text":"Golems Summoned in the past 8 seconds deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_3198006994","text":"1 Added Passive Skill is Brand Loyalty","type":"explicit"},{"id":"explicit.stat_814369372","text":"1 Added Passive Skill is Provocateur","type":"explicit"},{"id":"explicit.stat_2158060122","text":"#% of Lightning Damage Converted to Cold Damage","type":"explicit"},{"id":"explicit.stat_3590104875","text":"You lose all Endurance Charges on reaching maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_4127720801","text":"Cannot Block","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_victario","text":"Commissioned # coins to commemorate Victario","type":"explicit"},{"id":"explicit.stat_4054656914","text":"1 Added Passive Skill is Vicious Guard","type":"explicit"},{"id":"explicit.stat_3952196842","text":"Recover # Life when your Trap is triggered by an Enemy","type":"explicit"},{"id":"explicit.stat_1112135314","text":"#% chance to Trigger a Socketed Warcry Skill when you lose Endurance Charges","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_cadiro","text":"Commissioned # coins to commemorate Cadiro","type":"explicit"},{"id":"explicit.stat_2437193018","text":"All Attack Damage Chills when you Stun","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_chitus","text":"Commissioned # coins to commemorate Chitus","type":"explicit"},{"id":"explicit.stat_2398198236","text":"Adds # to # Lightning Damage to Spells while wielding a Two Handed Weapon","type":"explicit"},{"id":"explicit.stat_462115791","text":"1 Added Passive Skill is Dark Discourse","type":"explicit"},{"id":"explicit.stat_3111255591","text":"#% of Physical Attack Damage Leeched as Life during Flask effect","type":"explicit"},{"id":"explicit.stat_845306697","text":"1 Added Passive Skill is Readiness","type":"explicit"},{"id":"explicit.stat_625682777","text":"#% of Physical Damage from Hits taken as Cold Damage during Flask effect","type":"explicit"},{"id":"explicit.stat_4007482102","text":"Can\u0027t use Chest armour","type":"explicit"},{"id":"explicit.stat_2864618930","text":"With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike cannot choose Cold","type":"explicit"},{"id":"explicit.stat_2764915899","text":"Curse Enemies with Level # Despair on Hit","type":"explicit"},{"id":"explicit.stat_1813069390","text":"With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike deal 50% less Fire Damage","type":"explicit"},{"id":"explicit.stat_254728692","text":"Socketed Gems are Supported by Level # Pierce","type":"explicit"},{"id":"explicit.stat_298173317","text":"#% increased Impale Effect","type":"explicit"},{"id":"explicit.stat_4281625943","text":"1 Added Passive Skill is Opportunistic Fusilade","type":"explicit"},{"id":"explicit.stat_1457679290","text":"Enemy Projectiles Pierce you","type":"explicit"},{"id":"explicit.stat_3434279150","text":"Adds # to # Fire Spell Damage per Buff on you","type":"explicit"},{"id":"explicit.stat_3738335639","text":"#% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy","type":"explicit"},{"id":"explicit.stat_426847518","text":"Curse Enemies with Level # Frostbite on Hit","type":"explicit"},{"id":"explicit.stat_2846730569","text":"Uses both hand slots","type":"explicit"},{"id":"explicit.stat_2205982416","text":"1 Added Passive Skill is Broadside","type":"explicit"},{"id":"explicit.stat_688802590","text":"Your Minions spread Caustic Ground on Death, dealing #% of their maximum Life as Chaos Damage per second","type":"explicit"},{"id":"explicit.stat_3839163699","text":"Socketed Gems are Supported by Level # Advanced Traps","type":"explicit"},{"id":"explicit.stat_3693130674","text":"#% increased Lightning Damage per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_510654792","text":"1 Added Passive Skill is Natural Vigour","type":"explicit"},{"id":"explicit.stat_3579673398","text":"Enemies have #% to Total Physical Damage Reduction against this Weapon\u0027s Hits","type":"explicit"},{"id":"explicit.stat_4069101408","text":"#% chance to Shock Chilled Enemies","type":"explicit"},{"id":"explicit.stat_3304763863","text":"#% increased Quantity of Items Dropped by Slain Frozen Enemies","type":"explicit"},{"id":"explicit.stat_1493590317","text":"You have Onslaught while you have Fortify","type":"explicit"},{"id":"explicit.stat_842363566","text":"Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus","type":"explicit"},{"id":"explicit.stat_4092697134","text":"Iron Will","type":"explicit"},{"id":"explicit.stat_670136258","text":"With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires Shard Projectiles when Chaining","type":"explicit"},{"id":"explicit.stat_894768849","text":"With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires #% more Shard Projectiles","type":"explicit"},{"id":"explicit.stat_3188291252","text":"#% increased Rarity of Items Dropped by Slain Shocked Enemies","type":"explicit"},{"id":"explicit.stat_2244243943","text":"1 Added Passive Skill is Weight Advantage","type":"explicit"},{"id":"explicit.stat_4084331136","text":"#% increased Chaos Damage per Level","type":"explicit"},{"id":"explicit.stat_2918150296","text":"Grants Malachai\u0027s Endurance, Frenzy and Power for 6 seconds each, in sequence","type":"explicit"},{"id":"explicit.stat_209387074","text":"Enemies you kill are Shocked","type":"explicit"},{"id":"explicit.stat_3202667190","text":"1 Added Passive Skill is Student of Decay","type":"explicit"},{"id":"explicit.stat_757315075","text":"Gain Unholy Might for # second on Rampage","type":"explicit"},{"id":"explicit.stat_97064873","text":"#% chance to Freeze, Shock and Ignite during Flask effect","type":"explicit"},{"id":"explicit.stat_285624304","text":"Skills Chain an additional time while at maximum Frenzy Charges","type":"explicit"},{"id":"explicit.stat_2105355711","text":"With 40 total Dexterity and Strength in Radius, Spectral Shield Throw Chains \u002B# times","type":"explicit"},{"id":"explicit.stat_2445675562","text":"#% Chance to Block Attack Damage per Summoned Skeleton","type":"explicit"},{"id":"explicit.stat_2841618445","text":"Regenerate #% of Life per second for each Raised Zombie","type":"explicit"},{"id":"explicit.stat_2095084973","text":"Cannot Knock Enemies Back","type":"explicit"},{"id":"explicit.stat_2666795121","text":"#% increased Mana Regeneration Rate per Raised Spectre","type":"explicit"},{"id":"explicit.stat_2035759353","text":"Shocks you inflict spread to other Enemies within a Radius of #","type":"explicit"},{"id":"explicit.stat_4270096386","text":"Hits have #% increased Critical Strike Chance against you","type":"explicit"},{"id":"explicit.stat_2230931659","text":"#% chance to gain a Frenzy Charge on Killing a Frozen Enemy","type":"explicit"},{"id":"explicit.stat_2458962764","text":"#% of Maximum Life Converted to Energy Shield","type":"explicit"},{"id":"explicit.stat_1060540099","text":"Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength","type":"explicit"},{"id":"explicit.stat_1936135020","text":"1 Added Passive Skill is Victim Maker","type":"explicit"},{"id":"explicit.stat_3321583955","text":"Creates a Smoke Cloud on Rampage","type":"explicit"},{"id":"explicit.stat_2196695640","text":"#% increased Attack Critical Strike Chance per 200 Accuracy Rating","type":"explicit"},{"id":"explicit.stat_2659463225","text":"Curse Enemies with Level # Poacher\u0027s Mark on Hit","type":"explicit"},{"id":"explicit.stat_1653010703","text":"#% to Non-Ailment Chaos Damage over Time Multiplier","type":"explicit"},{"id":"explicit.stat_3448743676","text":"# to Level of Socketed Golem Gems","type":"explicit"},{"id":"explicit.stat_1024189516","text":"Trigger Level # Feast of Flesh every 5 seconds","type":"explicit"},{"id":"explicit.stat_2410501331","text":"1 Added Passive Skill is Surging Vitality","type":"explicit"},{"id":"explicit.stat_1149662934","text":"1 Added Passive Skill is Prismatic Dance","type":"explicit"},{"id":"explicit.stat_886366428","text":"#% increased Damage for each Magic Item Equipped","type":"explicit"},{"id":"explicit.stat_781633505","text":"With at least 40 Intelligence in Radius, Raised Zombies\u0027 Slam\nAttack deals #% increased Damage","type":"explicit"},{"id":"explicit.stat_1097026492","text":"With at least 40 Intelligence in Radius, Raised\nZombies\u0027 Slam Attack has #% increased Cooldown Recovery Speed","type":"explicit"},{"id":"explicit.stat_2663376056","text":"Gain #% of Maximum Mana as Extra Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_3853996752","text":"#% chance for Energy Shield Recharge to start when you use a Skill","type":"explicit"},{"id":"explicit.stat_1070347065","text":"# Intelligence per 1 Intelligence on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_374891408","text":"#% of Physical Attack Damage Leeched as Mana during Flask effect","type":"explicit"},{"id":"explicit.stat_1750735210","text":"Golems have #% increased Maximum Life","type":"explicit"},{"id":"explicit.stat_4224965099","text":"Lightning Damage from Enemies Hitting you is Lucky","type":"explicit"},{"id":"explicit.stat_2867348718","text":"Socketed Attacks have #% to Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_2495041954","text":"Enemies have #% to Total Physical Damage Reduction against your Hits","type":"explicit"},{"id":"explicit.stat_1175213674","text":"#% of Elemental Damage from Hits taken as Chaos Damage","type":"explicit"},{"id":"explicit.stat_3699490848","text":"#% increased Critical Strike Chance against Chilled Enemies","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_zerphi","text":"Bathed in the blood of # sacrificed in the name of Zerphi","type":"explicit"},{"id":"explicit.stat_2420410470","text":"Socketed Gems are Supported by Level # Immolate","type":"explicit"},{"id":"explicit.stat_3492924480","text":"1 Added Passive Skill is Prismatic Carapace","type":"explicit"},{"id":"explicit.stat_172076472","text":"# Dexterity per 1 Dexterity on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_1556625719","text":"Gain a Power Charge for each Enemy you hit with a Critical Strike","type":"explicit"},{"id":"explicit.stat_1195353227","text":"Added Small Passive Skills also grant: #% increased Cast Speed","type":"explicit"},{"id":"explicit.stat_2066820199","text":"1 Added Passive Skill is Wasting Affliction","type":"explicit"},{"id":"explicit.stat_4091848539","text":"# Armour if you\u0027ve Blocked Recently","type":"explicit"},{"id":"explicit.stat_2492660287","text":"Reserves #% of Life","type":"explicit"},{"id":"explicit.stat_93696421","text":"#% increased Attack Damage per 450 Evasion Rating","type":"explicit"},{"id":"explicit.stat_458438597","text":"#% of Damage is taken from Mana before Life","type":"explicit"},{"id":"explicit.stat_3684879618","text":"#% increased Movement Speed while Phasing","type":"explicit"},{"id":"explicit.stat_2418601510","text":"Your Chaos Damage can Shock","type":"explicit"},{"id":"explicit.stat_864879045","text":"#% chance to Chill Attackers for 4 seconds on Block","type":"explicit"},{"id":"explicit.stat_2650053239","text":"#% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently","type":"explicit"},{"id":"explicit.stat_2894297982","text":"Your Chaos Damage has #% chance to Poison Enemies","type":"explicit"},{"id":"explicit.stat_2026112251","text":"1 Added Passive Skill is Cult-Leader","type":"explicit"},{"id":"explicit.stat_347220474","text":"#% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%","type":"explicit"},{"id":"explicit.stat_398702949","text":"Gain a Frenzy Charge on Critical Strike","type":"explicit"},{"id":"explicit.stat_2474196346","text":"# Mana gained for each Enemy Hit by your Spells","type":"explicit"},{"id":"explicit.stat_3598983877","text":"Gain a Frenzy Charge if an Attack Ignites an Enemy","type":"explicit"},{"id":"explicit.stat_4272503233","text":"1 Added Passive Skill is Paralysis","type":"explicit"},{"id":"explicit.stat_3923274300","text":"Enemies in your Chilling Areas take #% increased Lightning Damage","type":"explicit"},{"id":"explicit.stat_4238266823","text":"#% of Lightning Damage Converted to Chaos Damage","type":"explicit"},{"id":"explicit.stat_3101915418","text":"You have Onslaught while at maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_3767939384","text":"Nearby Allies have #% increased Defences per 100 Strength you have","type":"explicit"},{"id":"explicit.stat_4091709362","text":"#% of Damage Leeched as Energy Shield against Frozen Enemies","type":"explicit"},{"id":"explicit.stat_2373999301","text":"Nearby Allies have #% increased Cast Speed per 100 Intelligence you have","type":"explicit"},{"id":"explicit.stat_1438488526","text":"Nearby Allies have #% to Critical Strike Multiplier per 100 Dexterity you have","type":"explicit"},{"id":"explicit.stat_2262007777","text":"Non-instant Mana Recovery from Flasks is also Recovered as Life","type":"explicit"},{"id":"explicit.stat_1436284579","text":"Cannot be Blinded","type":"explicit"},{"id":"explicit.stat_3836017971","text":"Light Radius is based on Energy Shield instead of Life","type":"explicit"},{"id":"explicit.stat_1038955006","text":"1 Added Passive Skill is Dragon Hunter","type":"explicit"},{"id":"explicit.stat_3165492062","text":"#% increased Vaal Skill Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_3734213780","text":"#% of Spell Damage Leeched as Energy Shield for each Curse on Enemy","type":"explicit"},{"id":"explicit.stat_2155467472","text":"#% chance to be inflicted with Bleeding when Hit by an Attack","type":"explicit"},{"id":"explicit.stat_262773569","text":"Mana Reservation of Herald Skills is always 45%","type":"explicit"},{"id":"explicit.stat_1493090598","text":"35% chance to avoid being Stunned for each Herald Buff affecting you","type":"explicit"},{"id":"explicit.stat_135378852","text":"Socketed Spells have #% to Critical Strike Chance","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_rakiata","text":"Commanded leadership over # warriors under Rakiata","type":"explicit"},{"id":"explicit.stat_2105048696","text":"Attacks fire an additional Projectile when in Off Hand","type":"explicit"},{"id":"explicit.stat_1344805487","text":"# to Level of Socketed Herald Gems","type":"explicit"},{"id":"explicit.stat_3657377047","text":"#% chance to Trigger Socketed Curse Skill when you cast a Curse Skill","type":"explicit"},{"id":"explicit.stat_676883595","text":"Cannot be Ignited if Strength is higher than Dexterity","type":"explicit"},{"id":"explicit.stat_3122491961","text":"1 Added Passive Skill is Agent of Destruction","type":"explicit"},{"id":"explicit.stat_3714207489","text":"You gain Onslaught for # second per Endurance Charge when Hit","type":"explicit"},{"id":"explicit.stat_913919528","text":"Socketed Gems are Supported by Level # Spell Echo","type":"explicit"},{"id":"explicit.stat_2630708439","text":"#% chance to inflict Cold Exposure on Hit","type":"explicit"},{"id":"explicit.stat_2994477068","text":"You lose all Endurance Charges when Hit","type":"explicit"},{"id":"explicit.stat_3979476531","text":"Critical Strikes do not inherently Freeze","type":"explicit"},{"id":"explicit.stat_1625939562","text":"1 Added Passive Skill is Advance Guard","type":"explicit"},{"id":"explicit.stat_4260403588","text":"1% increased Rarity of Items found per # Rampage Kills","type":"explicit"},{"id":"explicit.stat_775689239","text":"1 Added Passive Skill is Blessed","type":"explicit"},{"id":"explicit.stat_786460697","text":"Agony Crawler deals #% increased Damage","type":"explicit"},{"id":"explicit.stat_3846248551","text":"Grants Level # Herald of Ice Skill","type":"explicit"},{"id":"explicit.stat_849085925","text":"Enemies Frozen by you take 20% increased Damage","type":"explicit"},{"id":"explicit.stat_3521117619","text":"Evasion Rating is increased by Uncapped Cold Resistance","type":"explicit"},{"id":"explicit.stat_2828710986","text":"Socketed Spells have #% to Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_153777645","text":"#% increased Area of Effect of Curse Skills","type":"explicit"},{"id":"explicit.stat_536957","text":"#% increased Lightning Damage while affected by Herald of Thunder","type":"explicit"},{"id":"explicit.stat_3985468650","text":"Grants Level # Blood Offering Skill","type":"explicit"},{"id":"explicit.stat_2816901897","text":"Socketed Gems have #% reduced Mana Cost","type":"explicit"},{"id":"explicit.stat_891277550","text":"Socketed Gems are supported by Level # Life Leech","type":"explicit"},{"id":"explicit.stat_3247931236","text":"Recover #% of Mana when you Kill an Enemy during Flask Effect","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_xibaqua","text":"Bathed in the blood of # sacrificed in the name of Xibaqua","type":"explicit"},{"id":"explicit.stat_1173558568","text":"#% of Attack Damage Leeched as Life during Flask effect","type":"explicit"},{"id":"explicit.stat_407317553","text":"Socketed Gems are Supported by Level # Increased Duration","type":"explicit"},{"id":"explicit.stat_679194784","text":"1% increased Damage per # Strength when in Main Hand","type":"explicit"},{"id":"explicit.stat_3814876985","text":"#% chance to gain a Power Charge on Critical Strike","type":"explicit"},{"id":"explicit.stat_281201999","text":"Knockback direction is reversed","type":"explicit"},{"id":"explicit.stat_3602667353","text":"#% chance to inflict Fire Exposure on Hit","type":"explicit"},{"id":"explicit.stat_1109700751","text":"Adds # to # Cold Damage to Counterattacks","type":"explicit"},{"id":"explicit.stat_1472543401","text":"Cannot be Stunned when on Low Life","type":"explicit"},{"id":"explicit.stat_3536778624","text":"1 Added Passive Skill is Towering Threat","type":"explicit"},{"id":"explicit.stat_906997920","text":"Socketed Gems are Supported by Level # Iron Will","type":"explicit"},{"id":"explicit.stat_4164870816","text":"#% to Critical Strike Multiplier per Power Charge","type":"explicit"},{"id":"explicit.stat_623651254","text":"Cannot be used with Chaos Inoculation","type":"explicit"},{"id":"explicit.stat_1733969225","text":"Unique Boss drops # additional Currency Items","type":"explicit"},{"id":"explicit.stat_3477833022","text":"Enemies Ignited by you during Flask Effect take #% increased Damage","type":"explicit"},{"id":"explicit.stat_3967845372","text":"Curse Enemies with Level # Vulnerability on Hit","type":"explicit"},{"id":"explicit.stat_4102318278","text":"Grants Level # Aspect of the Crab Skill","type":"explicit"},{"id":"explicit.stat_3477720557","text":"Area has patches of shocking ground","type":"explicit"},{"id":"explicit.stat_2656696317","text":"Regenerate #% of Life per second while Frozen","type":"explicit"},{"id":"explicit.stat_1741700339","text":"1 Added Passive Skill is Thunderstruck","type":"explicit"},{"id":"explicit.stat_2922377850","text":"Applies Level 15 Punishment on Blocking a Melee Attack, ignoring Curse Limit","type":"explicit"},{"id":"explicit.stat_1134501245","text":"1 Added Passive Skill is First Among Equals","type":"explicit"},{"id":"explicit.stat_3945934607","text":"With at least 40 Dexterity in Radius, Galvanic Arrow has #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_2572910724","text":"Herald of Agony has #% increased Buff Effect","type":"explicit"},{"id":"explicit.stat_3391925584","text":"1 Added Passive Skill is Pressure Points","type":"explicit"},{"id":"explicit.stat_3638599682","text":"Never deal Critical Strikes","type":"explicit"},{"id":"explicit.stat_696659555","text":"#% increased Movement Speed while Bleeding","type":"explicit"},{"id":"explicit.stat_3748879662","text":"#% chance to cover Enemies in Ash when they Hit you","type":"explicit"},{"id":"explicit.stat_816458107","text":"#% Chance to Block Spell Damage per Power Charge","type":"explicit"},{"id":"explicit.stat_3391324703","text":"Traps and Mines deal # to # additional Physical Damage","type":"explicit"},{"id":"explicit.stat_2391255504","text":"You have Zealot\u0027s Oath if you haven\u0027t been hit recently","type":"explicit"},{"id":"explicit.stat_4070157876","text":"#% increased Area of Effect per Enemy killed recently, up to 50%","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_doryani","text":"Bathed in the blood of # sacrificed in the name of Doryani","type":"explicit"},{"id":"explicit.stat_713945233","text":"1 Added Passive Skill is Rot-Resistant","type":"explicit"},{"id":"explicit.stat_769192511","text":"While your Passive Skill Tree connects to a class\u0027 starting location, you gain:\nMarauder: Melee Skills have #% increased Area of Effect\nDuelist: #% of Attack Damage Leeched as Life\nRanger: #% increased Movement Speed\nShadow: #% to Critical Strike Chance\nWitch: #% of Mana Regenerated per second\nTemplar: Damage Penetrates #% Elemental Resistances\nScion: # to All Attributes","type":"explicit"},{"id":"explicit.stat_739274558","text":"#% increased Chaos Damage while affected by Herald of Agony","type":"explicit"},{"id":"explicit.stat_2134141047","text":"1 Added Passive Skill is Vital Focus","type":"explicit"},{"id":"explicit.stat_607548408","text":"#% increased Effect of non-Keystone Passive Skills in Radius","type":"explicit"},{"id":"explicit.stat_1964333391","text":"# Lightning Damage taken per second per Power Charge if\nyour Skills have dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_2416869319","text":"Grants #% of Life Recovery to Minions","type":"explicit"},{"id":"explicit.stat_622362787","text":"1 Added Passive Skill is Primordial Bond","type":"explicit"},{"id":"explicit.stat_876846990","text":"1 Added Passive Skill is Seal Mender","type":"explicit"},{"id":"explicit.stat_1631928082","text":"Increases and Reductions to Minion Damage also affect you","type":"explicit"},{"id":"explicit.stat_1170386874","text":"# to Level of Socketed Vaal Gems","type":"explicit"},{"id":"explicit.stat_1217476473","text":"Recover #% of Life when you Kill an Enemy during Flask Effect","type":"explicit"},{"id":"explicit.stat_2627243269","text":"Notable Passive Skills in Radius grant nothing","type":"explicit"},{"id":"explicit.stat_1285172810","text":"#% increased Movement Speed if you have used a Vaal Skill Recently","type":"explicit"},{"id":"explicit.stat_2383388829","text":"#% chance to gain a Power Charge when you use a Vaal Skill","type":"explicit"},{"id":"explicit.stat_1704905020","text":"#% increased Damage while on Consecrated Ground","type":"explicit"},{"id":"explicit.stat_723388324","text":"Trigger Socketed Spells when\nyou Spend at least # Mana to Use a Skill","type":"explicit"},{"id":"explicit.stat_3456816469","text":"#% to Chaos Resistance while affected by Herald of Agony","type":"explicit"},{"id":"explicit.stat_1195793677","text":"Immunity to Ignite during Flask effect\nRemoves Burning on use","type":"explicit"},{"id":"explicit.stat_2192181096","text":"1% increased Armour per # Strength when in Off Hand","type":"explicit"},{"id":"explicit.stat_2048643052","text":"Applies Level 15 Elemental Weakness on Blocking a Spell, ignoring Curse Limit","type":"explicit"},{"id":"explicit.stat_3159161267","text":"#% increased Projectile Speed per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_899293871","text":"Trigger Level # Consecrate when you deal a Critical Strike","type":"explicit"},{"id":"explicit.stat_3816512110","text":"#% increased Projectile Damage per Power Charge","type":"explicit"},{"id":"explicit.stat_1540840","text":"Grants Level # Scorching Ray Skill","type":"explicit"},{"id":"explicit.stat_3294884567","text":"1 Added Passive Skill is Ancestral Reach","type":"explicit"},{"id":"explicit.stat_4026156644","text":"#% to all maximum Elemental Resistances during Flask effect","type":"explicit"},{"id":"explicit.stat_648019518","text":"Removes #% of Life Recovered from Mana when used","type":"explicit"},{"id":"explicit.stat_2347201221","text":"Recover #% of Energy Shield when you Kill an Enemy during Flask Effect","type":"explicit"},{"id":"explicit.stat_1496043857","text":"1 Added Passive Skill is Replenishing Presence","type":"explicit"},{"id":"explicit.stat_4288473380","text":"1 Added Passive Skill is Rattling Bellow","type":"explicit"},{"id":"explicit.stat_2497198283","text":"Regenerate # Life per second if no Equipped Items are Corrupted","type":"explicit"},{"id":"explicit.stat_2481358827","text":"#% increased Physical Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_3285021988","text":"# Life gained for each Enemy Hit if you have used a Vaal Skill Recently","type":"explicit"},{"id":"explicit.stat_541329769","text":"Applies Level 15 Temporal Chains on Blocking a Projectile Attack, ignoring Curse Limit","type":"explicit"},{"id":"explicit.stat_1030835421","text":"#% increased Bleeding Duration per 12 Intelligence","type":"explicit"},{"id":"explicit.stat_3753703249","text":"Gain #% of Physical Damage as Extra Damage of a random Element","type":"explicit"},{"id":"explicit.stat_3259396413","text":"#% to maximum Lightning Resistance while affected by Herald of Thunder","type":"explicit"},{"id":"explicit.stat_990219738","text":"#% increased Lightning Damage per 10 Intelligence","type":"explicit"},{"id":"explicit.stat_2557247391","text":"Recharges # Charge when you Consume an Ignited corpse","type":"explicit"},{"id":"explicit.stat_2687017988","text":"#% to Lightning Resistance while affected by Herald of Thunder","type":"explicit"},{"id":"explicit.stat_555311393","text":"#% increased Physical Damage Over Time per 10 Dexterity","type":"explicit"},{"id":"explicit.stat_702909553","text":"#% increased Scorching Ray beam length","type":"explicit"},{"id":"explicit.stat_957679205","text":"1 Added Passive Skill is Ancestral Echo","type":"explicit"},{"id":"explicit.stat_2208857094","text":"#% chance to Poison on Hit against Cursed Enemies","type":"explicit"},{"id":"explicit.stat_2062174346","text":"#% increased Damage per 15 Dexterity","type":"explicit"},{"id":"explicit.stat_456502758","text":"1 Added Passive Skill is Careful Handling","type":"explicit"},{"id":"explicit.stat_3537762266","text":"Herald of Ice has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_2132807290","text":"Map has # additional Synthesis Global Modifier","type":"explicit"},{"id":"explicit.stat_2108380422","text":"Life Leech effects are not removed at Full Life","type":"explicit"},{"id":"explicit.stat_3865999868","text":"#% Chance to Block Attack Damage while on Consecrated Ground","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_avarius","text":"Carved to glorify # new faithful converted by High Templar Avarius","type":"explicit"},{"id":"explicit.stat_2487643588","text":"Socketed Gems are Supported by Level # Less Duration","type":"explicit"},{"id":"explicit.stat_3718597497","text":"Socketed Gems are Supported by Level # Controlled Destruction","type":"explicit"},{"id":"explicit.stat_1456464057","text":"#% of Spell Damage Leeched as Energy Shield during Flask effect","type":"explicit"},{"id":"explicit.stat_569299859","text":"#% to all maximum Resistances","type":"explicit"},{"id":"explicit.stat_3358745905","text":"Attacks have Blood Magic","type":"explicit"},{"id":"explicit.stat_3101897388","text":"#% increased Maximum Recovery per Life Leech","type":"explicit"},{"id":"explicit.stat_1271338211","text":"Grants Level # Abyssal Cry Skill","type":"explicit"},{"id":"explicit.stat_4253105373","text":"Herald of Agony has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_4222857095","text":"Adds # to # Lightning Damage for each Shocked Enemy you\u0027ve Killed Recently","type":"explicit"},{"id":"explicit.stat_2072206041","text":"#% Chance to cause Bleeding Enemies to Flee on hit","type":"explicit"},{"id":"explicit.stat_248838155","text":"#% reduced Reflected Elemental Damage taken","type":"explicit"},{"id":"explicit.stat_3206381437","text":"#% chance to gain Fortify when you Stun an Enemy with Melee Damage","type":"explicit"},{"id":"explicit.stat_1669135888","text":"#% increased Elemental Damage per Sextant affecting the area","type":"explicit"},{"id":"explicit.stat_3784610129","text":"1 Added Passive Skill is Dark Messenger","type":"explicit"},{"id":"explicit.stat_1345113611","text":"Inflict non-Damaging Ailments as though dealing #% more Damage","type":"explicit"},{"id":"explicit.stat_3304801725","text":"# Mana gained on Killing a Frozen Enemy","type":"explicit"},{"id":"explicit.stat_950661692","text":"#% to maximum Cold Resistance while affected by Herald of Ice","type":"explicit"},{"id":"explicit.stat_2443713073","text":"With at least 40 Dexterity in Radius, Burning Arrow can inflict\nan additional Ignite on an Enemy and cannot apply its Burning Debuff","type":"explicit"},{"id":"explicit.stat_3878987051","text":"Socketed Gems are supported by Level # Cast on Death","type":"explicit"},{"id":"explicit.stat_1920234902","text":"# Fire Damage taken per second per Endurance Charge if you\u0027ve been Hit Recently","type":"explicit"},{"id":"explicit.stat_2675641469","text":"#% to Fire Resistance while affected by Herald of Ash","type":"explicit"},{"id":"explicit.stat_3291999509","text":"Shock Reflection","type":"explicit"},{"id":"explicit.stat_513221334","text":"# to Armour per Endurance Charge","type":"explicit"},{"id":"explicit.stat_1924041432","text":"Projectiles gain #% of Non-Chaos Damage as extra Chaos Damage per Chain","type":"explicit"},{"id":"explicit.stat_953314356","text":"#% chance to create a Smoke Cloud when Hit","type":"explicit"},{"id":"explicit.stat_3737604164","text":"1 Added Passive Skill is Eldritch Inspiration","type":"explicit"},{"id":"explicit.stat_373964381","text":"Mind Over Matter","type":"explicit"},{"id":"explicit.stat_1453197917","text":"#% chance to gain a Power Charge on Hit","type":"explicit"},{"id":"explicit.stat_1133453872","text":"# Dexterity Requirement","type":"explicit"},{"id":"explicit.stat_97250660","text":"Projectiles Pierce an additional Target while you have Phasing","type":"explicit"},{"id":"explicit.stat_3372255769","text":"1 Added Passive Skill is Spiked Concoction","type":"explicit"},{"id":"explicit.stat_3603695769","text":"1 Added Passive Skill is Spring Back","type":"explicit"},{"id":"explicit.stat_4031081471","text":"You take # Chaos Damage per second for # seconds on Kill","type":"explicit"},{"id":"explicit.stat_691431951","text":"1 Added Passive Skill is Remarkable","type":"explicit"},{"id":"explicit.stat_4256314560","text":"Shocks you when you reach Maximum Power Charges","type":"explicit"},{"id":"explicit.stat_2912949210","text":"1 Added Passive Skill is Alchemist","type":"explicit"},{"id":"explicit.stat_3562211447","text":"#% chance to gain Unholy Might for 3 seconds on Kill","type":"explicit"},{"id":"explicit.stat_1352418057","text":"#% chance to Curse Enemies with Socketed Curse Gem on Hit","type":"explicit"},{"id":"explicit.stat_4085417083","text":"Adds # to # Lightning Damage to Spells per Power Charge","type":"explicit"},{"id":"explicit.stat_249545292","text":"Critical Strikes do not inherently apply non-Damaging Ailments","type":"explicit"},{"id":"explicit.stat_4003278965","text":"Map has # additional random Modifier","type":"explicit"},{"id":"explicit.stat_426715778","text":"1 Added Passive Skill is Lasting Impression","type":"explicit"},{"id":"explicit.stat_4210011075","text":"#% to Chaos Resistance per Endurance Charge","type":"explicit"},{"id":"explicit.stat_3503466234","text":"#% increased Damage with Hits and Ailments against Blinded Enemies","type":"explicit"},{"id":"explicit.stat_149574107","text":"Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity","type":"explicit"},{"id":"explicit.stat_2217962305","text":"#% increased Maximum Life if no Equipped Items are Corrupted","type":"explicit"},{"id":"explicit.stat_2378065031","text":"Curse Skills have #% increased Cast Speed","type":"explicit"},{"id":"explicit.stat_1926135629","text":"Added Small Passive Skills also grant: #% to Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_2933625540","text":"Your Elemental Damage can Shock","type":"explicit"},{"id":"explicit.stat_37078857","text":"1 Added Passive Skill is Fasting","type":"explicit"},{"id":"explicit.stat_2538694749","text":"#% Chance to Block Attack Damage while Dual Wielding Claws","type":"explicit"},{"id":"explicit.stat_3716758077","text":"#% to maximum Fire Resistance while affected by Herald of Ash","type":"explicit"},{"id":"explicit.stat_2913581789","text":"1 Added Passive Skill is Precise Focus","type":"explicit"},{"id":"explicit.stat_3898572660","text":"1 Added Passive Skill is Holy Conquest","type":"explicit"},{"id":"explicit.stat_18234720","text":"#% increased Intelligence Requirement","type":"explicit"},{"id":"explicit.stat_1862926389","text":"Herald of Ice has #% increased Buff Effect","type":"explicit"},{"id":"explicit.stat_2725259389","text":"#% increased Skeleton Cast Speed","type":"explicit"},{"id":"explicit.stat_2337295272","text":"Minions deal #% increased Damage if you\u0027ve Hit Recently","type":"explicit"},{"id":"explicit.stat_1545858329","text":"# to Level of all Lightning Spell Skill Gems","type":"explicit"},{"id":"explicit.stat_2328234364","text":"Herald of Ash has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_3452269808","text":"#% chance to avoid Projectiles","type":"explicit"},{"id":"explicit.stat_2775776604","text":"#% increased Fire Damage while affected by Herald of Ash","type":"explicit"},{"id":"explicit.stat_2978494217","text":"1 Added Passive Skill is Martial Momentum","type":"explicit"},{"id":"explicit.stat_1818900806","text":"#% Critical Strike Chance per Power Charge","type":"explicit"},{"id":"explicit.stat_1096897481","text":"Gain #% of Physical Attack Damage as Extra Lightning Damage","type":"explicit"},{"id":"explicit.stat_3295031203","text":"#% increased Skeleton Movement Speed","type":"explicit"},{"id":"explicit.stat_2816098341","text":"Trigger Socketed Minion Spells on Kill with this Weapon","type":"explicit"},{"id":"explicit.stat_4058681894","text":"Your Critical Strikes do not deal extra Damage","type":"explicit"},{"id":"explicit.stat_91242932","text":"Animated Minions\u0027 Melee Attacks deal Splash Damage to surrounding targets","type":"explicit"},{"id":"explicit.stat_3597806437","text":"Adds # to # Lightning Damage to Spells while Unarmed","type":"explicit"},{"id":"explicit.stat_2785835061","text":"1 Added Passive Skill is Intensity","type":"explicit"},{"id":"explicit.stat_3682009780","text":"#% chance to Trigger Level 20 Animate Guardian\u0027s Weapon when Animated Guardian Kills an Enemy","type":"explicit"},{"id":"explicit.stat_2064503808","text":"You gain an Endurance Charge on Kill","type":"explicit"},{"id":"explicit.stat_528422616","text":"#% increased Damage with Hits and Ailments against Hindered Enemies","type":"explicit"},{"id":"explicit.stat_347328113","text":"# Energy Shield gained on Killing a Shocked Enemy","type":"explicit"},{"id":"explicit.stat_2802263253","text":"With at least 1000 Strength, #% of Damage dealt by your Raised Zombies is Leeched to you as Life","type":"explicit"},{"id":"explicit.stat_4147897060","text":"#% reduced Chance to Block Attack and Spell Damage","type":"explicit"},{"id":"explicit.stat_3262369040","text":"Consumes a Void Charge to Trigger Level # Void Shot when you fire Arrows with a Non-Triggered Skill","type":"explicit"},{"id":"explicit.stat_4222265138","text":"1 Added Passive Skill is Assert Dominance","type":"explicit"},{"id":"explicit.stat_1852317988","text":"Insufficient Mana doesn\u0027t prevent your Melee Attacks","type":"explicit"},{"id":"explicit.stat_1209237645","text":"# Maximum Void Charges","type":"explicit"},{"id":"explicit.stat_1220105149","text":"You cannot have non-Animated Minions","type":"explicit"},{"id":"explicit.stat_713266390","text":"Armour is increased by Uncapped Fire Resistance","type":"explicit"},{"id":"explicit.stat_3566242751","text":"Grants Level # Decoy Totem Skill","type":"explicit"},{"id":"explicit.stat_2238471448","text":"Minions deal #% increased Damage per 10 Dexterity","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_venarius","text":"Carved to glorify # new faithful converted by High Templar Venarius","type":"explicit"},{"id":"explicit.stat_3860869243","text":"Adds Disciple of Kitava","type":"explicit"},{"id":"explicit.stat_1379205566","text":"Adds Veteran\u0027s Awareness","type":"explicit"},{"id":"explicit.stat_98977150","text":"Pain Attunement","type":"explicit"},{"id":"explicit.stat_1085167979","text":"1 Added Passive Skill is Blanketed Snow","type":"explicit"},{"id":"explicit.stat_4273356746","text":"Nearby Enemies have #% increased Fire and Cold Resistances","type":"explicit"},{"id":"explicit.stat_3860179422","text":"1 Added Passive Skill is Precise Commander","type":"explicit"},{"id":"explicit.stat_56720831","text":"Adds Secrets of Suffering","type":"explicit"},{"id":"explicit.stat_1214532298","text":"#% Chance to Block Attack Damage if there are at least 5 nearby Enemies","type":"explicit"},{"id":"explicit.stat_1962922582","text":"#% chance to gain an additional Vaal Soul on Kill","type":"explicit"},{"id":"explicit.stat_438778966","text":"Socketed Gems are Supported by Level # Spell Echo","type":"explicit"},{"id":"explicit.stat_943553365","text":"Each Summoned Phantasm grants you Phantasmal Might","type":"explicit"},{"id":"explicit.stat_1161341806","text":"Can have a up to 1 Implicit Modifier while Item has this Modifier","type":"explicit"},{"id":"explicit.stat_1161337167","text":"Can be modified while Corrupted","type":"explicit"},{"id":"explicit.stat_3470535775","text":"#% chance to gain a Power Charge when you Stun","type":"explicit"},{"id":"explicit.stat_744783843","text":"1 Added Passive Skill is Cold to the Core","type":"explicit"},{"id":"explicit.stat_650630047","text":"Sentinels of Purity deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_3346092312","text":"Leech Energy Shield instead of Life","type":"explicit"},{"id":"explicit.stat_1015189426","text":"1 Added Passive Skill is Martial Mastery","type":"explicit"},{"id":"explicit.stat_3051562738","text":"1 Added Passive Skill is Surprise Sabotage","type":"explicit"},{"id":"explicit.stat_3801128794","text":"#% increased Damage per 15 Intelligence","type":"explicit"},{"id":"explicit.stat_2771217016","text":"1 Added Passive Skill is Master of Fear","type":"explicit"},{"id":"explicit.stat_1970606344","text":"#% increased Cold Damage while affected by Herald of Ice","type":"explicit"},{"id":"explicit.stat_446027070","text":"#% chance to Gain Arcane Surge when you deal a Critical Strike","type":"explicit"},{"id":"explicit.stat_356456977","text":"Socketed Attacks have #% to Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_2068574831","text":"1 Added Passive Skill is Brutal Infamy","type":"explicit"},{"id":"explicit.stat_1365052901","text":"#% increased Attack Speed during any Flask Effect","type":"explicit"},{"id":"explicit.stat_2083777017","text":"1 Added Passive Skill is Conservation of Energy","type":"explicit"},{"id":"explicit.stat_3904970959","text":"1 Added Passive Skill is Insatiable Killer","type":"explicit"},{"id":"explicit.stat_4089413281","text":"You gain Phasing for # seconds on using a Vaal Skill","type":"explicit"},{"id":"explicit.stat_3122505794","text":"1 Added Passive Skill is Combat Rhythm","type":"explicit"},{"id":"explicit.stat_1798719926","text":"Adds Kineticism","type":"explicit"},{"id":"explicit.stat_655871604","text":"Nearby Allies\u0027 Damage with Hits is Lucky","type":"explicit"},{"id":"explicit.stat_252194507","text":"#% increased Cast Speed during any Flask Effect","type":"explicit"},{"id":"explicit.stat_183591019","text":"1 Added Passive Skill is Disease Vector","type":"explicit"},{"id":"explicit.stat_2631806437","text":"1 Added Passive Skill is Tempered Arrowheads","type":"explicit"},{"id":"explicit.stat_99487834","text":"Your Skills deal you #% of Mana Spent on Skill Mana Costs as Physical Damage","type":"explicit"},{"id":"explicit.stat_1101250813","text":"1 Added Passive Skill is Set and Forget","type":"explicit"},{"id":"explicit.stat_185598681","text":"Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value","type":"explicit"},{"id":"explicit.stat_966400988","text":"Herald of Thunder has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_2737492258","text":"Recover #% of Life on Rampage","type":"explicit"},{"id":"explicit.stat_791125124","text":"1 Added Passive Skill is Bodyguards","type":"explicit"},{"id":"explicit.stat_3271016161","text":"Kills grant an additional Vaal Soul if you have Rampaged Recently","type":"explicit"},{"id":"explicit.stat_478698670","text":"Animated Minions\u0027 Melee Attacks deal #% less Damage to surrounding targets","type":"explicit"},{"id":"explicit.stat_3294232483","text":"#% increased Physical Damage while affected by Herald of Purity","type":"explicit"},{"id":"explicit.stat_2154349925","text":"Herald of Ash has #% increased Buff Effect","type":"explicit"},{"id":"explicit.stat_1531241759","text":"Strength\u0027s Damage Bonus instead grants 3% increased Melee\nPhysical Damage per 10 Strength","type":"explicit"},{"id":"explicit.stat_2443492284","text":"Ignites you inflict deal Damage #% faster","type":"explicit"},{"id":"explicit.stat_2227042420","text":"Your Physical Damage can Chill","type":"explicit"},{"id":"explicit.stat_2998305364","text":"Deal no Elemental Damage","type":"explicit"},{"id":"explicit.stat_4208907162","text":"#% increased Lightning Damage with Attack Skills","type":"explicit"},{"id":"explicit.stat_1085545682","text":"You have Tailwind if you have dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_2390273715","text":"With at least 40 Intelligence in Radius, Raised Spectres have a #% chance to gain Soul Eater for 20 seconds on Kill","type":"explicit"},{"id":"explicit.stat_2494069187","text":"#% to Cold Resistance while affected by Herald of Ice","type":"explicit"},{"id":"explicit.stat_2262034536","text":"1 Added Passive Skill is Invigorating Portents","type":"explicit"},{"id":"explicit.stat_42242677","text":"#% chance to Avoid Fire Damage from Hits","type":"explicit"},{"id":"explicit.stat_3188455409","text":"Regenerate #% of Mana per second","type":"explicit"},{"id":"explicit.stat_607839150","text":"Nearby Enemies are Hindered, with #% reduced Movement Speed","type":"explicit"},{"id":"explicit.stat_4120556534","text":"1 Added Passive Skill is Aerodynamics","type":"explicit"},{"id":"explicit.stat_520731232","text":"Modifiers to Claw Critical Strike Chance also apply to Unarmed Attack Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_2951564010","text":"Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed","type":"explicit"},{"id":"explicit.stat_1122051203","text":"1 Added Passive Skill is Storm\u0027s Hand","type":"explicit"},{"id":"explicit.stat_505678789","text":"Modifiers to Claw Damage also apply to Unarmed Attack Damage","type":"explicit"},{"id":"explicit.stat_512074347","text":"#% to Unarmed Attack Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_2454339320","text":"1 Added Passive Skill is Forbidden Words","type":"explicit"},{"id":"explicit.stat_4182502594","text":"Area has # waves of monsters","type":"explicit"},{"id":"explicit.stat_2609732382","text":"Area has # seconds between monster waves","type":"explicit"},{"id":"explicit.stat_3667965781","text":"1 Added Passive Skill is Holistic Health","type":"explicit"},{"id":"explicit.stat_3212859169","text":"1 Added Passive Skill is Arcing Shot","type":"explicit"},{"id":"explicit.stat_2054530657","text":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Cold Skills","type":"explicit"},{"id":"explicit.stat_1637928656","text":"#% to all Elemental Resistances while on Low Life","type":"explicit"},{"id":"explicit.stat_3692167527","text":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Chaos Skills","type":"explicit"},{"id":"explicit.stat_2383914651","text":"1 Added Passive Skill is Stubborn Student","type":"explicit"},{"id":"explicit.stat_3400437584","text":"#% increased Damage per 1% Chance to Block Attack Damage","type":"explicit"},{"id":"explicit.stat_73272763","text":"#% reduced Mana Cost of Skills when on Low Life","type":"explicit"},{"id":"explicit.stat_3467711950","text":"1 Added Passive Skill is Hulking Corpses","type":"explicit"},{"id":"explicit.stat_2089652545","text":"#% chance to Intimidate Enemies for 4 seconds on Hit","type":"explicit"},{"id":"explicit.stat_2155513095","text":"Critical Strike Chance is increased by Lightning Resistance","type":"explicit"},{"id":"explicit.stat_1606263610","text":"Recover #% of Energy Shield when you Block","type":"explicit"},{"id":"explicit.stat_2138819920","text":"Added Small Passive Skills also grant: #% increased Area of Effect of Curse Skills","type":"explicit"},{"id":"explicit.stat_1091613629","text":"Gain Shaper\u0027s Presence for 10 seconds when you kill a Rare or Unique Enemy","type":"explicit"},{"id":"explicit.stat_3226074658","text":"1 Added Passive Skill is Supercharge","type":"explicit"},{"id":"explicit.stat_4154709486","text":"1 Added Passive Skill is Militarism","type":"explicit"},{"id":"explicit.stat_4076910393","text":"Cannot Block Spells","type":"explicit"},{"id":"explicit.stat_3237923082","text":"Socketed Gems are Supported by Level # Onslaught","type":"explicit"},{"id":"explicit.stat_4228951304","text":"#% reduced Enemy Stun Threshold during any Flask Effect","type":"explicit"},{"id":"explicit.stat_3462113315","text":"Your Raised Spectres also gain Arcane Surge when you do","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_kiloava","text":"Commanded leadership over # warriors under Kiloava","type":"explicit"},{"id":"explicit.stat_3410752193","text":"1 Added Passive Skill is Surefooted Striker","type":"explicit"},{"id":"explicit.stat_2642525868","text":"#% increased Lightning Damage per 1% Lightning Resistance above 75%","type":"explicit"},{"id":"explicit.stat_304970526","text":"#% increased Movement Speed during any Flask Effect","type":"explicit"},{"id":"explicit.stat_144887967","text":"#% chance to gain Phasing for # seconds when your Trap is triggered by an Enemy","type":"explicit"},{"id":"explicit.stat_67637087","text":"#% less Damage taken if you have not been Hit Recently","type":"explicit"},{"id":"explicit.stat_4210076836","text":"\u002B# to Maximum Life per Red Socket","type":"explicit"},{"id":"explicit.stat_201731102","text":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Lightning Skills","type":"explicit"},{"id":"explicit.stat_2340173293","text":"#% increased Item Quantity per White Socket","type":"explicit"},{"id":"explicit.stat_2216127021","text":"#% increased Area of Effect while Unarmed","type":"explicit"},{"id":"explicit.stat_3922006600","text":"Socketed Gems are Supported by Level # Blood Magic","type":"explicit"},{"id":"explicit.stat_2498303876","text":"Grants Level # Doryani\u0027s Touch Skill","type":"explicit"},{"id":"explicit.stat_3035514623","text":"Spectres have #% increased maximum Life","type":"explicit"},{"id":"explicit.stat_2906522048","text":"\u002B# to Maximum Energy Shield per Blue Socket","type":"explicit"},{"id":"explicit.stat_1917107159","text":"# to # Lightning Damage per Power Charge","type":"explicit"},{"id":"explicit.stat_3848047105","text":"Your Physical Damage can Shock","type":"explicit"},{"id":"explicit.stat_2025297472","text":"#% increased Attack Speed for each Map Item Modifier affecting the Area","type":"explicit"},{"id":"explicit.stat_495095219","text":"#% increased Critical Strike Chance for Spells per Raised Spectre","type":"explicit"},{"id":"explicit.stat_2006370586","text":"Enemies you Attack Reflect # Physical Damage to you","type":"explicit"},{"id":"explicit.stat_698336758","text":"#% increased Attack Damage for each Map Item Modifier affecting the Area","type":"explicit"},{"id":"explicit.stat_1795365307","text":"#% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_846491278","text":"1 Added Passive Skill is Darting Movements","type":"explicit"},{"id":"explicit.stat_3030692053","text":"Socketed Gems are Supported by Level # Ballista Totem","type":"explicit"},{"id":"explicit.stat_3408048164","text":"Adds # minimum Cold Damage to Spells per Power Charge","type":"explicit"},{"id":"explicit.stat_759294825","text":"Animated Guardian deals #% increased Damage per Animated Weapon","type":"explicit"},{"id":"explicit.stat_3418772","text":"Socketed Gems have #% chance to cause Enemies to Flee on Hit","type":"explicit"},{"id":"explicit.stat_684155617","text":"1 Added Passive Skill is Mage Bane","type":"explicit"},{"id":"explicit.stat_3112776239","text":"Recover #% of Life when you Ignite an Enemy","type":"explicit"},{"id":"explicit.stat_3492297134","text":"Gain #% of Physical Damage as Extra Chaos Damage while at maximum Power Charges","type":"explicit"},{"id":"explicit.stat_1080363357","text":"1 Added Passive Skill is Haunting Shout","type":"explicit"},{"id":"explicit.stat_634031003","text":"#% increased effect of Non-Curse Auras from your Skills on your Minions","type":"explicit"},{"id":"explicit.stat_2280313599","text":"Deals # Chaos Damage per second to nearby Enemies","type":"explicit"},{"id":"explicit.stat_4169623196","text":"#% increased Critical Strike Chance with arrows that Fork","type":"explicit"},{"id":"explicit.stat_1031644844","text":"Grants Level # Enduring Cry Skill","type":"explicit"},{"id":"explicit.stat_2199099676","text":"Gain an Endurance, Frenzy or Power charge when you Block","type":"explicit"},{"id":"explicit.stat_3968454273","text":"Gain Soul Eater during any Flask Effect","type":"explicit"},{"id":"explicit.stat_367638058","text":"1 Added Passive Skill is Unwavering Focus","type":"explicit"},{"id":"explicit.stat_1483358825","text":"1 Added Passive Skill is Heart of Iron","type":"explicit"},{"id":"explicit.stat_2028847114","text":"Curse Enemies with Level # Elemental Weakness on Hit","type":"explicit"},{"id":"explicit.stat_4148932984","text":"#% chance to create Consecrated Ground when you Shatter an Enemy","type":"explicit"},{"id":"explicit.stat_1903097619","text":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Physical Skills","type":"explicit"},{"id":"explicit.stat_247168950","text":"Minions gain #% of Elemental Damage as Extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_1079148723","text":"Socketed Gems are supported by Level # Cast when Stunned","type":"explicit"},{"id":"explicit.stat_1194648995","text":"Chill Effect and Freeze Duration on you are based on #% of Energy Shield","type":"explicit"},{"id":"explicit.stat_654971543","text":"Trigger a Socketed Lightning Spell on Hit\nSocketed Lightning Spells deal 100% increased Spell Damage if Triggered","type":"explicit"},{"id":"explicit.stat_3158958938","text":"#% reduced Reflected Physical Damage taken","type":"explicit"},{"id":"explicit.stat_774369953","text":"1 Added Passive Skill is Antivenom","type":"explicit"},{"id":"explicit.stat_1055188639","text":"You gain Onslaught for # seconds on Critical Strike","type":"explicit"},{"id":"explicit.stat_230941555","text":"You can have an Offering of each type","type":"explicit"},{"id":"explicit.stat_706246936","text":"#% increased Armour against Projectiles","type":"explicit"},{"id":"explicit.stat_1730304831","text":"Herald of Purity has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_2007746338","text":"Grants Level # Rallying Cry Skill","type":"explicit"},{"id":"explicit.stat_2642917409","text":"Added Small Passive Skills also grant: #% increased Area of Effect of Aura Skills","type":"explicit"},{"id":"explicit.stat_713280739","text":"Added Small Passive Skills also grant: #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_1332534089","text":"#% increased Melee Physical Damage against Ignited Enemies","type":"explicit"},{"id":"explicit.stat_2332726055","text":"#% chance to Freeze during any Flask Effect","type":"explicit"},{"id":"explicit.stat_124131830","text":"# to Level of all Spell Skill Gems","type":"explicit"},{"id":"explicit.stat_1073310669","text":"#% increased Evasion Rating if you have been Hit Recently","type":"explicit"},{"id":"explicit.stat_1510714129","text":"Attacks have #% chance to Maim on Hit","type":"explicit"},{"id":"explicit.stat_662803072","text":"#% increased Flask Charges gained during any Flask Effect","type":"explicit"},{"id":"explicit.stat_3243062554","text":"#% of Attack Damage Leeched as Life per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_2608186870","text":"Area contains # additional packs of Elder Fiends","type":"explicit"},{"id":"explicit.stat_235105674","text":"#% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_2696557965","text":"Socketed Gems are Supported by Level # Volley","type":"explicit"},{"id":"explicit.stat_796406325","text":"#% chance to Shock during any Flask Effect","type":"explicit"},{"id":"explicit.stat_2865989731","text":"Adds 1 to Maximum Life per # Intelligence Allocated in Radius","type":"explicit"},{"id":"explicit.stat_2534405517","text":"1 Added Passive Skill is Daring Ideas","type":"explicit"},{"id":"explicit.stat_4109038270","text":"Elemental Hit deals #% increased Damage","type":"explicit"},{"id":"explicit.stat_1528823952","text":"# Cold Damage taken per second per Frenzy Charge while moving","type":"explicit"},{"id":"explicit.stat_3948776386","text":"#% increased Damage per 15 Strength","type":"explicit"},{"id":"explicit.stat_968069586","text":"1 Added Passive Skill is Chip Away","type":"explicit"},{"id":"explicit.stat_187998220","text":"Iron Reflexes while stationary","type":"explicit"},{"id":"explicit.stat_3354027870","text":"Socketed Gems are Supported by Level # Lightning Penetration","type":"explicit"},{"id":"explicit.stat_869436347","text":"#% increased Area of Effect for Skills used by Totems","type":"explicit"},{"id":"explicit.stat_679080252","text":"Added Small Passive Skills also grant: #% increased Projectile Speed","type":"explicit"},{"id":"explicit.stat_1462135249","text":"1 Added Passive Skill is Master of Fire","type":"explicit"},{"id":"explicit.stat_988207959","text":"Skills fire an additional Projectile if you\u0027ve been Hit Recently","type":"explicit"},{"id":"explicit.stat_2957407601","text":"Offering Skills have #% increased Duration","type":"explicit"},{"id":"explicit.stat_3812562802","text":"#% of Damage dealt by your Totems is Leeched to you as Life","type":"explicit"},{"id":"explicit.stat_1127706436","text":"1 Added Passive Skill is Blacksmith","type":"explicit"},{"id":"explicit.stat_3451369192","text":"Gain Armour equal to your Reserved Mana","type":"explicit"},{"id":"explicit.stat_1165023334","text":"Your hits can\u0027t be Evaded","type":"explicit"},{"id":"explicit.stat_1154827254","text":"#% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_173438493","text":"Adds # to # Physical Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2325632050","text":"Socketed Gems are supported by Level # Cast On Critical Strike","type":"explicit"},{"id":"explicit.stat_584144941","text":"Socketed Gems are Supported by Level # Lesser Multiple Projectiles","type":"explicit"},{"id":"explicit.stat_820827484","text":"When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage\nequal to #% of Sacrificed Mana for 4 seconds","type":"explicit"},{"id":"explicit.stat_2523146878","text":"#% chance for Poisons inflicted with this Weapon to deal 100% more Damage","type":"explicit"},{"id":"explicit.stat_3262895685","text":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed while affected by a Herald","type":"explicit"},{"id":"explicit.stat_3924539382","text":"Socketed Gems are Supported by Level # Efficacy","type":"explicit"},{"id":"explicit.stat_1649883131","text":"#% chance to Avoid Elemental Damage from Hits per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_1560880986","text":"#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage","type":"explicit"},{"id":"explicit.stat_3888064854","text":"#% chance to Ignite during any Flask Effect","type":"explicit"},{"id":"explicit.stat_919960234","text":"#% chance to Trigger Level 18 Animate Guardian\u0027s Weapon when Animated Weapon Kills an Enemy","type":"explicit"},{"id":"explicit.stat_1543731719","text":"1 Added Passive Skill is Gladiatorial Combat","type":"explicit"},{"id":"explicit.stat_847575654","text":"With at least 40 Intelligence in Radius, #% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies","type":"explicit"},{"id":"explicit.stat_3163114700","text":"#% additional Physical Damage Reduction while affected by Herald of Purity","type":"explicit"},{"id":"explicit.stat_1849042097","text":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Fire Skills","type":"explicit"},{"id":"explicit.stat_989800292","text":"Regenerate #% of Life per second per Endurance Charge","type":"explicit"},{"id":"explicit.stat_1128763150","text":"Triggers Level # Fire Aegis when Equipped","type":"explicit"},{"id":"explicit.stat_1217730254","text":"Enemies take #% increased Damage for each type of Ailment you have inflicted on them","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_dominus","text":"Carved to glorify # new faithful converted by High Templar Dominus","type":"explicit"},{"id":"explicit.stat_3078065247","text":"1 Added Passive Skill is Wizardry","type":"explicit"},{"id":"explicit.stat_394918362","text":"1 Added Passive Skill is Expansive Might","type":"explicit"},{"id":"explicit.stat_4157767905","text":"#% increased Projectile Attack Damage per 200 Accuracy Rating","type":"explicit"},{"id":"explicit.stat_3893109186","text":"#% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block","type":"explicit"},{"id":"explicit.stat_3636098185","text":"# to Maximum Energy Shield per 5 Armour on Equipped Shield","type":"explicit"},{"id":"explicit.stat_3351136461","text":"1 Added Passive Skill is Disorienting Wounds","type":"explicit"},{"id":"explicit.stat_2517031897","text":"#% increased Cold Damage per 1% Cold Resistance above 75%","type":"explicit"},{"id":"explicit.stat_3967028570","text":"#% of Chaos Damage is taken from Mana before Life","type":"explicit"},{"id":"explicit.stat_3919557483","text":"#% increased Burning Damage if you\u0027ve Ignited an Enemy Recently","type":"explicit"},{"id":"explicit.stat_3187805501","text":"Added Small Passive Skills also grant: #% increased Flask Charges gained","type":"explicit"},{"id":"explicit.stat_311641062","text":"#% chance for Flasks you use to not consume Charges","type":"explicit"},{"id":"explicit.stat_1115914670","text":"# to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield","type":"explicit"},{"id":"explicit.stat_2542542825","text":"With at least 40 Intelligence in Radius, Magma Orb fires an additional Projectile","type":"explicit"},{"id":"explicit.stat_514215387","text":"#% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_2442647190","text":"Recover #% of Life when you Block","type":"explicit"},{"id":"explicit.stat_2310019673","text":"Added Small Passive Skills also grant: Minions have #% increased Attack and Cast Speed","type":"explicit"},{"id":"explicit.stat_3998316","text":"1 Added Passive Skill is Ancestral Might","type":"explicit"},{"id":"explicit.stat_2253286128","text":"#% Chance to Block Spell Damage while on Low Life","type":"explicit"},{"id":"explicit.stat_3739863694","text":"#% chance to Impale Enemies on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_896299992","text":"\u002B# to Maximum Mana per Green Socket","type":"explicit"},{"id":"explicit.stat_2387747995","text":"1 Added Passive Skill is Ancestral Guidance","type":"explicit"},{"id":"explicit.stat_3730242558","text":"Golems have #% less Life","type":"explicit"},{"id":"explicit.stat_1826605755","text":"You cannot have non-Golem Minions","type":"explicit"},{"id":"explicit.stat_2809802678","text":"Skills fire an additional Projectile if you\u0027ve used a Movement Skill Recently","type":"explicit"},{"id":"explicit.stat_710105516","text":"Regenerate #% of Life per second on Chilled Ground","type":"explicit"},{"id":"explicit.stat_2644533453","text":"1 Added Passive Skill is Self-Fulfilling Prophecy","type":"explicit"},{"id":"explicit.stat_3807518091","text":"With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain # of its Modifiers for 20 seconds","type":"explicit"},{"id":"explicit.stat_1073447019","text":"# to # Fire Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2810434465","text":"Gain #% of Physical Damage as Extra Fire Damage if you\u0027ve dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_3681057026","text":"Replenishes Energy Shield by #% of Armour when you Block","type":"explicit"},{"id":"explicit.stat_2595115995","text":"1 Added Passive Skill is Mindfulness","type":"explicit"},{"id":"explicit.stat_3450276548","text":"Blind Chilled Enemies on Hit","type":"explicit"},{"id":"explicit.stat_2776975640","text":"Phase Acrobatics","type":"explicit"},{"id":"explicit.stat_2528440851","text":"Area contains # additional packs of Shaper Creations","type":"explicit"},{"id":"explicit.stat_2410613176","text":"Grants Level # Vitality Skill","type":"explicit"},{"id":"explicit.stat_1477032229","text":"Damage Penetrates #% Cold Resistance against Chilled Enemies","type":"explicit"},{"id":"explicit.stat_2576412389","text":"#% reduced Golem Size","type":"explicit"},{"id":"explicit.stat_2170294665","text":"Unique Boss drops divination cards","type":"explicit"},{"id":"explicit.stat_3678841229","text":"#% increased Movement Speed on Shocked Ground","type":"explicit"},{"id":"explicit.stat_2429546158","text":"Grants Level # Hatred Skill","type":"explicit"},{"id":"explicit.stat_3686711832","text":"Grants Last Breath when you Use a Skill during Flask Effect, for #% of Mana Cost","type":"explicit"},{"id":"explicit.stat_1821748178","text":"1 Added Passive Skill is Cry Wolf","type":"explicit"},{"id":"explicit.stat_4151190513","text":"#% increased Rarity of Items found with a Normal Item Equipped","type":"explicit"},{"id":"explicit.stat_2459809121","text":"Chill Enemy for # second when Hit, reducing their Action Speed by 30%","type":"explicit"},{"id":"explicit.stat_3296873305","text":"Remove Chill and Freeze when you use a Flask","type":"explicit"},{"id":"explicit.stat_3344568504","text":"#% chance to Trigger Level 20 Arcane Wake after Spending a total of 200 Mana","type":"explicit"},{"id":"explicit.stat_1498954300","text":"#% increased Quantity of Items found with a Magic Item Equipped","type":"explicit"},{"id":"explicit.stat_1476913894","text":"1 Added Passive Skill is Shifting Shadow","type":"explicit"},{"id":"explicit.stat_242161915","text":"#% to all Elemental Resistances per Grand Spectrum","type":"explicit"},{"id":"explicit.stat_3036440332","text":"Socketed Gems are Supported by Level # Cast when Damage Taken","type":"explicit"},{"id":"explicit.stat_676967140","text":"Minions Recover #% of their Life when they Block","type":"explicit"},{"id":"explicit.stat_2084371547","text":"1 Added Passive Skill is Expert Sabotage","type":"explicit"},{"id":"explicit.stat_1916706958","text":"#% chance to Avoid interruption from Stuns while Casting","type":"explicit"},{"id":"explicit.stat_4017879067","text":"#% increased Minion Movement Speed per 50 Dexterity","type":"explicit"},{"id":"explicit.stat_1734275536","text":"1 Added Passive Skill is Peace Amidst Chaos","type":"explicit"},{"id":"explicit.stat_2341828832","text":"1 Added Passive Skill is Hex Breaker","type":"explicit"},{"id":"explicit.stat_3835570161","text":"Minions gain Unholy Might for # seconds on Kill","type":"explicit"},{"id":"explicit.stat_2017927451","text":"1 Added Passive Skill is Explosive Force","type":"explicit"},{"id":"explicit.stat_2518598473","text":"Take # Fire Damage when you Ignite an Enemy","type":"explicit"},{"id":"explicit.stat_2959020308","text":"Gain Unholy Might for 4 seconds on Critical Strike","type":"explicit"},{"id":"explicit.stat_1672793731","text":"# to Level of Socketed Warcry Gems","type":"explicit"},{"id":"explicit.stat_2261237498","text":"1 Added Passive Skill is Seeker Runes","type":"explicit"},{"id":"explicit.stat_3659983276","text":"Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions take #% increased Damage","type":"explicit"},{"id":"explicit.stat_1633381214","text":"#% chance to gain an additional Vaal Soul per Enemy Shattered","type":"explicit"},{"id":"explicit.stat_1549868759","text":"# to Evasion Rating and Energy Shield","type":"explicit"},{"id":"explicit.stat_2233726619","text":"Arctic Armour has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_1694106311","text":"Cannot be Stunned","type":"explicit"},{"id":"explicit.stat_3633399302","text":"#% of Fire Damage Leeched as Life while Ignited","type":"explicit"},{"id":"explicit.stat_968694760","text":"With at least 40 Dexterity in Radius, Burning Arrow has a #% chance to spread Tar if it does not Ignite an Enemy","type":"explicit"},{"id":"explicit.stat_1994143317","text":"Socketed Gems are Supported by Level # Elemental Penetration","type":"explicit"},{"id":"explicit.stat_2135370196","text":"#% increased Maximum Mana per Abyss Jewel affecting you","type":"explicit"},{"id":"explicit.stat_3308936917","text":"#% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill","type":"explicit"},{"id":"explicit.stat_2222938936","text":"With at least 40 Dexterity in Radius, Burning Arrow has a #% chance to spread Burning Ground if it Ignites an Enemy","type":"explicit"},{"id":"explicit.stat_2341269061","text":"Grants Level # Discipline Skill","type":"explicit"},{"id":"explicit.stat_2265307453","text":"Grants Level # Wrath Skill","type":"explicit"},{"id":"explicit.stat_3362879252","text":"Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions have #% increased Movement Speed","type":"explicit"},{"id":"explicit.stat_4066711249","text":"Socketed Gems are Supported by Level # Knockback","type":"explicit"},{"id":"explicit.stat_622203853","text":"Conductivity has #% reduced Mana Reservation if Cast as an Aura","type":"explicit"},{"id":"explicit.stat_578355556","text":"1 Added Passive Skill is Warning Call","type":"explicit"},{"id":"explicit.stat_484879947","text":"Grants Level # Anger Skill","type":"explicit"},{"id":"explicit.stat_2658399404","text":"Bleeding you inflict is Reflected to you","type":"explicit"},{"id":"explicit.stat_882876854","text":"1 Added Passive Skill is Vicious Bite","type":"explicit"},{"id":"explicit.stat_2993091567","text":"#% increased Mana Regeneration Rate during any Flask Effect","type":"explicit"},{"id":"explicit.stat_2896192589","text":"#% chance to gain Elusive on Critical Strike","type":"explicit"},{"id":"explicit.stat_2418574586","text":"#% increased Damage with Ailments per Elder Item Equipped","type":"explicit"},{"id":"explicit.stat_1488030420","text":"1 Added Passive Skill is Run Through","type":"explicit"},{"id":"explicit.stat_3916182167","text":"Area is inhabited by Demons","type":"explicit"},{"id":"explicit.stat_2889664727","text":"#% chance to Avoid Lightning Damage from Hits","type":"explicit"},{"id":"explicit.stat_3984980429","text":"1 Added Passive Skill is Follow-Through","type":"explicit"},{"id":"explicit.stat_2478282326","text":"1 Added Passive Skill is Rote Reinforcement","type":"explicit"},{"id":"explicit.stat_2970307386","text":"Reflects # to # Physical Damage to Melee Attackers","type":"explicit"},{"id":"explicit.stat_3184053924","text":"#% increased Armour while stationary","type":"explicit"},{"id":"explicit.stat_3743375737","text":"#% chance to Avoid Cold Damage from Hits","type":"explicit"},{"id":"explicit.stat_2681416653","text":"Area contains additional waves of Phantasms","type":"explicit"},{"id":"explicit.stat_3390848861","text":"Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence","type":"explicit"},{"id":"explicit.stat_2210267337","text":"Area contains additional waves of Bone Rhoas","type":"explicit"},{"id":"explicit.stat_2713357573","text":"#% additional Physical Damage Reduction while moving","type":"explicit"},{"id":"explicit.stat_2481080006","text":"Area contains additional waves of Ravager Maws","type":"explicit"},{"id":"explicit.stat_3319205340","text":"1 Added Passive Skill is Snaring Spirits","type":"explicit"},{"id":"explicit.stat_2295303426","text":"Trigger a Socketed Cold Spell on Melee Critical Strike","type":"explicit"},{"id":"explicit.stat_2762046953","text":"Minions have #% Chance to Block Spell Damage","type":"explicit"},{"id":"explicit.stat_3433724931","text":"Curse Enemies with Level # Temporal Chains on Hit","type":"explicit"},{"id":"explicit.stat_1276712564","text":"# to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_2938895712","text":"1 Added Passive Skill is Cooked Alive","type":"explicit"},{"id":"explicit.stat_1982144275","text":"# Maximum Life per Level","type":"explicit"},{"id":"explicit.stat_3397728378","text":"Area contains additional waves of Ghosts","type":"explicit"},{"id":"explicit.stat_2622946553","text":"1 Added Passive Skill is Antifreeze","type":"explicit"},{"id":"explicit.stat_2043503530","text":"1 Added Passive Skill is Arcane Pyrotechnics","type":"explicit"},{"id":"explicit.stat_4261620841","text":"Area contains additional waves of Oriathan Zombies","type":"explicit"},{"id":"explicit.stat_2169345147","text":"1 Added Passive Skill is Quick and Deadly","type":"explicit"},{"id":"explicit.stat_1976069869","text":"1 Added Passive Skill is One with the Shield","type":"explicit"},{"id":"explicit.stat_2563691316","text":"# Maximum Mana per Level","type":"explicit"},{"id":"explicit.stat_3996149330","text":"# to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_1974445926","text":"Minions have #% chance to Poison Enemies on Hit","type":"explicit"},{"id":"explicit.stat_1938661964","text":"1 Added Passive Skill is Wind-up","type":"explicit"},{"id":"explicit.stat_3811649872","text":"Increases and Reductions to Spell Damage also apply to Attacks","type":"explicit"},{"id":"explicit.stat_729367217","text":"#% increased Minion Attack and Cast Speed per Skeleton you own","type":"explicit"},{"id":"explicit.stat_212648555","text":"1 Added Passive Skill is Insulated","type":"explicit"},{"id":"explicit.stat_1162352537","text":"1 Added Passive Skill is Will Shaper","type":"explicit"},{"id":"explicit.stat_3191537057","text":"#% increased Minion Damage per Raised Spectre","type":"explicit"},{"id":"explicit.stat_777246604","text":"#% increased Minion Duration per Raised Zombie","type":"explicit"},{"id":"explicit.stat_983989924","text":"#% reduced Elemental Damage taken while stationary","type":"explicit"},{"id":"explicit.stat_186383409","text":"Golems have #% increased Movement Speed","type":"explicit"},{"id":"explicit.stat_2052379536","text":"#% of Physical Damage Converted to Fire while you have Avatar of Fire","type":"explicit"},{"id":"explicit.stat_1424794574","text":"1 Added Passive Skill is Blessed Rebirth","type":"explicit"},{"id":"explicit.stat_2908111053","text":"#% of Damage Leeched as Mana against Frozen Enemies","type":"explicit"},{"id":"explicit.stat_3359218839","text":"All Damage inflicts Poison while affected by Glorious Madness","type":"explicit"},{"id":"explicit.stat_1798031916","text":"Vulnerability has #% reduced Mana Reservation if Cast as an Aura","type":"explicit"},{"id":"explicit.stat_1904419785","text":"Grants Level # Petrification Statue Skill","type":"explicit"},{"id":"explicit.stat_3185671537","text":"#% increased Maximum Life per Abyss Jewel affecting you","type":"explicit"},{"id":"explicit.stat_622678123","text":"Monsters gain # Endurance Charge every 20 seconds","type":"explicit"},{"id":"explicit.stat_2021058489","text":"#% chance to Evade Attack Hits","type":"explicit"},{"id":"explicit.stat_3303015","text":"Adds # to # Physical Damage to Claw Attacks","type":"explicit"},{"id":"explicit.stat_561861132","text":"Remove Shock when you use a Flask","type":"explicit"},{"id":"explicit.stat_3152149523","text":"Flammability has #% reduced Mana Reservation if Cast as an Aura","type":"explicit"},{"id":"explicit.stat_346029096","text":"Avatar of Fire","type":"explicit"},{"id":"explicit.stat_3492654051","text":"You have Phasing if you have Blocked Recently","type":"explicit"},{"id":"explicit.stat_315697256","text":"1 Added Passive Skill is Skullbreaker","type":"explicit"},{"id":"explicit.stat_2896346114","text":"Point Blank","type":"explicit"},{"id":"explicit.stat_4078952782","text":"# Armour while you do not have Avatar of Fire","type":"explicit"},{"id":"explicit.stat_4025536654","text":"1 Added Passive Skill is Capacitor","type":"explicit"},{"id":"explicit.stat_3345955207","text":"Every 8 seconds, gain Avatar of Fire for 4 seconds","type":"explicit"},{"id":"explicit.stat_329974315","text":"#% increased Cold Damage per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_2477735984","text":"#% of Lightning Damage is taken from Mana before Life","type":"explicit"},{"id":"explicit.stat_70389693","text":"Monsters gain # Power Charge every 20 seconds","type":"explicit"},{"id":"explicit.stat_1274505521","text":"1 Added Passive Skill is Cold Conduction","type":"explicit"},{"id":"explicit.stat_1190121450","text":"You have Chilling Conflux for 3 seconds every 8 seconds","type":"explicit"},{"id":"explicit.stat_2732344760","text":"Gain a Frenzy Charge on reaching Maximum Power Charges","type":"explicit"},{"id":"explicit.stat_3037553757","text":"#% increased Warcry Buff Effect","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_nasima","text":"Denoted service of # dekhara in the akhara of Nasima","type":"explicit"},{"id":"explicit.stat_4107150355","text":"Enemies you Shock have #% reduced Cast Speed","type":"explicit"},{"id":"explicit.stat_1795756125","text":"Trigger Level # Abyssal Cry on Hit","type":"explicit"},{"id":"explicit.stat_3177526694","text":"1 Added Passive Skill is Disciples","type":"explicit"},{"id":"explicit.stat_3134790305","text":"Enemies you Shock have #% reduced Movement Speed","type":"explicit"},{"id":"explicit.stat_289885185","text":"Chaos Skills have #% increased Skill Effect Duration","type":"explicit"},{"id":"explicit.stat_3779771090","text":"Temporal Chains has #% reduced Mana Reservation if Cast as an Aura","type":"explicit"},{"id":"explicit.stat_883169830","text":"Projectiles deal #% increased Damage for each Enemy Pierced","type":"explicit"},{"id":"explicit.stat_2020075345","text":"1 Added Passive Skill is Expendability","type":"explicit"},{"id":"explicit.stat_3338465330","text":"Added Small Passive Skills also grant: #% increased Duration of Elemental Ailments on Enemies","type":"explicit"},{"id":"explicit.stat_547412107","text":"#% increased Vaal Skill Effect Duration","type":"explicit"},{"id":"explicit.stat_1188846263","text":"Grants Level # Haste Skill","type":"explicit"},{"id":"explicit.stat_2350900742","text":"1 Added Passive Skill is Grand Design","type":"explicit"},{"id":"explicit.stat_2654043939","text":"You gain Onslaught for # seconds on using a Vaal Skill","type":"explicit"},{"id":"explicit.stat_1217959763","text":"Area contains additional waves of Raging Spirits","type":"explicit"},{"id":"explicit.stat_3909952544","text":"You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness","type":"explicit"},{"id":"explicit.stat_2815652613","text":"#% increased Critical Strike Chance while you have Avatar of Fire","type":"explicit"},{"id":"explicit.stat_880970200","text":"You have Consecrated Ground around you while stationary","type":"explicit"},{"id":"explicit.stat_143510471","text":"#% chance to Avoid Elemental Damage from Hits while Phasing","type":"explicit"},{"id":"explicit.stat_3515686789","text":"#% increased Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_1376530950","text":"Adds Hollow Palm Technique","type":"explicit"},{"id":"explicit.stat_2043284086","text":"1 Added Passive Skill is Enduring Composure","type":"explicit"},{"id":"explicit.stat_614758785","text":"# Fire Damage taken from Hits","type":"explicit"},{"id":"explicit.stat_2780297117","text":"Enemies you Kill while affected by Glorious Madness have a #% chance to Explode, dealing a quarter of their Life as Chaos Damage","type":"explicit"},{"id":"explicit.stat_1195319608","text":"#% increased Energy Shield from Body Armour","type":"explicit"},{"id":"explicit.stat_4070519133","text":"#% Chance to Block Spell Damage while on Low Life","type":"explicit"},{"id":"explicit.stat_2126027382","text":"Herald of Purity has #% increased Buff Effect","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_deshret","text":"Denoted service of # dekhara in the akhara of Deshret","type":"explicit"},{"id":"explicit.stat_2294919888","text":"1 Added Passive Skill is Hibernator","type":"explicit"},{"id":"explicit.stat_3206652215","text":"#% chance to be Shocked","type":"explicit"},{"id":"explicit.stat_4294267596","text":"Take no Extra Damage from Critical Strikes","type":"explicit"},{"id":"explicit.stat_558910024","text":"Players are Cursed with Elemental Weakness","type":"explicit"},{"id":"explicit.stat_1926816773","text":"Recover #% of Life when you use a Mana Flask","type":"explicit"},{"id":"explicit.stat_254194892","text":"1 Added Passive Skill is Riot Queller","type":"explicit"},{"id":"explicit.stat_1238227257","text":"Debuffs on you expire #% faster","type":"explicit"},{"id":"explicit.stat_3257074218","text":"1 Added Passive Skill is Master of Command","type":"explicit"},{"id":"explicit.stat_1299868012","text":"#% chance to deal Double Damage while affected by Glorious Madness","type":"explicit"},{"id":"explicit.stat_2724985127","text":"Area contains additional waves of Zombies","type":"explicit"},{"id":"explicit.stat_1065479853","text":"Immune to Elemental Ailments while affected by Glorious Madness","type":"explicit"},{"id":"explicit.stat_2396755365","text":"1 Added Passive Skill is Feast of Flesh","type":"explicit"},{"id":"explicit.stat_3388448323","text":"Socketed Gems are Supported by Level # Greater Spell Echo","type":"explicit"},{"id":"explicit.stat_1454377049","text":"#% of Lightning Damage Leeched as Mana during Flask effect","type":"explicit"},{"id":"explicit.stat_1094635162","text":"1 Added Passive Skill is Liquid Inspiration","type":"explicit"},{"id":"explicit.stat_1064778484","text":"Arrows that Pierce have #% to Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_1570474940","text":"1 Added Passive Skill is Rapid Infusion","type":"explicit"},{"id":"explicit.stat_2264586521","text":"Socketed Attacks have # to Total Mana Cost","type":"explicit"},{"id":"explicit.stat_3651611160","text":"#% increased Taunt Duration","type":"explicit"},{"id":"explicit.stat_3168149399","text":"Adds # to # Lightning Damage to Attacks per 10 Intelligence","type":"explicit"},{"id":"explicit.stat_3270663592","text":"#% increased Effect of Fortify on you while affected by Glorious Madness","type":"explicit"},{"id":"explicit.stat_1524882321","text":"Counts as all One Handed Melee Weapon Types","type":"explicit"},{"id":"explicit.stat_1152182658","text":"1 Added Passive Skill is Martial Prowess","type":"explicit"},{"id":"explicit.stat_4118945608","text":"Gain # Power Charges when you Warcry","type":"explicit"},{"id":"explicit.stat_3263216405","text":"Socketed Movement Skills have no Mana Cost","type":"explicit"},{"id":"explicit.stat_38715141","text":"Summon Raging Spirit has #% increased Duration","type":"explicit"},{"id":"explicit.stat_2521269624","text":"Minions have #% chance to Dodge Spell Hits","type":"explicit"},{"id":"explicit.stat_2977774856","text":"Gain a Frenzy Charge on Hit while Bleeding","type":"explicit"},{"id":"explicit.stat_3049436415","text":"Gain Onslaught for # seconds when you Warcry","type":"explicit"},{"id":"explicit.stat_4265392510","text":"Grants Level # Determination Skill","type":"explicit"},{"id":"explicit.stat_1328548975","text":"#% to Quality of Socketed Support Gems","type":"explicit"},{"id":"explicit.stat_575111651","text":"#% chance to Shock Attackers for 4 seconds on Block","type":"explicit"},{"id":"explicit.stat_708913352","text":"Every 16 seconds you gain Elemental Overload for 8 seconds","type":"explicit"},{"id":"explicit.stat_769783486","text":"Adds # to # Cold Damage to Attacks per 10 Dexterity","type":"explicit"},{"id":"explicit.stat_3999870307","text":"Summoned Raging Spirits have #% increased maximum Life","type":"explicit"},{"id":"explicit.stat_2144634814","text":"1 Added Passive Skill is Eternal Suffering","type":"explicit"},{"id":"explicit.stat_942938211","text":"Projectiles Fork","type":"explicit"},{"id":"explicit.stat_684087686","text":"1 Added Passive Skill is Clarity of Purpose","type":"explicit"},{"id":"explicit.stat_4292531291","text":"Adds # to # Lightning Damage to Attacks during Flask effect","type":"explicit"},{"id":"explicit.stat_2905429068","text":"You have Resolute Technique while you do not have Elemental Overload","type":"explicit"},{"id":"explicit.stat_1901158930","text":"Bleeding cannot be inflicted on you","type":"explicit"},{"id":"explicit.stat_327253797","text":"#% chance when Hit for double Armour effect","type":"explicit"},{"id":"explicit.stat_694123963","text":"You are Cursed with Level # Vulnerability","type":"explicit"},{"id":"explicit.stat_1505850286","text":"Adds Lone Messenger","type":"explicit"},{"id":"explicit.stat_3375208082","text":"Socketed Gems are Supported by Level # Endurance Charge on Melee Stun","type":"explicit"},{"id":"explicit.stat_956038713","text":"Shared Suffering","type":"explicit"},{"id":"explicit.stat_1999711879","text":"# to Minimum Power Charges","type":"explicit"},{"id":"explicit.stat_1048879642","text":"1 Added Passive Skill is Mob Mentality","type":"explicit"},{"id":"explicit.stat_3957006524","text":"1 Added Passive Skill is Vivid Hues","type":"explicit"},{"id":"explicit.stat_3375415245","text":"#% increased Physical Damage with Hits and Ailments against Ignited Enemies","type":"explicit"},{"id":"explicit.stat_2674336304","text":"Nearby Enemies have #% to Cold Resistance","type":"explicit"},{"id":"explicit.stat_2878779644","text":"Grants Level 20 Summon Bestial # Skill","type":"explicit","option":{"options":[{"id":"1","value":"1","text":"Rhoa"},{"id":"2","value":"2","text":"Ursa"},{"id":"3","value":"3","text":"Snake"}]}},{"id":"explicit.stat_4095169720","text":"Projectile Attack Skills have #% increased Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_552705983","text":"# Strength per 1 Strength on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_413362507","text":"While at maximum Frenzy Charges, Attacks Poison Enemies","type":"explicit"},{"id":"explicit.stat_3298440988","text":"#% less Mine Damage","type":"explicit"},{"id":"explicit.stat_19803471","text":"#% Chance to Block Spell Damage","type":"explicit"},{"id":"explicit.stat_3954637034","text":"Summoned Raging Spirits\u0027 Hits always Ignite","type":"explicit"},{"id":"explicit.stat_2701327257","text":"#% reduced Mana Cost of Totem Skills that cast an Aura","type":"explicit"},{"id":"explicit.stat_4108305628","text":"Adds # to # Lightning Damage to Spells during Flask effect","type":"explicit"},{"id":"explicit.stat_1232004574","text":"#% chance that if you would gain Power Charges, you instead gain up to\nyour maximum number of Power Charges","type":"explicit"},{"id":"explicit.stat_2638352064","text":"When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy","type":"explicit"},{"id":"explicit.stat_3500334379","text":"1 Added Passive Skill is Steady Torment","type":"explicit"},{"id":"explicit.stat_3511815065","text":"Grants Level # Clarity Skill","type":"explicit"},{"id":"explicit.stat_2138799639","text":"Arrows Pierce all Targets after Forking","type":"explicit"},{"id":"explicit.stat_2179619644","text":"#% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage","type":"explicit"},{"id":"explicit.stat_1488891279","text":"Chill Enemies for # second on Hit with this Weapon when in Off Hand","type":"explicit"},{"id":"explicit.stat_4050593908","text":"Skills used by Traps have #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_3967765261","text":"1 Added Passive Skill is Bloodscent","type":"explicit"},{"id":"explicit.stat_2736829661","text":"When you Kill a Rare Monster, #% chance to gain one of its Modifiers for 10 seconds","type":"explicit"},{"id":"explicit.stat_1507409483","text":"1 Added Passive Skill is Pure Agony","type":"explicit"},{"id":"explicit.stat_2462976337","text":"Socketed Melee Gems have #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_4116409626","text":"#% increased Elemental Damage with Attack Skills per Power Charge","type":"explicit"},{"id":"explicit.stat_4022743870","text":"1 Added Passive Skill is Adrenaline","type":"explicit"},{"id":"explicit.stat_2591028853","text":"Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies","type":"explicit"},{"id":"explicit.stat_4263287206","text":"1 Added Passive Skill is Rend","type":"explicit"},{"id":"explicit.stat_3549040753","text":"Your Chaos Damage Poisons Enemies","type":"explicit"},{"id":"explicit.stat_824024007","text":"Your Critical Strike Multiplier is 300%","type":"explicit"},{"id":"explicit.stat_632761194","text":"Zealot\u0027s Oath","type":"explicit"},{"id":"explicit.stat_755881431","text":"1 Added Passive Skill is Winter Prowler","type":"explicit"},{"id":"explicit.stat_376158712","text":"Players are Cursed with Conductivity","type":"explicit"},{"id":"explicit.stat_2072625596","text":"#% increased Cast Speed if you\u0027ve Killed Recently","type":"explicit"},{"id":"explicit.stat_1811130680","text":"#% increased Mana Recovered","type":"explicit"},{"id":"explicit.stat_3703926412","text":"#% increased Fire Damage with Hits and Ailments against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_959641748","text":"Removes #% of Mana Recovered from Life when used","type":"explicit"},{"id":"explicit.stat_4018305528","text":"1 Added Passive Skill is Compound Injury","type":"explicit"},{"id":"explicit.stat_2181129193","text":"#% additional Physical Damage Reduction while stationary","type":"explicit"},{"id":"explicit.stat_158779585","text":"#% increased Effect of Fortify on you","type":"explicit"},{"id":"explicit.stat_74338099","text":"Skills fire an additional Projectile","type":"explicit"},{"id":"explicit.stat_858460086","text":"Socketed Gems are Supported by Level # Meat Shield","type":"explicit"},{"id":"explicit.stat_2718698372","text":"# to Level of Socketed Dexterity Gems","type":"explicit"},{"id":"explicit.stat_3041288981","text":"Recover #% of your maximum Mana when you Block","type":"explicit"},{"id":"explicit.stat_3913265126","text":"Gain #% of Weapon Physical Damage as Extra Damage of each Element","type":"explicit"},{"id":"explicit.stat_1970781345","text":"Socketed Skills deal #% more Attack Damage","type":"explicit"},{"id":"explicit.stat_4031851097","text":"Deal no Non-Elemental Damage","type":"explicit"},{"id":"explicit.stat_3593797653","text":"Socketed Gems are Supported by Level # Ignite Proliferation","type":"explicit"},{"id":"explicit.stat_3799299052","text":"Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana","type":"explicit"},{"id":"explicit.stat_2558253923","text":"Hits with this Weapon have Culling Strike against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_1791875585","text":"Gain an Endurance Charge when you lose a Power Charge","type":"explicit"},{"id":"explicit.stat_660386148","text":"#% of Physical Damage Converted to Lightning during Flask effect","type":"explicit"},{"id":"explicit.stat_3296019532","text":"Gain #% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge","type":"explicit"},{"id":"explicit.stat_2922737717","text":"#% chance to gain a Siphoning Charge when you use a Skill","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_asenath","text":"Denoted service of # dekhara in the akhara of Asenath","type":"explicit"},{"id":"explicit.stat_4164990693","text":"Damage Penetrates #% Lightning Resistance during Flask effect","type":"explicit"},{"id":"explicit.stat_1979658770","text":"Socketed Gems are Supported by Level # Fire Penetration","type":"explicit"},{"id":"explicit.stat_1251731548","text":"# seconds to Avian\u0027s Flight Duration","type":"explicit"},{"id":"explicit.stat_1722480396","text":"1 Added Passive Skill is No Witnesses","type":"explicit"},{"id":"explicit.stat_3750572810","text":"# to Total Mana Cost of Skills for each Corrupted Item Equipped","type":"explicit"},{"id":"explicit.stat_986397080","text":"#% reduced Ignite Duration on you","type":"explicit"},{"id":"explicit.stat_1612414696","text":"1 Added Passive Skill is Blowback","type":"explicit"},{"id":"explicit.stat_3837366401","text":"#% additional Physical Damage Reduction from Hits per Siphoning Charge","type":"explicit"},{"id":"explicit.stat_1266553505","text":"Weapons you Animate create an additional copy","type":"explicit"},{"id":"explicit.stat_3864993324","text":"# Maximum Energy Shield per Level","type":"explicit"},{"id":"explicit.stat_2721815210","text":"Grants Level # Precision Skill","type":"explicit"},{"id":"explicit.stat_2589482056","text":"Regenerate # Life per Second while you have Avian\u0027s Flight","type":"explicit"},{"id":"explicit.stat_811582994","text":"#% chance to Dodge Attack Hits if you have Blocked Recently","type":"explicit"},{"id":"explicit.stat_3252082366","text":"Trigger Level # Summon Phantasm Skill when you Consume a corpse","type":"explicit"},{"id":"explicit.stat_3178542354","text":"#% increased Movement Speed if you\u0027ve Hit an Enemy Recently","type":"explicit"},{"id":"explicit.stat_1301765461","text":"#% to maximum Chaos Resistance","type":"explicit"},{"id":"explicit.stat_3003321700","text":"Flasks do not apply to you","type":"explicit"},{"id":"explicit.stat_615884286","text":"Reflect Shocks applied to you to all Nearby Enemies","type":"explicit"},{"id":"explicit.stat_2415497478","text":"#% chance to Avoid Physical Damage from Hits","type":"explicit"},{"id":"explicit.stat_405941409","text":"Regenerate # Life per second for each Uncorrupted Item Equipped","type":"explicit"},{"id":"explicit.stat_1872128565","text":"# to Maximum Siphoning Charges per Elder or Shaper Item Equipped","type":"explicit"},{"id":"explicit.stat_1236638414","text":"Minions gain #% of Physical Damage as Extra Cold Damage","type":"explicit"},{"id":"explicit.stat_3370223014","text":"Adds # to # Cold Damage if you\u0027ve dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_247746531","text":"Adds # Jewel Socket Passive Skills","type":"explicit"},{"id":"explicit.stat_47271484","text":"#% increased Experience Gain for Corrupted Gems","type":"explicit"},{"id":"explicit.stat_1199118714","text":"Socketed Golem Skills gain #% of Maximum Life as Extra Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_1973890509","text":"#% chance to Trigger Level 20 Animate Weapon on Kill","type":"explicit"},{"id":"explicit.stat_346351023","text":"Socketed Gems have #% more Attack and Cast Speed","type":"explicit"},{"id":"explicit.stat_2834490860","text":"1 Added Passive Skill is Chilling Presence","type":"explicit"},{"id":"explicit.stat_3993957711","text":"1 Added Passive Skill is Sleepless Sentries","type":"explicit"},{"id":"explicit.stat_935623115","text":"Adds # to # Lightning Damage if you\u0027ve dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_1162425204","text":"Remove Ignite and Burning when you use a Flask","type":"explicit"},{"id":"explicit.stat_4089969970","text":"If you Consumed a corpse Recently, you and nearby Allies Regenerate #% of Life per second","type":"explicit"},{"id":"explicit.stat_2566390555","text":"#% increased Totem Damage per 10 Devotion","type":"explicit"},{"id":"explicit.stat_1663239249","text":"Trigger Level # Bone Offering, Flesh Offering or Spirit Offering every 5 seconds\nOffering Skills Triggered this way also affect you","type":"explicit"},{"id":"explicit.stat_3255961830","text":"# to Melee Strike Range if you have Killed Recently","type":"explicit"},{"id":"explicit.stat_1959256242","text":"You have Onslaught while not on Low Mana","type":"explicit"},{"id":"explicit.stat_2830135449","text":"Minions have \u002B# to Accuracy Rating per 10 Devotion","type":"explicit"},{"id":"explicit.stat_1495376076","text":"Regenerate # Mana per Second while you have Avian\u0027s Flight","type":"explicit"},{"id":"explicit.stat_165218607","text":"Hits have #% increased Critical Strike Chance against you","type":"explicit"},{"id":"explicit.stat_947072590","text":"You cannot be Ignited for # second after being Ignited","type":"explicit"},{"id":"explicit.stat_1996775727","text":"Recover #% of Energy Shield when you lose a Spirit Charge","type":"explicit"},{"id":"explicit.stat_2663792764","text":"You lose all Spirit Charges when taking a Savage Hit","type":"explicit"},{"id":"explicit.stat_328131617","text":"Gain a Spirit Charge every second","type":"explicit"},{"id":"explicit.stat_3736628755","text":"Precision has 50% less Mana Reservation","type":"explicit"},{"id":"explicit.stat_3961014595","text":"#% increased Spell Damage per 16 Intelligence","type":"explicit"},{"id":"explicit.stat_1686913105","text":"#% reduced Elemental Damage taken from Hits per Endurance Charge","type":"explicit"},{"id":"explicit.stat_1285056331","text":"Melee Attacks have #% chance to cause Bleeding","type":"explicit"},{"id":"explicit.stat_33065250","text":"Melee Attacks have #% chance to Poison on Hit","type":"explicit"},{"id":"explicit.stat_3571342795","text":"# to Level of Socketed Elemental Gems","type":"explicit"},{"id":"explicit.stat_730530528","text":"#% reduced Elemental Ailment Duration on you per 10 Devotion","type":"explicit"},{"id":"explicit.stat_3868443508","text":"#% increased Damage per Raised Zombie","type":"explicit"},{"id":"explicit.stat_3624529132","text":"#% of Physical Damage Converted to Fire Damage while affected by Anger","type":"explicit"},{"id":"explicit.stat_3144358296","text":"Adds # to # Fire Damage if you\u0027ve dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_2813516522","text":"#% increased Effect of Buffs granted by Socketed Golem Skills","type":"explicit"},{"id":"explicit.stat_1693676706","text":"Gain Onslaught for # seconds when you Cast Socketed Golem Skill","type":"explicit"},{"id":"explicit.stat_970844066","text":"Channelling Skills deal #% increased Damage per 10 Devotion","type":"explicit"},{"id":"explicit.stat_1353571444","text":"1 Added Passive Skill is Fettle","type":"explicit"},{"id":"explicit.stat_2544408546","text":"Aspect of the Avian also grants Avian\u0027s Might and Avian\u0027s Flight to nearby Allies","type":"explicit"},{"id":"explicit.stat_2602664175","text":"Minions Recover #% of Life on Killing a Poisoned Enemy","type":"explicit"},{"id":"explicit.stat_3647242059","text":"Left ring slot: Projectiles from Spells cannot Chain","type":"explicit"},{"id":"explicit.stat_3627458291","text":"#% to Critical Strike Multiplier while affected by Anger","type":"explicit"},{"id":"explicit.stat_738100799","text":"Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage","type":"explicit"},{"id":"explicit.stat_3654074125","text":"Attacks have #% chance to Poison while at maximum Frenzy Charges","type":"explicit"},{"id":"explicit.stat_4259701244","text":"# Life gained for each Enemy Hit while affected by Vitality","type":"explicit"},{"id":"explicit.stat_2592799343","text":"Gain # Mana per Grand Spectrum","type":"explicit"},{"id":"explicit.stat_2697019412","text":"#% increased Damage with Brand Skills per 10 Devotion","type":"explicit"},{"id":"explicit.stat_99927264","text":"#% reduced Shock Duration on you","type":"explicit"},{"id":"explicit.stat_2723101291","text":"Adds # to # Physical Damage if you\u0027ve dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_1948127742","text":"Added Small Passive Skills also grant: Minions have #% increased Attack and Cast Speed while you are affected by a Herald","type":"explicit"},{"id":"explicit.stat_4204954479","text":"Mana Recovery occurs instantly at the end of the Flask effect","type":"explicit"},{"id":"explicit.stat_1220361974","text":"Enemies you Kill Explode, dealing #% of their Life as Physical Damage","type":"explicit"},{"id":"explicit.stat_430248187","text":"#% increased Area of Effect if you have Stunned an Enemy Recently","type":"explicit"},{"id":"explicit.stat_2484082827","text":"1 Added Passive Skill is Fan of Blades","type":"explicit"},{"id":"explicit.stat_1746347097","text":"#% increased Aspect of the Avian Buff Effect","type":"explicit"},{"id":"explicit.stat_1722775216","text":"#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements","type":"explicit"},{"id":"explicit.stat_2162097452","text":"# to Level of all Minion Skill Gems","type":"explicit"},{"id":"explicit.stat_3734640451","text":"Adds # to # Cold Damage against Chilled Enemies","type":"explicit"},{"id":"explicit.stat_542238572","text":"Added Small Passive Skills also grant: Minions Regenerate #% of Life per Second","type":"explicit"},{"id":"explicit.stat_3692646597","text":"#% Chance to Block Attack Damage while affected by Determination","type":"explicit"},{"id":"explicit.stat_3769211656","text":"#% chance to gain a Frenzy Charge when you Block","type":"explicit"},{"id":"explicit.stat_207573834","text":"Gain Unholy Might during Flask Effect","type":"explicit"},{"id":"explicit.stat_164032122","text":"1 Added Passive Skill is Powerful Ward","type":"explicit"},{"id":"explicit.stat_2218252147","text":"#% chance to Dodge Attack Hits while affected by Grace","type":"explicit"},{"id":"explicit.stat_1471600638","text":"Socketed Curse Gems have #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_2763732093","text":"1 Added Passive Skill is Genius","type":"explicit"},{"id":"explicit.stat_2548097895","text":"#% chance to Blind Enemies which Hit you while affected by Grace","type":"explicit"},{"id":"explicit.stat_4245204226","text":"Gain #% of Physical Damage as Extra Fire Damage while affected by Anger","type":"explicit"},{"id":"explicit.stat_1626712767","text":"#% to Critical Strike Multiplier if you\u0027ve dealt a Non-Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_3293275880","text":"#% increased Mana Cost of Skills per 10 Devotion","type":"explicit"},{"id":"explicit.stat_2861397339","text":"Golems Deal #% less Damage","type":"explicit"},{"id":"explicit.stat_206243615","text":"Cannot gain Energy Shield","type":"explicit"},{"id":"explicit.stat_68410701","text":"You take #% reduced Extra Damage from Critical Strikes while affected by Determination","type":"explicit"},{"id":"explicit.stat_2200407711","text":"Minions have #% to Cold Resistance","type":"explicit"},{"id":"explicit.stat_4263513561","text":"#% Chance to Block Spell Damage if you have Blocked Spell Damage Recently","type":"explicit"},{"id":"explicit.stat_380220671","text":"#% of Damage taken gained as Mana over 4 seconds when Hit while affected by Clarity","type":"explicit"},{"id":"explicit.stat_362838683","text":"#% increased Life Recovery from Flasks while affected by Vitality","type":"explicit"},{"id":"explicit.stat_3699494172","text":"Socketed Gems are Supported by Level # Unbound Ailments","type":"explicit"},{"id":"explicit.stat_658456881","text":"# to Minimum Frenzy Charges","type":"explicit"},{"id":"explicit.stat_693460617","text":"Socketed Golem Skills have Minions Regenerate #% of Life per second","type":"explicit"},{"id":"explicit.stat_999511066","text":"#% increased Minion Duration","type":"explicit"},{"id":"explicit.stat_2451774989","text":"Hits with this Weapon always Ignite, Freeze, and Shock","type":"explicit"},{"id":"explicit.stat_207635700","text":"Debuffs on you expire #% faster while affected by Haste","type":"explicit"},{"id":"explicit.stat_178057093","text":"Socketed Golem Skills have #% chance to Taunt on Hit","type":"explicit"},{"id":"explicit.stat_2156210979","text":"Gain an Endurance Charge every 4 seconds while Stationary","type":"explicit"},{"id":"explicit.stat_3151397056","text":"#% increased Onslaught Effect","type":"explicit"},{"id":"explicit.stat_80470845","text":"#% increased Energy Shield Recovery Rate while affected by Discipline","type":"explicit"},{"id":"explicit.stat_3706959521","text":"# to Minimum Endurance Charges","type":"explicit"},{"id":"explicit.stat_3223142064","text":"Unaffected by Elemental Weakness while affected by Purity of Elements","type":"explicit"},{"id":"explicit.stat_1710207583","text":"#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements","type":"explicit"},{"id":"explicit.stat_3930242735","text":"1 Added Passive Skill is Confident Combatant","type":"explicit"},{"id":"explicit.stat_2181499453","text":"With at least 40 Intelligence in Radius, Blight has #% increased Hinder Duration","type":"explicit"},{"id":"explicit.stat_1237693206","text":"#% less Poison Duration","type":"explicit"},{"id":"explicit.stat_3039589351","text":"#% Chance to Block Attack Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2457540491","text":"#% reduced Reflected Physical Damage taken while affected by Determination","type":"explicit"},{"id":"explicit.stat_1166487805","text":"Gain # Armour per Grand Spectrum","type":"explicit"},{"id":"explicit.stat_2365917222","text":"Unaffected by Enfeeble while affected by Grace","type":"explicit"},{"id":"explicit.stat_254131992","text":"#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning","type":"explicit"},{"id":"explicit.stat_3225265684","text":"With # Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield, and 50% of Physical Damage bypasses Energy Shield","type":"explicit"},{"id":"explicit.stat_608438307","text":"You can only Socket Corrupted Gems in this item","type":"explicit"},{"id":"explicit.stat_3207781478","text":"Unaffected by Vulnerability while affected by Determination","type":"explicit"},{"id":"explicit.stat_1101403182","text":"#% reduced Damage taken from Damage Over Time","type":"explicit"},{"id":"explicit.stat_2265469693","text":"Added Small Passive Skills also grant: #% increased Brand Attachment range","type":"explicit"},{"id":"explicit.stat_1779027621","text":"#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice","type":"explicit"},{"id":"explicit.stat_3153744598","text":"With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells","type":"explicit"},{"id":"explicit.stat_606940191","text":"#% chance to Scorch Enemies","type":"explicit"},{"id":"explicit.stat_2395088636","text":"Throw an additional Mine","type":"explicit"},{"id":"explicit.stat_969576725","text":"#% chance to Evade Attack Hits while affected by Grace","type":"explicit"},{"id":"explicit.stat_1724614884","text":"#% increased Area Damage per 10 Devotion","type":"explicit"},{"id":"explicit.stat_1016185292","text":"#% faster start of Energy Shield Recharge while affected by Discipline","type":"explicit"},{"id":"explicit.stat_3875792669","text":"1 Added Passive Skill is Molten One\u0027s Mark","type":"explicit"},{"id":"explicit.stat_2383304564","text":"#% of Damage taken from Mana before Life while affected by Clarity","type":"explicit"},{"id":"explicit.stat_24977021","text":"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_1077131949","text":"Damage Penetrates #% Lightning Resistance while affected by Wrath","type":"explicit"},{"id":"explicit.stat_2238174408","text":"#% chance to inflict Brittle","type":"explicit"},{"id":"explicit.stat_706212417","text":"Socketed Golem Skills have #% increased Attack and Cast Speed","type":"explicit"},{"id":"explicit.stat_3799759054","text":"Added Small Passive Skills also grant: Channelling Skills have #% increased Attack and Cast Speed","type":"explicit"},{"id":"explicit.stat_1798459983","text":"#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire","type":"explicit"},{"id":"explicit.stat_3998191356","text":"Non-Chilled Enemies you Poison are Chilled","type":"explicit"},{"id":"explicit.stat_1263311755","text":"#% more Monster Damage","type":"explicit"},{"id":"explicit.stat_398940995","text":"Non-Chilled Enemies you inflict Bleeding on are Chilled","type":"explicit"},{"id":"explicit.stat_3103189267","text":"#% increased Elemental Damage per 10 Devotion","type":"explicit"},{"id":"explicit.stat_3350228283","text":"Poisoned Enemies you Kill with Hits Shatter","type":"explicit"},{"id":"explicit.stat_612223930","text":"Cannot inflict Freeze or Chill","type":"explicit"},{"id":"explicit.stat_990377349","text":"Cannot inflict Shock","type":"explicit"},{"id":"explicit.stat_532324017","text":"#% chance to Sap Enemies","type":"explicit"},{"id":"explicit.stat_1169422227","text":"Socketed Gems are Supported by Level # Elemental Focus","type":"explicit"},{"id":"explicit.stat_458002333","text":"Adds # to # Lightning Damage to Unarmed Attacks","type":"explicit"},{"id":"explicit.stat_873224517","text":"#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements","type":"explicit"},{"id":"explicit.stat_4250009622","text":"#% chance to be Poisoned","type":"explicit"},{"id":"explicit.stat_2355615476","text":"#% to Critical Strike Multiplier against Enemies that are on Full Life","type":"explicit"},{"id":"explicit.stat_162742068","text":"\u002B#% Monster Lightning Resistance","type":"explicit"},{"id":"explicit.stat_1030987123","text":"#% to all maximum Resistances while Poisoned","type":"explicit"},{"id":"explicit.stat_3489570622","text":"Regenerate # Life per Second while affected by Vitality","type":"explicit"},{"id":"explicit.stat_371612541","text":"Immune to Ignite while affected by Purity of Fire","type":"explicit"},{"id":"explicit.stat_2632954025","text":"You have Phasing if Energy Shield Recharge has started Recently","type":"explicit"},{"id":"explicit.stat_1313498929","text":"#% Chance to Block Spell Damage while affected by Discipline","type":"explicit"},{"id":"explicit.stat_3368671817","text":"Adds # to # Physical Damage to Attacks and Spells per Siphoning Charge","type":"explicit"},{"id":"explicit.stat_2443132097","text":"Poisons on you expire #% slower","type":"explicit"},{"id":"explicit.stat_3205239847","text":"#% of Fire Damage from Hits taken as Physical Damage","type":"explicit"},{"id":"explicit.stat_679632038","text":"#% chance to Dodge Attack Hits while Phasing","type":"explicit"},{"id":"explicit.stat_2758554648","text":"Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability","type":"explicit"},{"id":"explicit.stat_451866048","text":"Shock Enemies as though dealing #% more Damage","type":"explicit"},{"id":"explicit.stat_2255914633","text":"Gain #% of Physical Damage as Extra Lightning Damage while affected by Wrath","type":"explicit"},{"id":"explicit.stat_241783558","text":"1 Added Passive Skill is Wrapped in Flame","type":"explicit"},{"id":"explicit.stat_1555918911","text":"Right ring slot: Projectiles from Spells Chain \u002B# times","type":"explicit"},{"id":"explicit.stat_3111519953","text":"Damage Penetrates #% Fire Resistance while affected by Anger ","type":"explicit"},{"id":"explicit.stat_3729445224","text":"Auras from your Skills grant #% increased Damage to you and Allies","type":"explicit"},{"id":"explicit.stat_4012281889","text":"Unaffected by Frostbite while affected by Purity of Ice","type":"explicit"},{"id":"explicit.stat_818329660","text":"Trigger Level # Storm Cascade when you Attack","type":"explicit"},{"id":"explicit.stat_3914021960","text":"Nearby Enemies have #% to Fire Resistance","type":"explicit"},{"id":"explicit.stat_3835899275","text":"Socketed Gems deal #% more Elemental Damage","type":"explicit"},{"id":"explicit.stat_2647344903","text":"Unaffected by Chilled Ground while affected by Purity of Ice","type":"explicit"},{"id":"explicit.stat_68673913","text":"Adds # to # Fire Damage to Attacks per 10 Strength","type":"explicit"},{"id":"explicit.stat_2042813020","text":"Regenerate # Mana per Second per 10 Devotion","type":"explicit"},{"id":"explicit.stat_1567542124","text":"Unaffected by Conductivity while affected by Purity of Lightning","type":"explicit"},{"id":"explicit.stat_3308185931","text":"Unaffected by Burning Ground while affected by Purity of Fire","type":"explicit"},{"id":"explicit.stat_1802660259","text":"You are Chilled when you are Poisoned","type":"explicit"},{"id":"explicit.stat_1251945210","text":"# seconds to Avian\u0027s Might Duration","type":"explicit"},{"id":"explicit.stat_991194404","text":"Regenerate #% of Energy Shield per Second while affected by Discipline","type":"explicit"},{"id":"explicit.stat_3485231932","text":"Adds # to # Cold Damage while you have Avian\u0027s Might","type":"explicit"},{"id":"explicit.stat_2806391472","text":"Unaffected by Temporal Chains while affected by Haste","type":"explicit"},{"id":"explicit.stat_1587137379","text":"#% of Damage Leeched as Life per Siphoning Charge","type":"explicit"},{"id":"explicit.stat_1827657795","text":"#% increased Energy Shield Recharge Rate during any Flask Effect","type":"explicit"},{"id":"explicit.stat_3088183606","text":"# to Armour per 5 Evasion Rating on Equipped Shield","type":"explicit"},{"id":"explicit.stat_2720072724","text":"Immune to Freeze while affected by Purity of Ice","type":"explicit"},{"id":"explicit.stat_1173690938","text":"Unaffected by Flammability while affected by Purity of Fire","type":"explicit"},{"id":"explicit.stat_2567659895","text":"Unaffected by Shocked Ground while affected by Purity of Lightning","type":"explicit"},{"id":"explicit.stat_4198497576","text":"Cannot inflict Ignite","type":"explicit"},{"id":"explicit.stat_1912660783","text":"#% slower start of Energy Shield Recharge during any Flask Effect","type":"explicit"},{"id":"explicit.stat_3848677307","text":"1 Added Passive Skill is Aerialist","type":"explicit"},{"id":"explicit.stat_65331133","text":"#% reduced Reflected Elemental Damage taken while affected by Purity of Elements","type":"explicit"},{"id":"explicit.stat_2918755450","text":"1 Added Passive Skill is Fan the Flames","type":"explicit"},{"id":"explicit.stat_556659145","text":"#% increased Mana Recovery Rate while affected by Clarity","type":"explicit"},{"id":"explicit.stat_2280488002","text":"Stun Threshold is based on #% of your Mana instead of Life","type":"explicit"},{"id":"explicit.stat_613752285","text":"Sacrifice #% of Life to gain that much Energy Shield when you Cast a Spell","type":"explicit"},{"id":"explicit.stat_214835567","text":"#% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry","type":"explicit"},{"id":"explicit.stat_415837237","text":"Nearby Enemies take #% increased Physical Damage","type":"explicit"},{"id":"explicit.stat_2091518682","text":"Critical Strikes Penetrate #% of Enemy Elemental Resistances while affected by Zealotry","type":"explicit"},{"id":"explicit.stat_761505024","text":"Adds # to # Fire Attack Damage per Buff on you","type":"explicit"},{"id":"explicit.stat_1704843611","text":"Regenerate # Life per second if you have at least 1000 Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_2589042711","text":"Lose # Mana per Second","type":"explicit"},{"id":"explicit.stat_2803981661","text":"#% increased Defences from Equipped Shield per 10 Devotion","type":"explicit"},{"id":"explicit.stat_1103902353","text":"Regenerate # Life per second if you have at least 500 Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_4192058279","text":"With # Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead","type":"explicit"},{"id":"explicit.stat_1910205563","text":"#% to all Elemental Resistances per 10 Devotion","type":"explicit"},{"id":"explicit.stat_1869144397","text":"Trigger Level # Void Gaze when you use a Skill","type":"explicit"},{"id":"explicit.stat_4290522695","text":"1 Added Passive Skill is Septic Spells","type":"explicit"},{"id":"explicit.stat_2440172920","text":"Take # Physical Damage per Second per Siphoning Charge if you\u0027ve used a Skill Recently","type":"explicit"},{"id":"explicit.stat_763611529","text":"#% chance to Unnerve Enemies for 4 seconds on Hit","type":"explicit"},{"id":"explicit.stat_4229711086","text":"#% increased Damage with Hits and Ailments per Freeze, Shock or Ignite on Enemy","type":"explicit"},{"id":"explicit.stat_855634301","text":"Adds # to # Lightning Damage while you have Avian\u0027s Might","type":"explicit"},{"id":"explicit.stat_3576153145","text":"Burning Hoofprints","type":"explicit"},{"id":"explicit.stat_2444534954","text":"#% increased Cast Speed while affected by Zealotry","type":"explicit"},{"id":"explicit.stat_2434030180","text":"Consecrated Ground you create while affected by Zealotry causes enemies to take #% increased Damage","type":"explicit"},{"id":"explicit.stat_3141831683","text":"#% chance to Trigger Level 20 Glimpse of Eternity when Hit","type":"explicit"},{"id":"explicit.stat_3742808908","text":"# to Armour while affected by Determination","type":"explicit"},{"id":"explicit.stat_4234677275","text":"Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items","type":"explicit"},{"id":"explicit.stat_67132951","text":"You are Chilled while you are Bleeding","type":"explicit"},{"id":"explicit.stat_2241902512","text":"#% increased Fire Damage per 20 Strength","type":"explicit"},{"id":"explicit.stat_982177653","text":"Adds # to # Chaos Damage for each Spider\u0027s Web on the Enemy","type":"explicit"},{"id":"explicit.stat_3643449791","text":"#% increased Recovery rate of Life and Energy Shield while affected by Malevolence","type":"explicit"},{"id":"explicit.stat_1220800126","text":"Skills which Throw Traps throw up to 1 additional Trap","type":"explicit"},{"id":"explicit.stat_2250169390","text":"1 Added Passive Skill is Overlord","type":"explicit"},{"id":"explicit.stat_2106756686","text":"#% of Physical Damage Converted to Lightning Damage while affected by Wrath","type":"explicit"},{"id":"explicit.stat_2562564343","text":"Despair has #% reduced Mana Reservation if Cast as an Aura","type":"explicit"},{"id":"explicit.stat_33348259","text":"Gain #% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped","type":"explicit"},{"id":"explicit.stat_1953432004","text":"Unaffected by Poison","type":"explicit"},{"id":"explicit.stat_843854434","text":"Critical Strikes have #% chance to Blind Enemies while you have Cat\u0027s Stealth","type":"explicit"},{"id":"explicit.stat_4075957192","text":"Poisonous Hit","type":"explicit"},{"id":"explicit.stat_2690790844","text":"#% increased Life Recovery Rate while affected by Vitality","type":"explicit"},{"id":"explicit.stat_3826125995","text":"Projectiles from Spells cannot Pierce","type":"explicit"},{"id":"explicit.stat_2485187927","text":"Create a Blighted Spore when your Skills or Minions Kill a Rare Monster","type":"explicit"},{"id":"explicit.stat_3992636701","text":"#% to Critical Strike Chance while affected by Aspect of the Cat","type":"explicit"},{"id":"explicit.stat_1367119630","text":"Your Curses can apply to Hexproof Enemies","type":"explicit"},{"id":"explicit.stat_1873457881","text":"#% additional Physical Damage Reduction while affected by Determination","type":"explicit"},{"id":"explicit.stat_3656959867","text":"#% of Damage leeched as Life while affected by Vitality","type":"explicit"},{"id":"explicit.stat_1444556985","text":"#% of Damage taken gained as Life over 4 seconds when Hit","type":"explicit"},{"id":"explicit.stat_1063920218","text":"Summoned Raging Spirits take #% of their Maximum Life per second as Chaos Damage","type":"explicit"},{"id":"explicit.stat_418293304","text":"#% increased Lightning Damage while affected by Wrath","type":"explicit"},{"id":"explicit.stat_2542650946","text":"#% chance to gain an Endurance Charge on Critical Strike","type":"explicit"},{"id":"explicit.stat_67169579","text":"# to Level of all Chaos Skill Gems","type":"explicit"},{"id":"explicit.stat_103928310","text":"#% increased Damage with Hits and Ailments against Enemies affected by 3 Spider\u0027s Webs","type":"explicit"},{"id":"explicit.stat_4265906483","text":"#% chance to inflict Lightning Exposure on Hit","type":"explicit"},{"id":"explicit.stat_2731416566","text":"#% increased Maximum total Recovery per second from Energy Shield Leech while affected by Zealotry","type":"explicit"},{"id":"explicit.stat_3134222965","text":"1 Added Passive Skill is Fearsome Warrior","type":"explicit"},{"id":"explicit.stat_683273571","text":"#% increased Mana Cost of Skills during Flask Effect","type":"explicit"},{"id":"explicit.stat_1346311588","text":"You have Phasing while affected by Haste","type":"explicit"},{"id":"explicit.stat_2135246244","text":"Added Small Passive Skills also grant: #% increased Trap and Mine Throwing Speed","type":"explicit"},{"id":"explicit.stat_3742945352","text":"Hatred has #% increased Aura Effect","type":"explicit"},{"id":"explicit.stat_3281591194","text":"Ignites you inflict spread to other Enemies within a Radius of #","type":"explicit"},{"id":"explicit.stat_3918947537","text":"Triggers Level # Cold Aegis when Equipped","type":"explicit"},{"id":"explicit.stat_3133579934","text":"#% increased Attack and Cast Speed per Summoned Raging Spirit","type":"explicit"},{"id":"explicit.stat_664849247","text":"#% of Physical Damage Converted to Cold Damage while affected by Hatred","type":"explicit"},{"id":"explicit.stat_52953650","text":"Grants Level # Envy Skill","type":"explicit"},{"id":"explicit.stat_3312593243","text":"Socketed Gems are Supported by Level # Cast On Melee Kill","type":"explicit"},{"id":"explicit.stat_2894704558","text":"# to Maximum number of Crab Barriers","type":"explicit"},{"id":"explicit.stat_731840035","text":"1 Added Passive Skill is Non-Flammable","type":"explicit"},{"id":"explicit.stat_3227159962","text":"Regenerate # Life per second if you have at least 1500 Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_3565956680","text":"#% increased Damage with Hits and Ailments against Blinded Enemies","type":"explicit"},{"id":"explicit.stat_2596487673","text":"Added Small Passive Skills also grant: #% increased Warcry Duration","type":"explicit"},{"id":"explicit.stat_881917501","text":"Bleeding Enemies you Kill with Hits Shatter","type":"explicit"},{"id":"explicit.stat_2524029637","text":"Recover #% of Mana when you Shock an Enemy","type":"explicit"},{"id":"explicit.stat_2319127046","text":"\u002B#% Monster Fire Resistance","type":"explicit"},{"id":"explicit.stat_2323242761","text":"#% chance to gain a Frenzy Charge on Hit","type":"explicit"},{"id":"explicit.stat_1413864591","text":"#% increased Cold Damage while affected by Hatred","type":"explicit"},{"id":"explicit.stat_2710898947","text":"#% more Monster Life","type":"explicit"},{"id":"explicit.stat_2763710567","text":"Gain Unholy Might for 2 seconds on Critical Strike","type":"explicit"},{"id":"explicit.stat_3375743050","text":"#% increased Attack Speed while affected by Precision","type":"explicit"},{"id":"explicit.stat_948687156","text":"Regenerate # Energy Shield per Second per Poison on you, up to 250 per second","type":"explicit"},{"id":"explicit.stat_2813626504","text":"Spells have a #% chance to deal Double Damage","type":"explicit"},{"id":"explicit.stat_1588674629","text":"Added Small Passive Skills also grant: #% increased Totem Placement speed","type":"explicit"},{"id":"explicit.stat_3945685369","text":"Your Movement Speed is #% of its base value","type":"explicit"},{"id":"explicit.stat_3289633055","text":"Socketed Gems have #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_3995612171","text":"#% increased Arctic Armour Buff Effect","type":"explicit"},{"id":"explicit.stat_4175197580","text":"Malevolence has #% increased Aura Effect","type":"explicit"},{"id":"explicit.stat_1430380429","text":"\u002B#% Monster Cold Resistance","type":"explicit"},{"id":"explicit.stat_2341811700","text":"Damage Penetrates #% of Fire Resistance if you have Blocked Recently","type":"explicit"},{"id":"explicit.stat_2629366488","text":"Socketed Red Gems get #% Physical Damage as Extra Fire Damage","type":"explicit"},{"id":"explicit.stat_1745952865","text":"#% reduced Elemental Ailment Duration on you","type":"explicit"},{"id":"explicit.stat_1919069577","text":"Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry","type":"explicit"},{"id":"explicit.stat_2530372417","text":"#% Chance to Block Attack Damage","type":"explicit"},{"id":"explicit.stat_1196902248","text":"#% increased Damage with Hits against Frozen Enemies","type":"explicit"},{"id":"explicit.stat_3580556037","text":"Monsters gain # Frenzy Charge every 20 seconds","type":"explicit"},{"id":"explicit.stat_996483959","text":"#% chance to Maim Enemies on Critical Strike with Attacks","type":"explicit"},{"id":"explicit.stat_2671550669","text":"Enemies you inflict Bleeding on grant #% increased Flask Charges","type":"explicit"},{"id":"explicit.stat_2308278768","text":"Travel Skills have #% increased Cooldown Recovery Speed","type":"explicit"},{"id":"explicit.stat_2913235441","text":"When you Kill a Rare monster, you gain its Modifiers for # seconds","type":"explicit"},{"id":"explicit.stat_3772841281","text":"Gain a Flask Charge when you deal a Critical Strike while affected by Precision","type":"explicit"},{"id":"explicit.stat_744082851","text":"#% of Chaos Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_3772848194","text":"Your Hits Intimidate Enemies for 4 seconds while you are using Pride","type":"explicit"},{"id":"explicit.stat_4173751044","text":"#% chance to Impale Enemies on Hit with Attacks while using Pride","type":"explicit"},{"id":"explicit.stat_1981749265","text":"Your Spells are disabled","type":"explicit"},{"id":"explicit.stat_2137878565","text":"#% increased Damage with Hits against Rare monsters","type":"explicit"},{"id":"explicit.stat_291644318","text":"Spell Skills deal no Damage","type":"explicit"},{"id":"explicit.stat_768537671","text":"#% of Life Leech applies to Enemies as Chaos Damage","type":"explicit"},{"id":"explicit.stat_1653848515","text":"Cannot be Blinded while affected by Precision","type":"explicit"},{"id":"explicit.stat_2733285506","text":"Channelling Skills deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_2935409762","text":"Trigger Level # Rain of Arrows when you Attack with a Bow","type":"explicit"},{"id":"explicit.stat_241251790","text":"Cannot lose Crab Barriers if you have lost Crab Barriers Recently","type":"explicit"},{"id":"explicit.stat_653107703","text":"#% Chance to Block Attack Damage while you have at least 10 Crab Barriers","type":"explicit"},{"id":"explicit.stat_4122367945","text":"Grants Level # Vengeance Skill","type":"explicit"},{"id":"explicit.stat_34059570","text":"Unaffected by Poison while affected by Malevolence","type":"explicit"},{"id":"explicit.stat_3978164317","text":"All Attacks with this Weapon are Critical Strikes","type":"explicit"},{"id":"explicit.stat_2778228111","text":"Attack Skills have Added Lightning Damage equal to #% of maximum Mana","type":"explicit"},{"id":"explicit.stat_1509532587","text":"Aspect of the Spider can inflict Spider\u0027s Web on Enemies an additional time","type":"explicit"},{"id":"explicit.stat_854225133","text":"You have no Life Regeneration","type":"explicit"},{"id":"explicit.stat_926444104","text":"Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Power Charge on Kill","type":"explicit"},{"id":"explicit.stat_810219447","text":"1 Added Passive Skill is Improvisor","type":"explicit"},{"id":"explicit.stat_3468843137","text":"Damaging Ailments you inflict deal Damage #% faster while affected by Malevolence","type":"explicit"},{"id":"explicit.stat_122450405","text":"#% increased Attack Speed while you have Fortify","type":"explicit"},{"id":"explicit.stat_1261958804","text":"Adds # to # Cold Damage to Staff Attacks","type":"explicit"},{"id":"explicit.stat_1810368194","text":"#% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion","type":"explicit"},{"id":"explicit.stat_1902595112","text":"Nearby Enemies have #% to Chaos Resistance","type":"explicit"},{"id":"explicit.stat_332854027","text":"#% increased Aspect of the Spider Debuff Duration","type":"explicit"},{"id":"explicit.stat_113147867","text":"Lose #% of Mana when you use an Attack Skill","type":"explicit"},{"id":"explicit.stat_2200030809","text":"Discipline has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_3765507527","text":"# Energy Shield gained for each Enemy Hit while affected by Discipline","type":"explicit"},{"id":"explicit.stat_1715495976","text":"#% less Minimum Physical Attack Damage","type":"explicit"},{"id":"explicit.stat_2968301430","text":"Gain # Life when you Stun an Enemy","type":"explicit"},{"id":"explicit.stat_1512695141","text":"Immune to Freeze and Chill while Ignited","type":"explicit"},{"id":"explicit.stat_3029185248","text":"#% more Maximum Physical Attack Damage","type":"explicit"},{"id":"explicit.stat_2442112158","text":"While in Her Embrace, take #% of your total Maximum Life and Energy Shield as Fire Damage per second per Level","type":"explicit"},{"id":"explicit.stat_3520223758","text":"Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed","type":"explicit"},{"id":"explicit.stat_3789765926","text":"#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently","type":"explicit"},{"id":"explicit.stat_2585926696","text":"#% increased effect of Non-Curse Auras per 10 Devotion","type":"explicit"},{"id":"explicit.stat_3121133045","text":"Your Lightning Damage can Ignite","type":"explicit"},{"id":"explicit.stat_1138813382","text":"#% to Chaos Resistance while affected by Purity of Elements","type":"explicit"},{"id":"explicit.stat_1829869055","text":"#% chance that if you would gain a Crab Barrier, you instead gain up to\nyour maximum number of Crab Barriers","type":"explicit"},{"id":"explicit.stat_2964800094","text":"Socketed Skills deal #% more Spell Damage","type":"explicit"},{"id":"explicit.stat_1871056256","text":"#% of Physical Damage from Hits taken as Cold Damage","type":"explicit"},{"id":"explicit.stat_478612089","text":"Zealotry has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_3835483564","text":"Hatred has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_2017682521","text":"\u002B#% Monster pack size","type":"explicit"},{"id":"explicit.stat_3844016207","text":"#% chance to Trigger Level 1 Raise Spiders on Kill","type":"explicit"},{"id":"explicit.stat_1019038967","text":"#% increased Damage per Crab Barrier","type":"explicit"},{"id":"explicit.stat_2867050084","text":"Grants Level # Grace Skill","type":"explicit"},{"id":"explicit.stat_4104891138","text":"Unaffected by Bleeding while affected by Malevolence","type":"explicit"},{"id":"explicit.stat_3600749521","text":"Wrath has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_1997151732","text":"Arrows Pierce all Targets after Chaining","type":"explicit"},{"id":"explicit.stat_1812251528","text":"Arrows that Pierce have 50% chance to inflict Bleeding","type":"explicit"},{"id":"explicit.stat_3229976559","text":"#% increased Mana Reserved per 250 total Attributes","type":"explicit"},{"id":"explicit.stat_1011373762","text":"Spells fire an additional Projectile","type":"explicit"},{"id":"explicit.stat_2446580062","text":"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat\u0027s Stealth","type":"explicit"},{"id":"explicit.stat_1834455446","text":"You have Phasing while you have Cat\u0027s Stealth","type":"explicit"},{"id":"explicit.stat_387596329","text":"# seconds to Cat\u0027s Stealth Duration","type":"explicit"},{"id":"explicit.stat_1575519214","text":"Gain Accuracy Rating equal to your Strength","type":"explicit"},{"id":"explicit.stat_1853636813","text":"Non-Channelling Skills have # to Total Mana Cost while affected by Clarity","type":"explicit"},{"id":"explicit.stat_1135194732","text":"Can have a second Enchantment Modifier","type":"explicit"},{"id":"explicit.stat_2213584313","text":"#% chance to Curse Enemies with Level 10 Vulnerability on Hit","type":"explicit"},{"id":"explicit.stat_4096052153","text":"Zealotry has #% increased Aura Effect","type":"explicit"},{"id":"explicit.stat_250961191","text":"Pride has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_2622251413","text":"#% chance to double Stun Duration","type":"explicit"},{"id":"explicit.stat_455217103","text":"You only lose # Crab Barriers when you take Physical Damage from a Hit","type":"explicit"},{"id":"explicit.stat_2513293614","text":"Socketed Gems are Supported by Level # Vicious Projectiles","type":"explicit"},{"id":"explicit.stat_3371719014","text":"#% chance to deal Double Damage while using Pride","type":"explicit"},{"id":"explicit.stat_2841027131","text":"Regenerate # Life per second while moving","type":"explicit"},{"id":"explicit.stat_3750917270","text":"#% of Attack Damage Leeched as Life against Taunted Enemies","type":"explicit"},{"id":"explicit.stat_3806100539","text":"# to Maximum Life per 10 Dexterity","type":"explicit"},{"id":"explicit.stat_1790172543","text":"#% increased Damage with Hits and Ailments against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_4272260340","text":"Frostbite has #% reduced Mana Reservation if Cast as an Aura","type":"explicit"},{"id":"explicit.stat_3747189159","text":"#% increased Damage with Hits and Ailments against Chilled Enemies","type":"explicit"},{"id":"explicit.stat_3892608176","text":"Trigger Level # Intimidating Cry when you lose Cat\u0027s Stealth","type":"explicit"},{"id":"explicit.stat_673704994","text":"#% increased Movement Speed while you have Cat\u0027s Stealth","type":"explicit"},{"id":"explicit.stat_1592278124","text":"Anger has #% increased Aura Effect","type":"explicit"},{"id":"explicit.stat_2628721358","text":"#% of Attack Damage Leeched as Mana per Power Charge","type":"explicit"},{"id":"explicit.stat_877233648","text":"Cannot be Stunned if you have at least 10 Crab Barriers","type":"explicit"},{"id":"explicit.stat_958088871","text":"#% of Damage Leeched as Life on Critical Strike","type":"explicit"},{"id":"explicit.stat_2269396414","text":"# to Accuracy against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_1354504703","text":"#% Chance to Block Attack Damage while you have at least 5 Crab Barriers","type":"explicit"},{"id":"explicit.stat_3492797685","text":"You have Crimson Dance while you have Cat\u0027s Stealth","type":"explicit"},{"id":"explicit.stat_3846088475","text":"Socketed Gems deal #% more Damage over Time","type":"explicit"},{"id":"explicit.stat_1153966848","text":"Map has # additional random Suffix","type":"explicit"},{"id":"explicit.stat_2223565123","text":"Socketed Gems are Supported by Level # Greater Volley","type":"explicit"},{"id":"explicit.stat_3850409117","text":"Aspect of the Cat Reserves no Mana","type":"explicit"},{"id":"explicit.stat_2384145996","text":"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed","type":"explicit"},{"id":"explicit.stat_1546046884","text":"Gain a Flask Charge when you deal a Critical Strike","type":"explicit"},{"id":"explicit.stat_3523867985","text":"#% increased Armour, Evasion and Energy Shield (Local)","type":"explicit"},{"id":"explicit.stat_3215042347","text":"Purity of Fire has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_2212731469","text":"#% to Damage over Time Multiplier for Ailments per Elder Item Equipped","type":"explicit"},{"id":"explicit.stat_4230767876","text":"#% increased Damage with Poison per Power Charge","type":"explicit"},{"id":"explicit.stat_3832130495","text":"Aspect of the Spider inflicts Spider\u0027s Webs and Hinder every # Seconds instead","type":"explicit"},{"id":"explicit.stat_2163419452","text":"Effects of Consecrated Ground you create while affected by Zealotry Linger for # seconds","type":"explicit"},{"id":"explicit.stat_3362665206","text":"#% increased Mine Arming Speed","type":"explicit"},{"id":"explicit.stat_3081076859","text":"#% increased Global Critical Strike Chance per Level","type":"explicit"},{"id":"explicit.stat_3573591118","text":"Your Cold Damage can Ignite","type":"explicit"},{"id":"explicit.stat_252724319","text":"1 Added Passive Skill is Enduring Ward","type":"explicit"},{"id":"explicit.stat_1345136012","text":"#% chance to Dodge Spell Hits while affected by Haste","type":"explicit"},{"id":"explicit.stat_3056188914","text":"Grants Level # Summon Stone Golem Skill","type":"explicit"},{"id":"explicit.stat_282757414","text":"Socketed Gems are Supported by Level # Pulverise","type":"explicit"},{"id":"explicit.stat_4263540840","text":"Left ring slot: You cannot Recharge or Regenerate Energy Shield","type":"explicit"},{"id":"explicit.stat_3610263531","text":"Focus has #% increased Cooldown Recovery Speed","type":"explicit"},{"id":"explicit.stat_2634885412","text":"Trigger Level # Bone Nova when you Kill a Bleeding Enemy","type":"explicit"},{"id":"explicit.stat_3676958605","text":"Right ring slot: Regenerate #% of Energy Shield per second","type":"explicit"},{"id":"explicit.stat_2992087211","text":"#% chance to Poison per Power Charge","type":"explicit"},{"id":"explicit.stat_509677462","text":"Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Frenzy Charge on Kill","type":"explicit"},{"id":"explicit.stat_3274973940","text":"Socketed Gems are Supported by Level # Blessing","type":"explicit"},{"id":"explicit.stat_289714529","text":"1 Added Passive Skill is Elegant Form","type":"explicit"},{"id":"explicit.stat_1661253443","text":"Strike Skills target # additional nearby Enemy","type":"explicit"},{"id":"explicit.stat_2970902024","text":"Enemies you hit are destroyed on Kill","type":"explicit"},{"id":"explicit.stat_783864527","text":"Right ring slot: You cannot Regenerate Mana","type":"explicit"},{"id":"explicit.stat_3250579936","text":"Triggers Level # Abberath\u0027s Fury when Equipped","type":"explicit"},{"id":"explicit.stat_2003753577","text":"Anger has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_3163738488","text":"#% increased Elemental Damage per Grand Spectrum","type":"explicit"},{"id":"explicit.stat_1424006185","text":"You gain Onslaught for # seconds on Kill while affected by Haste","type":"explicit"},{"id":"explicit.stat_2437476305","text":"Left ring slot: Projectiles from Spells Fork","type":"explicit"},{"id":"explicit.stat_2059771038","text":"Attacks always inflict Bleeding while you have Cat\u0027s Stealth","type":"explicit"},{"id":"explicit.stat_308127151","text":"#% of Lightning Damage Leeched as Energy Shield","type":"explicit"},{"id":"explicit.stat_576528026","text":"#% increased Attack Physical Damage while using Pride","type":"explicit"},{"id":"explicit.stat_3357049845","text":"#% increased Critical Strike Chance while affected by Wrath","type":"explicit"},{"id":"explicit.stat_3332055899","text":"#% increased cooldown recovery speed of Movement Skills used while affected by Haste","type":"explicit"},{"id":"explicit.stat_2048747572","text":"#% increased Attack Damage while affected by Precision","type":"explicit"},{"id":"explicit.stat_3072232736","text":"Determination has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_2643562209","text":"Adds # to # Cold Damage while affected by Hatred","type":"explicit"},{"id":"explicit.stat_2551779822","text":"# Armour while stationary","type":"explicit"},{"id":"explicit.stat_2262736444","text":"Eldritch Battery","type":"explicit"},{"id":"explicit.stat_2013799819","text":"#% increased Maximum total Recovery per second from Energy Shield Leech","type":"explicit"},{"id":"explicit.stat_2434330144","text":"Grants Level # Reckoning Skill","type":"explicit"},{"id":"explicit.stat_3308030688","text":"#% increased Mana Regeneration Rate while stationary","type":"explicit"},{"id":"explicit.stat_358040686","text":"#% chance to create Chilled Ground when Hit with an Attack","type":"explicit"},{"id":"explicit.stat_273206351","text":"#% chance to gain a Power Charge on hitting an Enemy affected by a Spider\u0027s Web","type":"explicit"},{"id":"explicit.stat_1549898151","text":"Grace has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_1678831767","text":"Recover # Life when you Block","type":"explicit"},{"id":"explicit.stat_1645524575","text":"Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain an Endurance Charge on Kill","type":"explicit"},{"id":"explicit.stat_4120821275","text":"Malevolence has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_304032021","text":"#% more Damage with Arrow Hits at Close Range while you have Iron Reflexes","type":"explicit"},{"id":"explicit.stat_2522672898","text":"#% of Fire Damage from Hits taken as Cold Damage","type":"explicit"},{"id":"explicit.stat_549215295","text":"Gain # Energy Shield for each Enemy you Hit which is affected by a Spider\u0027s Web","type":"explicit"},{"id":"explicit.stat_3284029342","text":"You have Far Shot while you do not have Iron Reflexes","type":"explicit"},{"id":"explicit.stat_3835551335","text":"Cannot be Poisoned","type":"explicit"},{"id":"explicit.stat_1222888897","text":"Damage Penetrates #% Cold Resistance while affected by Hatred","type":"explicit"},{"id":"explicit.stat_21824003","text":"#% increased Rarity of Items Dropped by Enemies killed with a Critical Strike","type":"explicit"},{"id":"explicit.stat_1316646496","text":"Socketed Gems are Supported by Level # Cast While Channelling","type":"explicit"},{"id":"explicit.stat_608963131","text":"Gain Her Embrace for # seconds when you Ignite an Enemy","type":"explicit"},{"id":"explicit.stat_1866211373","text":"Consecrated Ground created during Effect applies #% increased Damage taken to Enemies","type":"explicit"},{"id":"explicit.stat_2554328719","text":"#% chance to Trigger Level 20 Tornado when you gain Avian\u0027s Might or Avian\u0027s Flight","type":"explicit"},{"id":"explicit.stat_2831391506","text":"Gain #% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity","type":"explicit"},{"id":"explicit.stat_1517357911","text":"Grants Level # Summon Doedre\u0027s Effigy Skill\nSocketed Curses are Triggered by Doedre\u0027s Effigy when Summoned\nSocketed Curses ignore Curse Limit","type":"explicit"},{"id":"explicit.stat_3303114033","text":"#% reduced Cold Damage taken","type":"explicit"},{"id":"explicit.stat_1078455967","text":"# to Level of all Cold Skill Gems","type":"explicit"},{"id":"explicit.stat_3885409671","text":"#% of Fire Damage Leeched as Energy Shield","type":"explicit"},{"id":"explicit.stat_1345659139","text":"#% increased Critical Strike Chance against Poisoned Enemies","type":"explicit"},{"id":"explicit.stat_1535051459","text":"#% to Critical Strike Chance against Enemies on Consecrated Ground during Effect","type":"explicit"},{"id":"explicit.stat_1264919148","text":"Skills supported by Unleash have # to maximum number of Seals","type":"explicit"},{"id":"explicit.stat_1085446536","text":"Adds # Small Passive Skills which grant nothing","type":"explicit"},{"id":"explicit.stat_3954735777","text":"#% chance to Poison on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_2236460050","text":"Gems Socketed in Blue Sockets gain #% increased Experience","type":"explicit"},{"id":"explicit.stat_2388362438","text":"With a Ghastly Eye Jewel Socketed, Minions have \u002B# to Accuracy Rating","type":"explicit"},{"id":"explicit.stat_1939452467","text":"#% of Cold Damage Leeched as Energy Shield","type":"explicit"},{"id":"explicit.stat_3686780108","text":"#% increased Aspect of the Spider Area of Effect","type":"explicit"},{"id":"explicit.stat_4139135963","text":"Curse Enemies with Temporal Chains on Hit","type":"explicit"},{"id":"explicit.stat_3241234878","text":"Left ring slot: Regenerate # Mana per Second","type":"explicit"},{"id":"explicit.stat_3192966873","text":"Purity of Ice has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_3245481061","text":"Critical Strikes deal no Damage","type":"explicit"},{"id":"explicit.stat_1336164384","text":"Cannot Leech","type":"explicit"},{"id":"explicit.stat_1302700515","text":"Attack Skills gain #% of Physical Damage as Extra Fire Damage per Socketed Red Gem","type":"explicit"},{"id":"explicit.stat_3242537102","text":"You have Vaal Pact while all Socketed Gems are Red","type":"explicit"},{"id":"explicit.stat_467806158","text":"#% increased Spell Damage if you\u0027ve dealt a Critical Strike in the past 8 seconds","type":"explicit"},{"id":"explicit.stat_493812998","text":"# to Level of all Intelligence Skill Gems","type":"explicit"},{"id":"explicit.stat_2312747856","text":"#% of Fire Damage Leeched as Life while affected by Anger","type":"explicit"},{"id":"explicit.stat_146924886","text":"# to Level of all Dexterity Skill Gems","type":"explicit"},{"id":"explicit.stat_1138742368","text":"Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value","type":"explicit"},{"id":"explicit.stat_1896269067","text":"Deal no Chaos Damage","type":"explicit"},{"id":"explicit.stat_3519807287","text":"Increases and Reductions to Light Radius also apply to Damage","type":"explicit"},{"id":"explicit.stat_4137521191","text":"#% increased Attack Speed if you\u0027ve been Hit Recently","type":"explicit"},{"id":"explicit.stat_417509375","text":"Right ring slot: # to maximum Mana","type":"explicit"},{"id":"explicit.stat_806698863","text":"Consecrated Ground created by this Flask has Tripled Radius","type":"explicit"},{"id":"explicit.stat_2228913626","text":"Skills used by Mines have #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_1170556324","text":"With at least 40 Dexterity in Radius, Galvanic Arrow deals #% increased Area Damage","type":"explicit"},{"id":"explicit.stat_2611023406","text":"#% increased Area of Effect per 50 Strength","type":"explicit"},{"id":"explicit.stat_4015918489","text":"Socketed Gems are Supported by Level # Power Charge On Critical Strike","type":"explicit"},{"id":"explicit.stat_3127641775","text":"Flasks apply to your Raised Zombies and Spectres","type":"explicit"},{"id":"explicit.stat_141810208","text":"#% of Attack Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_150668988","text":"# to Level of Socketed Trap or Mine Gems","type":"explicit"},{"id":"explicit.stat_512740886","text":"#% more Elemental Damage taken per Raised Zombie","type":"explicit"},{"id":"explicit.stat_2736708072","text":"#% to Damage over Time Multiplier while affected by Malevolence","type":"explicit"},{"id":"explicit.stat_1753916791","text":"Projectiles from Attacks have #% chance to Maim on Hit while\nyou have a Bestial Minion","type":"explicit"},{"id":"explicit.stat_2249211872","text":"#% increased Lightning Resistance","type":"explicit"},{"id":"explicit.stat_3360430812","text":"Rhoa Feather Lure","type":"explicit"},{"id":"explicit.stat_619213329","text":"# to Level of all Physical Skill Gems","type":"explicit"},{"id":"explicit.stat_1773891268","text":"Enemies have #% reduced Evasion if you have Hit them Recently","type":"explicit"},{"id":"explicit.stat_3231424461","text":"Enemies affected by your Spider\u0027s Webs deal #% reduced Damage","type":"explicit"},{"id":"explicit.stat_1536266147","text":"#% chance to gain an Endurance Charge when you Hit a Bleeding Enemy","type":"explicit"},{"id":"explicit.stat_1817023621","text":"#% to Critical Strike Multiplier while affected by Precision","type":"explicit"},{"id":"explicit.stat_117667746","text":"#% increased Mine Duration","type":"explicit"},{"id":"explicit.stat_785655723","text":"Enemies affected by your Spider\u0027s Webs have #% to All Resistances","type":"explicit"},{"id":"explicit.stat_1649099067","text":"# Life gained for each Blinded Enemy Hit by this Weapon","type":"explicit"},{"id":"explicit.stat_1330109706","text":"Regenerate # Energy Shield per second","type":"explicit"},{"id":"explicit.stat_1147690586","text":"# to Level of all Lightning Skill Gems","type":"explicit"},{"id":"explicit.stat_762154651","text":"#% chance for Energy Shield Recharge to start when you Block","type":"explicit"},{"id":"explicit.stat_3788235244","text":"Area has a #% chance to contain Cadiro Perandus","type":"explicit"},{"id":"explicit.stat_654274615","text":"Curse Enemies with Flammability on Hit","type":"explicit"},{"id":"explicit.stat_4118987751","text":"#% increased Maximum total Recovery per second from Life Leech","type":"explicit"},{"id":"explicit.stat_3597737983","text":"#% increased Attack and Movement Speed while you have a Bestial Minion","type":"explicit"},{"id":"explicit.stat_3321235265","text":"Grants Level # Gluttony of Elements Skill","type":"explicit"},{"id":"explicit.stat_979973117","text":"Grants Level # Smite Skill","type":"explicit"},{"id":"explicit.stat_59547568","text":"Melee Movement Skills have #% chance to Fortify on Hit","type":"explicit"},{"id":"explicit.stat_545408899","text":"Sacrifice #% of your Life when you Use or Trigger a Spell Skill","type":"explicit"},{"id":"explicit.stat_4268822436","text":"Tormented Spirits drop 1 additional Rare Item","type":"explicit"},{"id":"explicit.stat_90597215","text":"Your Hits can\u0027t be Evaded by Blinded Enemies","type":"explicit"},{"id":"explicit.stat_3476327198","text":"#% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes","type":"explicit"},{"id":"explicit.stat_383557755","text":"Acrobatics","type":"explicit"},{"id":"explicit.stat_3802667447","text":"#% increased Quantity of Fish Caught","type":"explicit"},{"id":"explicit.stat_979288792","text":"Enemies inflict Elemental Ailments on you instead of nearby Allies","type":"explicit"},{"id":"explicit.stat_4252311791","text":"#% increased Cold Resistance","type":"explicit"},{"id":"explicit.stat_3491815140","text":"#% increased Spell Damage per 100 Player Maximum Life","type":"explicit"},{"id":"explicit.stat_1711683262","text":"Non-critical strikes deal #% Damage","type":"explicit"},{"id":"explicit.stat_1114411822","text":"Projectiles from Attacks have #% chance to Poison on Hit while\nyou have a Bestial Minion","type":"explicit"},{"id":"explicit.stat_242822230","text":"Adds #-# Physical Damage to Attacks while you have a Bestial Minion","type":"explicit"},{"id":"explicit.stat_4199402748","text":"#% increased Chill Duration on Enemies when in Off Hand","type":"explicit"},{"id":"explicit.stat_3462132936","text":"When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy","type":"explicit"},{"id":"explicit.stat_3184880507","text":"Gain Unholy Might on block for # seconds","type":"explicit"},{"id":"explicit.stat_1464115829","text":"If you\u0027ve Warcried Recently, you and nearby allies have #% increased Attack, Cast and Movement Speed","type":"explicit"},{"id":"explicit.stat_1890969167","text":"Players have no Life or Mana Regeneration","type":"explicit"},{"id":"explicit.stat_4007740198","text":"Your Shocks can increase Damage taken by up to a maximum of #%","type":"explicit"},{"id":"explicit.stat_920385757","text":"# to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped","type":"explicit"},{"id":"explicit.stat_4270089231","text":"# to maximum Energy Shield per 100 Reserved Life","type":"explicit"},{"id":"explicit.stat_956384511","text":"#% to Critical Strike Multiplier per 1% Chance to Block Attack Damage","type":"explicit"},{"id":"explicit.stat_3366426512","text":"Minions convert #% of Physical Damage to Lightning Damage per Blue Socket","type":"explicit"},{"id":"explicit.stat_3100457893","text":"Gain Immunity to Physical Damage for # second on Rampage","type":"explicit"},{"id":"explicit.stat_2152491486","text":"Adds #-# Chaos Damage to Attacks while you have a Bestial Minion","type":"explicit"},{"id":"explicit.stat_548721233","text":"Minions Leech #% of Damage as Life against Poisoned Enemies","type":"explicit"},{"id":"explicit.stat_1244003614","text":"Adds # to # Physical Damage against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_2939409392","text":"Minions have #% chance to Blind Enemies on hit","type":"explicit"},{"id":"explicit.stat_3020069394","text":"Found Magic Items drop Identified","type":"explicit"},{"id":"explicit.stat_4006301249","text":"Socketed Minion Gems are Supported by Level # Life Leech","type":"explicit"},{"id":"explicit.stat_3191123893","text":"#% increased effect of Modifiers on non-unique Maps","type":"explicit"},{"id":"explicit.stat_3451043685","text":"Triggers Level # Reflection when Equipped","type":"explicit"},{"id":"explicit.stat_2684385509","text":"Minions cannot be Blinded","type":"explicit"},{"id":"explicit.stat_3896241826","text":"Hits against Nearby Enemies have #% increased Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_599749213","text":"# to Level of all Fire Skill Gems","type":"explicit"},{"id":"explicit.stat_2054257693","text":"#% chance to inflict Bleeding on Critical Strike with Attacks","type":"explicit"},{"id":"explicit.stat_627889781","text":"Removes Elemental Ailments on Rampage","type":"explicit"},{"id":"explicit.stat_2602585351","text":"Triggers Level # Elemental Aegis when Equipped","type":"explicit"},{"id":"explicit.stat_737702863","text":"Grants all bonuses of Unallocated Small Passive Skills in Radius","type":"explicit"},{"id":"explicit.stat_3173052379","text":"Ignited Enemies you hit are destroyed on Kill","type":"explicit"},{"id":"explicit.stat_1822142649","text":"#% increased Projectile Attack Damage while you have at least 200 Dexterity","type":"explicit"},{"id":"explicit.stat_2636403786","text":"Projectiles Pierce all Targets while you have Phasing","type":"explicit"},{"id":"explicit.stat_4266201818","text":"Poison Cursed Enemies on hit","type":"explicit"},{"id":"explicit.stat_1680060098","text":"#% increased Fire Resistance","type":"explicit"},{"id":"explicit.stat_2373079502","text":"Cold Skills have #% chance to Poison on Hit","type":"explicit"},{"id":"explicit.stat_2287264161","text":"Socketed Gems are Supported by Level # Arcane Surge","type":"explicit"},{"id":"explicit.stat_2584264074","text":"You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently","type":"explicit"},{"id":"explicit.stat_3527458221","text":"#% to Critical Strike Multiplier if you have Blocked Recently","type":"explicit"},{"id":"explicit.stat_1658498488","text":"Corrupted Blood cannot be inflicted on you","type":"explicit"},{"id":"explicit.stat_4194900521","text":"#% increased Damage with Hits against Shocked Enemies","type":"explicit"},{"id":"explicit.stat_3827349913","text":"#% increased Global Armour while you have no Energy Shield","type":"explicit"},{"id":"explicit.stat_1820083363","text":"Manifest Dancing Dervish also manifests a copy of Dancing Dervish","type":"explicit"},{"id":"explicit.stat_325204898","text":"Allocated Small Passive Skills in Radius grant nothing","type":"explicit"},{"id":"explicit.stat_1431402553","text":"Gain #% of Physical Damage as Extra Fire Damage per 1 Rage","type":"explicit"},{"id":"explicit.stat_3997368968","text":"# to maximum Divine Charges","type":"explicit"},{"id":"explicit.stat_3951269079","text":"Your Raised Zombies count as corpses","type":"explicit"},{"id":"explicit.stat_847744351","text":"Non-Aura Curses you inflict are not removed from Dying Enemies","type":"explicit"},{"id":"explicit.stat_2448279015","text":"#% increased Area of Effect per Endurance Charge","type":"explicit"},{"id":"explicit.stat_1509756274","text":"Enemies near corpses affected by your Curses are Blinded\nEnemies Killed near corpses affected by your Curses explode, dealing\n#% of their Life as Physical Damage","type":"explicit"},{"id":"explicit.stat_1177959871","text":"Nearby Enemies cannot deal Critical Strikes","type":"explicit"},{"id":"explicit.stat_1497601437","text":"Left ring slot: # to maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_108334292","text":"#% chance to gain a Divine Charge on Hit","type":"explicit"},{"id":"explicit.stat_2445618239","text":"# to Total Mana Cost of Skills while affected by Clarity","type":"explicit"},{"id":"explicit.stat_1356468153","text":"Nearby Allies\u0027 Action Speed cannot be modified to below base value","type":"explicit"},{"id":"explicit.stat_1285430327","text":"Purity of Lightning has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_902747843","text":"#% increased Damage per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_3422445312","text":"Monsters from Beyond have #% more Quantity and Rarity of Dropped Items","type":"explicit"},{"id":"explicit.stat_1174243390","text":"You gain Divinity for # seconds on reaching maximum Divine Charges\nLose all Divine Charges when you gain Divinity","type":"explicit"},{"id":"explicit.stat_16924183","text":"Raise Zombie does not require a corpse","type":"explicit"},{"id":"explicit.stat_2916634441","text":"#% increased Maximum total Recovery per second from Life Leech","type":"explicit"},{"id":"explicit.stat_4272453892","text":"# Strength and Intelligence Requirement","type":"explicit"},{"id":"explicit.stat_2424717327","text":"Fire Skills have #% chance to Poison on Hit","type":"explicit"},{"id":"explicit.stat_251446805","text":"Socketed Gems are Supported by Level # Iron Grip","type":"explicit"},{"id":"explicit.stat_1604984482","text":"Your Lightning Damage can Poison","type":"explicit"},{"id":"explicit.stat_1064477264","text":"#% increased Damage if you\u0027ve Frozen an Enemy Recently","type":"explicit"},{"id":"explicit.stat_3970432307","text":"Grants Level # Purity of Fire Skill","type":"explicit"},{"id":"explicit.stat_1985969957","text":"Your Fire Damage can Poison","type":"explicit"},{"id":"explicit.stat_3251948367","text":"#% chance to Trigger Commandment of Inferno on Critical Strike","type":"explicit"},{"id":"explicit.stat_578121324","text":"#% increased Critical Strike Chance while you have at least 200 Intelligence","type":"explicit"},{"id":"explicit.stat_1657549833","text":"#% chance to gain an Endurance Charge when you Taunt an Enemy","type":"explicit"},{"id":"explicit.stat_3169825297","text":"Nearby Enemies have #% reduced Stun and Block Recovery","type":"explicit"},{"id":"explicit.stat_4291434923","text":"1 Added Passive Skill is Mender\u0027s Wellspring","type":"explicit"},{"id":"explicit.stat_2614654450","text":"#% increased Global Physical Damage while Frozen","type":"explicit"},{"id":"explicit.stat_4249521944","text":"#% increased Spell Damage per 16 Strength","type":"explicit"},{"id":"explicit.stat_678245679","text":"#% reduced Soul Cost of Vaal Skills","type":"explicit"},{"id":"explicit.stat_1401233515","text":"Talismans found in this Area are Rare","type":"explicit"},{"id":"explicit.stat_550012797","text":"Area contains # additional Animated Weapon Packs","type":"explicit"},{"id":"explicit.stat_2889601846","text":"#% of Lightning Damage is Leeched as Mana while affected by Wrath","type":"explicit"},{"id":"explicit.stat_1043982313","text":"Gain 1 Rage on Critical Hit with attacks, no more than once every # seconds","type":"explicit"},{"id":"explicit.stat_1871938116","text":"You have Onslaught while on Low Life","type":"explicit"},{"id":"explicit.stat_3560379096","text":"Area is inhabited by Redblade Warbands","type":"explicit"},{"id":"explicit.stat_1011863394","text":"Impales you inflict last # additional Hits while using Pride","type":"explicit"},{"id":"explicit.stat_949718413","text":"Lightning Skills have #% chance to Poison on Hit","type":"explicit"},{"id":"explicit.stat_3461563650","text":"When used in the Synthesiser, the new item will have an additional Herald Modifier","type":"explicit"},{"id":"explicit.stat_778036553","text":"Vaal Skills have #% increased Critical Strike Chance during effect","type":"explicit"},{"id":"explicit.stat_3392890360","text":"Damage Penetrates #% Elemental Resistances during any Flask Effect","type":"explicit"},{"id":"explicit.stat_3931143552","text":"Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Attack Damage at #% of its value","type":"explicit"},{"id":"explicit.stat_1722463112","text":"Nearby Allies have #% increased Item Rarity","type":"explicit"},{"id":"explicit.stat_1748657990","text":"Damage Penetrates #% Fire Resistance against Blinded Enemies","type":"explicit"},{"id":"explicit.stat_445906009","text":"#% chance to lose a Frenzy Charge when you use a Travel Skill","type":"explicit"},{"id":"explicit.stat_2810286377","text":"Area contains an additional pack with a Rare monster","type":"explicit"},{"id":"explicit.stat_3936926420","text":"Removes Bleeding when you use a Warcry","type":"explicit"},{"id":"explicit.stat_3322709337","text":"Your Hits inflict Decay, dealing 500 Chaos Damage per second for 8 seconds","type":"explicit"},{"id":"explicit.stat_3545269928","text":"#% increased Effect of Elusive on you per Power Charge","type":"explicit"},{"id":"explicit.stat_3302736916","text":"#% chance to Trigger a Socketed Spell when you Attack with a Bow","type":"explicit"},{"id":"explicit.stat_1681904129","text":"Socketed Gems have #% Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_2238831336","text":"Your Maximum Frenzy Charges is equal to your Maximum Power Charges","type":"explicit"},{"id":"explicit.stat_1560540713","text":"Nearby Allies have Culling Strike","type":"explicit"},{"id":"explicit.stat_798853218","text":"You cannot be Shocked while Frozen","type":"explicit"},{"id":"explicit.stat_2388574377","text":"#% to maximum Chance to Block Spell Damage","type":"explicit"},{"id":"explicit.stat_1840985759","text":"#% increased Area of Effect for Attacks","type":"explicit"},{"id":"explicit.stat_1726444796","text":"#% chance to Curse non-Cursed Enemies with a random Curse on Hit","type":"explicit"},{"id":"explicit.stat_1633583023","text":"Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant Chance to Dodge Attack Hits at #% of its value","type":"explicit"},{"id":"explicit.stat_1819086604","text":"#% chance to lose a Power Charge when you gain Elusive","type":"explicit"},{"id":"explicit.stat_3083201633","text":"#% increased Cooldown Recovery of Travel Skills per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_1904581068","text":"1 Added Passive Skill is Force Multiplier","type":"explicit"},{"id":"explicit.stat_1431238626","text":"#% of Physical Damage from Hits with this Weapon is Converted to a random Element","type":"explicit"},{"id":"explicit.stat_121436064","text":"#% of Lightning Damage is Leeched as Energy Shield while affected by Wrath","type":"explicit"},{"id":"explicit.stat_3945147290","text":"#% chance to gain a Power Charge when you Block","type":"explicit"},{"id":"explicit.stat_4058504226","text":"Projectiles from Attacks have #% chance to inflict Bleeding on Hit while\nyou have a Bestial Minion","type":"explicit"},{"id":"explicit.stat_3980924189","text":"#% to maximum Chance to Dodge Spell Hits","type":"explicit"},{"id":"explicit.stat_1080855680","text":"Rogue Exiles deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_399295164","text":"Rogue Exiles have #% increased Attack, Cast and Movement Speed","type":"explicit"},{"id":"explicit.stat_931560398","text":"Glows while in an Area containing a Unique Fish","type":"explicit"},{"id":"explicit.stat_3629143471","text":"Damage from Enemies Hitting you is Unlucky while you are on Full Life","type":"explicit"},{"id":"explicit.stat_3757930834","text":"Monsters have #% chance to Avoid being Shocked","type":"explicit"},{"id":"explicit.stat_2008953542","text":"Rogue Exiles have #% more Rarity of Items Dropped","type":"explicit"},{"id":"explicit.stat_2612056840","text":"#% increased Spell Damage per 16 Dexterity","type":"explicit"},{"id":"explicit.stat_2056575682","text":"# to maximum number of Summoned Holy Relics","type":"explicit"},{"id":"explicit.stat_1583498502","text":"Summoned Holy Relics have #% reduced Cooldown Recovery Speed","type":"explicit"},{"id":"explicit.stat_2668070396","text":"Trigger Level # Shock Ground when Hit","type":"explicit"},{"id":"explicit.stat_121093551","text":"Warbands have #% more Quantity of Items Dropped","type":"explicit"},{"id":"explicit.stat_751847284","text":"Warbands have #% more Rarity of Items Dropped","type":"explicit"},{"id":"explicit.stat_1263384098","text":"Traps from Socketed Skills create a Smoke Cloud when triggered","type":"explicit"},{"id":"explicit.stat_3944525413","text":"1 Added Passive Skill is Feed the Fury","type":"explicit"},{"id":"explicit.stat_1032751668","text":"You have Vaal Pact if you\u0027ve dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_3547189490","text":"Nearby Enemies grant #% increased Flask Charges","type":"explicit"},{"id":"explicit.stat_3861913659","text":"#% of Damage Leeched as Life against Cursed Enemies","type":"explicit"},{"id":"explicit.stat_4193390599","text":"Grants Level # Purity of Ice Skill","type":"explicit"},{"id":"explicit.stat_3128318472","text":"You can only deal Damage with this Weapon or Ignite","type":"explicit"},{"id":"explicit.stat_3941376120","text":"Players have a #% chance when they Kill a Rare Monster to gain 1 of its Modifiers for 20 seconds","type":"explicit"},{"id":"explicit.stat_2367560235","text":"#% chance to Dodge Attack and Spell Hits per 500 Maximum Mana, up to 20%","type":"explicit"},{"id":"explicit.stat_3977907993","text":"Adds # to # Fire Damage to Hits with this Weapon against Blinded Enemies","type":"explicit"},{"id":"explicit.stat_763311546","text":"Fire Resistance is #%","type":"explicit"},{"id":"explicit.stat_2930706364","text":"Permanently Intimidate Enemies on Block","type":"explicit"},{"id":"explicit.stat_2936435999","text":"Lose #% of Mana per Second","type":"explicit"},{"id":"explicit.stat_125312907","text":"Triggers Level # Blinding Aura when Equipped","type":"explicit"},{"id":"explicit.stat_3148418088","text":"Attacks with this Weapon have #% chance to inflict Bleeding against Ignited Enemies","type":"explicit"},{"id":"explicit.stat_2453554491","text":"Attacks with this Weapon deal # to # added Fire Damage to Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_2202639361","text":"Attacks with this Weapon deal # to # added Physical Damage to Ignited Enemies","type":"explicit"},{"id":"explicit.stat_1092546321","text":"#% increased Recovery rate of Life and Energy Shield","type":"explicit"},{"id":"explicit.stat_1489905076","text":"Allies\u0027 Aura Buffs do not affect you","type":"explicit"},{"id":"explicit.stat_3550460467","text":"Enemies on Fungal Ground you Kill have #% chance to Explode, dealing 5% of their Life as Chaos Damage","type":"explicit"},{"id":"explicit.stat_3089506271","text":"Strongboxes each contain an additional random Rare Item","type":"explicit"},{"id":"explicit.stat_799872465","text":"You have Fungal Ground around you while stationary","type":"explicit"},{"id":"explicit.stat_411986876","text":"Increases and Reductions to Light Radius also apply to Accuracy","type":"explicit"},{"id":"explicit.stat_2339012908","text":"# to Level of all Strength Skill Gems","type":"explicit"},{"id":"explicit.stat_496075050","text":"Cold Resistance is #%","type":"explicit"},{"id":"explicit.stat_161058250","text":"Gain Soul Eater for # seconds when you use a Vaal Skill","type":"explicit"},{"id":"explicit.stat_2118664144","text":"1 Added Passive Skill is Mage Hunter","type":"explicit"},{"id":"explicit.stat_1088949570","text":"1 Added Passive Skill is Stoic Focus","type":"explicit"},{"id":"explicit.stat_1335713735","text":"Monsters Imprisoned around Essences in Area are Magic","type":"explicit"},{"id":"explicit.stat_3822878124","text":"Grants Level # Purity of Lightning Skill","type":"explicit"},{"id":"explicit.stat_581013336","text":"Area contains an additional Magic Monster pack","type":"explicit"},{"id":"explicit.stat_2947215268","text":"#% increased Damage during any Flask Effect","type":"explicit"},{"id":"explicit.stat_2016708976","text":"#% to Quality","type":"explicit"},{"id":"explicit.stat_927817294","text":"Raised Zombies have #% increased maximum Life","type":"explicit"},{"id":"explicit.stat_1064067689","text":"# Mana gained on Kill per Level","type":"explicit"},{"id":"explicit.stat_294153754","text":"# Energy Shield gained on Kill per Level","type":"explicit"},{"id":"explicit.stat_3679287686","text":"Monsters with Silver Coins drop an additional Silver Coin","type":"explicit"},{"id":"explicit.stat_3530865840","text":"Lose a Power Charge each second if you have not Detonated Mines Recently","type":"explicit"},{"id":"explicit.stat_244825991","text":"Nearby Allies have Fortify","type":"explicit"},{"id":"explicit.stat_1819739544","text":"Monsters initially carrying a Talisman drop an additional Rare Item","type":"explicit"},{"id":"explicit.stat_3112863846","text":"An additional Curse can be applied to you","type":"explicit"},{"id":"explicit.stat_3809896400","text":"Unaffected by Curses","type":"explicit"},{"id":"explicit.stat_2094646950","text":"#% increased Elemental Damage per Level","type":"explicit"},{"id":"explicit.stat_4228691877","text":"# Life gained on Kill per Level","type":"explicit"},{"id":"explicit.stat_1429385513","text":"# Armour per Summoned Totem","type":"explicit"},{"id":"explicit.stat_1654414582","text":"You cannot be Cursed with Silence","type":"explicit"},{"id":"explicit.stat_952897668","text":"Regenerate # Life per second while Ignited","type":"explicit"},{"id":"explicit.stat_1061545609","text":"Players have #% increased Attack, Cast and Movement Speed while they have Onslaught","type":"explicit"},{"id":"explicit.stat_4077883829","text":"A Monster in this Area will summon a Unique Monster from Beyond when Slain","type":"explicit"},{"id":"explicit.stat_3051860083","text":"Monsters have #% increased chance to spawn a Beyond Portal","type":"explicit"},{"id":"explicit.stat_3152714748","text":"Nearby Allies have #% to Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_3195625581","text":"Creates Consecrated Ground on Critical Strike","type":"explicit"},{"id":"explicit.stat_1984366275","text":"Invasion Bosses have #% more Quantity and Rarity of dropped Items","type":"explicit"},{"id":"explicit.stat_2057712935","text":"Modifiers to number of Projectiles instead apply\nto the number of targets Projectiles Split towards","type":"explicit"},{"id":"explicit.stat_3738127245","text":"Monsters guarding Shrines are Magic","type":"explicit"},{"id":"explicit.stat_3539175001","text":"1 Added Passive Skill is Savour the Moment","type":"explicit"},{"id":"explicit.stat_897996059","text":"Adds # to # Cold Damage to Spells while no Life is Reserved","type":"explicit"},{"id":"explicit.stat_1942151132","text":"Lightning Resistance is #%","type":"explicit"},{"id":"explicit.stat_3712145967","text":"Gain a Void Charge every # seconds","type":"explicit"},{"id":"explicit.stat_2955966707","text":"The Effect of Chill on you is reversed","type":"explicit"},{"id":"explicit.stat_728246008","text":"Nova Spells deal 30% less Damage to Players\nNova Spells Cast at the targeted location instead of around you","type":"explicit"},{"id":"explicit.stat_1719423857","text":"# to Level of Socketed Intelligence Gems","type":"explicit"},{"id":"explicit.stat_3470457445","text":"Chaos Damage can Ignite, Chill and Shock","type":"explicit"},{"id":"explicit.stat_180240697","text":"Minions have #% reduced Flask Charges used","type":"explicit"},{"id":"explicit.stat_985999215","text":"Adds # to # Lightning Damage to Spells while no Life is Reserved","type":"explicit"},{"id":"explicit.stat_4212372504","text":"Unaffected by Temporal Chains","type":"explicit"},{"id":"explicit.stat_1827636152","text":"Your Minions use your Flasks when summoned","type":"explicit"},{"id":"explicit.stat_1722821275","text":"1 Added Passive Skill is Peak Vigour","type":"explicit"},{"id":"explicit.stat_531937370","text":"Unique Monsters from Beyond have a #% chance to Summon\nanother Unique Monster from Beyond when Slain","type":"explicit"},{"id":"explicit.stat_2800333900","text":"Talismans found in this Area are 1 Tier higher","type":"explicit"},{"id":"explicit.stat_833719670","text":"Adds # to # Fire Damage to Spells while no Life is Reserved","type":"explicit"},{"id":"explicit.stat_1029319062","text":"#% of Fire Damage from Hits taken as Physical Damage","type":"explicit"},{"id":"explicit.stat_679682964","text":"Imprisoned Monsters have an additional Essence","type":"explicit"},{"id":"explicit.stat_690707482","text":"#% increased Damage with Ailments","type":"explicit"},{"id":"explicit.stat_3005800306","text":"Area contains a Stone Circle","type":"explicit"},{"id":"explicit.stat_1866911844","text":"Socketed Gems are Supported by Level # Inspiration","type":"explicit"},{"id":"explicit.stat_1224928411","text":"Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Spell Damage at #% of its value","type":"explicit"},{"id":"explicit.stat_668145148","text":"Nearby Enemies have #% to all Resistances","type":"explicit"},{"id":"explicit.stat_3097206473","text":"Rare Breach Monsters drop an additional Splinter","type":"explicit"},{"id":"explicit.stat_2788729902","text":"Socketed Gems Chain # additional times","type":"explicit"},{"id":"explicit.stat_2665149933","text":"You and Nearby Allies have # to # added Cold Damage per Green Socket","type":"explicit"},{"id":"explicit.stat_2978408106","text":"Area contains a Voidspawn of Abaxoth Bloodline Pack","type":"explicit"},{"id":"explicit.stat_176085824","text":"If you have Blocked Recently, you and nearby Allies Regenerate #% of Life per second","type":"explicit"},{"id":"explicit.stat_1932583315","text":"Minions have #% increased Flask Effect Duration","type":"explicit"},{"id":"explicit.stat_3209835461","text":"Invasion Bosses are guarded by a Magic Pack","type":"explicit"},{"id":"explicit.stat_1406039617","text":"#% increased Rampage Streak Duration","type":"explicit"},{"id":"explicit.stat_760855772","text":"#% increased Quantity of Items found when on Low Life","type":"explicit"},{"id":"explicit.stat_1210760818","text":"Breaches have #% increased Monster density","type":"explicit"},{"id":"explicit.stat_3774108776","text":"#% increased Movement Speed per Power Charge","type":"explicit"},{"id":"explicit.stat_987588151","text":"#% increased Attack and Cast Speed per Power Charge","type":"explicit"},{"id":"explicit.stat_1623397857","text":"You take Chaos Damage instead of Physical Damage from Bleeding","type":"explicit"},{"id":"explicit.stat_2854183975","text":"Socketed Gems are Supported by Level # Cluster Trap","type":"explicit"},{"id":"explicit.stat_4157714333","text":"Rare Monsters from Breaches have a #% chance to Drop a Breach Ring","type":"explicit"},{"id":"explicit.stat_1666896662","text":"You and Nearby Allies have # to # added Fire Damage per Red Socket","type":"explicit"},{"id":"explicit.stat_3045094957","text":"Players with at least 50 Rampage Kills take #% reduced Damage","type":"explicit"},{"id":"explicit.stat_2812925691","text":"Trigger Level # Icicle Burst when you Kill a Frozen Enemy","type":"explicit"},{"id":"explicit.stat_2290031712","text":"Strength provides no bonus to Maximum Life","type":"explicit"},{"id":"explicit.stat_660404777","text":"#% increased Evasion Rating per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_663610248","text":"Tormented Spirits have #% increased Duration","type":"explicit"},{"id":"explicit.stat_2546599258","text":"Intelligence provides no bonus to Maximum Mana","type":"explicit"},{"id":"explicit.stat_4284915962","text":"# to Maximum Life per 2 Intelligence","type":"explicit"},{"id":"explicit.stat_1960833438","text":"Regenerate #% of Life per second per 500 Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_1037449707","text":"Strongboxes are Magic","type":"explicit"},{"id":"explicit.stat_244107556","text":"Warcry Skills\u0027 Cooldown Time is 2 seconds","type":"explicit"},{"id":"explicit.stat_2962051214","text":"An additional Currency Item drops when the first Invasion Boss is slain","type":"explicit"},{"id":"explicit.stat_4072582319","text":"Warbands in this Area have an additional Member","type":"explicit"},{"id":"explicit.stat_810166817","text":"Trigger Level # Elemental Warding when you Hit an Enemy while Cursed","type":"explicit"},{"id":"explicit.stat_196313911","text":"Hits with this Weapon deal #% increased Damage to Frozen Enemies","type":"explicit"},{"id":"explicit.stat_2299389484","text":"Area contains an additional Perandus Coffer","type":"explicit"},{"id":"explicit.stat_3095345438","text":"Hits with this Weapon deal #% increased Damage to Ignited Enemies","type":"explicit"},{"id":"explicit.stat_4169430079","text":"#% increased Maximum Life for each Corrupted Item Equipped","type":"explicit"},{"id":"explicit.stat_639595152","text":"Nearby Enemies take #% increased Elemental Damage","type":"explicit"},{"id":"explicit.stat_2489070122","text":"Has an additional Implicit Mod","type":"explicit"},{"id":"explicit.stat_3916980068","text":"#% increased Maximum Energy Shield for each Corrupted Item Equipped","type":"explicit"},{"id":"explicit.stat_2576546039","text":"Players have Onslaught while using Flasks","type":"explicit"},{"id":"explicit.stat_3387914367","text":"Area contains a Bearers of the Guardian Bloodline Pack","type":"explicit"},{"id":"explicit.stat_3808469650","text":"#% increased Minion Attack and Cast Speed per 10 Devotion","type":"explicit"},{"id":"explicit.stat_1468606528","text":"10% Chance to Trigger Level 18 Summon Spectral Wolf on Kill","type":"explicit"},{"id":"explicit.stat_3100523498","text":"#% to all Resistances for each Corrupted Item Equipped","type":"explicit"},{"id":"explicit.stat_1258679667","text":"#% increased Physical Damage while you have Resolute Technique","type":"explicit"},{"id":"explicit.stat_1532770406","text":"Perandus Chests have #% more Quantity of Items Dropped","type":"explicit"},{"id":"explicit.stat_3535403838","text":"Perandus Chests have #% more Rarity of Items Dropped","type":"explicit"},{"id":"explicit.stat_3310914132","text":"#% increased Rarity of Fish Caught","type":"explicit"},{"id":"explicit.stat_338643834","text":"Unique Boss is augmented by Player choices","type":"explicit"},{"id":"explicit.stat_3045897926","text":"Players take #% reduced Damage from Monsters from Beyond","type":"explicit"},{"id":"explicit.stat_3279574030","text":"Grants Level # Illusory Warp Skill","type":"explicit"},{"id":"explicit.stat_2189382346","text":"#% increased Energy Shield per Power Charge","type":"explicit"},{"id":"explicit.stat_2948375275","text":"#% increased Critical Strike Chance per Grand Spectrum","type":"explicit"},{"id":"explicit.stat_2119664154","text":"#% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges","type":"explicit"},{"id":"explicit.stat_1282689888","text":"Players have #% chance to Dodge Spell Hits","type":"explicit"},{"id":"explicit.stat_600723636","text":"Rogue Exiles drop # additional Currency Items","type":"explicit"},{"id":"explicit.stat_4144221848","text":"#% increased Life Recovery Rate per 10 Strength on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_1243114410","text":"#% increased Critical Strike Chance for Spells if you\u0027ve Killed Recently","type":"explicit"},{"id":"explicit.stat_1483753325","text":"#% increased Attack and Cast Speed if you\u0027ve Hit an Enemy Recently","type":"explicit"},{"id":"explicit.stat_1859937391","text":"Socketed Gems gain #% of Physical Damage as extra Lightning Damage","type":"explicit"},{"id":"explicit.stat_3563824294","text":"Players have a #% chance to gain Onslaught on Kill For 4 seconds","type":"explicit"},{"id":"explicit.stat_1416455556","text":"Players have #% increased Movement Speed","type":"explicit"},{"id":"explicit.stat_3241494164","text":"Trigger Level # Lightning Bolt when you deal a Critical Strike","type":"explicit"},{"id":"explicit.stat_4143730600","text":"Rogue Exiles drop an additional Jewel","type":"explicit"},{"id":"explicit.stat_2130441002","text":"Area contains an Uul-Netol Breach","type":"explicit"},{"id":"explicit.stat_1470894892","text":"Hits with this Weapon deal #% increased Damage to Shocked Enemies","type":"explicit"},{"id":"explicit.stat_1061631617","text":"#% Chance to Block Attack Damage per 50 Strength","type":"explicit"},{"id":"explicit.stat_3551025193","text":"Chance to Block Spell Damage is Unlucky","type":"explicit"},{"id":"explicit.stat_2071120096","text":"Your Offerings have #% increased Effect on you","type":"explicit"},{"id":"explicit.stat_86122490","text":"Players have Blood Magic","type":"explicit"},{"id":"explicit.stat_78985352","text":"#% chance to Intimidate Enemies for 4 seconds on Hit","type":"explicit"},{"id":"explicit.stat_1489997462","text":"Players have #% increased Rarity of Items Found per 15 Rampage Kills","type":"explicit"},{"id":"explicit.stat_2116250000","text":"#% increased Movement Speed per Endurance Charge","type":"explicit"},{"id":"explicit.stat_200113086","text":"Nova Spells have #% more Area of Effect","type":"explicit"},{"id":"explicit.stat_2713233613","text":"#% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges","type":"explicit"},{"id":"explicit.stat_1842038569","text":"#% increased Fishing Line Strength","type":"explicit"},{"id":"explicit.stat_3775574601","text":"#% increased Critical Strike Chance for Spells per 100 Player Maximum Life","type":"explicit"},{"id":"explicit.stat_1756017808","text":"You have Crimson Dance if you have dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_3618888098","text":"#% increased Attack and Cast Speed per Endurance Charge","type":"explicit"},{"id":"explicit.stat_710805027","text":"#% chance to gain an Endurance, Frenzy or Power Charge when any\nof your Traps are Triggered by an Enemy","type":"explicit"},{"id":"explicit.stat_1271391587","text":"Number of Perandus Coins dropped in this Area is Doubled","type":"explicit"},{"id":"explicit.stat_3389184522","text":"Life and Mana Leech from Critical Strikes are instant","type":"explicit"},{"id":"explicit.stat_301214136","text":"#% to maximum Chance to Dodge Attack Hits","type":"explicit"},{"id":"explicit.stat_2753985507","text":"#% to Critical Strike Chance while affected by Hatred","type":"explicit"},{"id":"explicit.stat_1550221644","text":"#% reduced Fishing Pool Consumption","type":"explicit"},{"id":"explicit.stat_4179663748","text":"#% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy","type":"explicit"},{"id":"explicit.stat_1945607273","text":"If this Area contains any Unique Monsters, one is Possessed","type":"explicit"},{"id":"explicit.stat_995332031","text":"Socketed Gems are Supported by Level # Minion Speed","type":"explicit"},{"id":"explicit.stat_1447080724","text":"#% increased Armour per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2636728487","text":"You always Ignite while Burning","type":"explicit"},{"id":"explicit.stat_3689836025","text":"Perandus Monsters have a #% chance to drop Perandus Coins","type":"explicit"},{"id":"explicit.stat_470688636","text":"Triggers Level 20 Spectral Spirits when Equipped","type":"explicit"},{"id":"explicit.stat_407139870","text":"# to Level of Socketed Trap Gems","type":"explicit"},{"id":"explicit.stat_2420786978","text":"Skills which throw Traps have Blood Magic","type":"explicit"},{"id":"explicit.stat_2305944553","text":"Shrines drop a Currency Item when used","type":"explicit"},{"id":"explicit.stat_648923098","text":"The first Strongbox Opened in this Area is guarded by an additional Rare Monster","type":"explicit"},{"id":"explicit.stat_200299748","text":"When a Bloodline Pack is Slain, it drops a Currency Item","type":"explicit"},{"id":"explicit.stat_807450540","text":"#% of Damage dealt by your Mines is Leeched to you as Life","type":"explicit"},{"id":"explicit.stat_1073314277","text":"#% increased Spell Damage per 10 Strength","type":"explicit"},{"id":"explicit.stat_4222635921","text":"1 Added Passive Skill is Savage Response","type":"explicit"},{"id":"explicit.stat_1834588299","text":"Gain # Mana when you hit a Taunted Enemy","type":"explicit"},{"id":"explicit.stat_1594755360","text":"Shrines grant a random additional Shrine Effect","type":"explicit"},{"id":"explicit.stat_1621470436","text":"#% chance to Cast Level 20 Fire Burst on Hit","type":"explicit"},{"id":"explicit.stat_435737693","text":"With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds","type":"explicit"},{"id":"explicit.stat_2418322751","text":"#% more Attack Speed","type":"explicit"},{"id":"explicit.stat_195090426","text":"Left ring slot: #% increased Mana Regeneration Rate","type":"explicit"},{"id":"explicit.stat_2304300603","text":"You count as on Low Life while you are Cursed with Vulnerability","type":"explicit"},{"id":"explicit.stat_4156715241","text":"Regenerate # Energy Shield per second if all Equipped items are Corrupted","type":"explicit"},{"id":"explicit.stat_2116087952","text":"Players are Cursed with Projectile Weakness","type":"explicit"},{"id":"explicit.stat_4040152475","text":"Hits ignore Enemy Monster Fire Resistance while you are Ignited","type":"explicit"},{"id":"explicit.stat_1506185293","text":"Attacks with this Weapon deal Double Damage","type":"explicit"},{"id":"explicit.stat_2580101523","text":"You gain Onslaught for # seconds on Killing Taunted Enemies","type":"explicit"},{"id":"explicit.stat_1436593527","text":"#% More Quantity of Items Dropped by Imprisoned Monsters","type":"explicit"},{"id":"explicit.stat_615595418","text":"Regenerate #% of Energy Shield per Second for\nevery 10 Intelligence on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_354080151","text":"Inner Conviction","type":"explicit"},{"id":"explicit.stat_3159312340","text":"Trigger Level # Contaminate when you Kill an Enemy","type":"explicit"},{"id":"explicit.stat_170497091","text":"#% increased Fishing Range","type":"explicit"},{"id":"explicit.stat_3877259945","text":"Monsters with Silver Coins drop an additional Rare Item","type":"explicit"},{"id":"explicit.stat_482341163","text":"Area contains Yama the White","type":"explicit"},{"id":"explicit.stat_2054162825","text":"Karui Stone Hook","type":"explicit"},{"id":"explicit.stat_604671218","text":"#% increased Recovery rate of Life and Energy Shield per Power Charge","type":"explicit"},{"id":"explicit.stat_2156472123","text":"Perandus Chests are guarded by additional Rare monsters","type":"explicit"},{"id":"explicit.stat_1591995797","text":"1 Added Passive Skill is Gladiator\u0027s Fortitude","type":"explicit"},{"id":"explicit.stat_329336318","text":"The first time a Player reaches # Rampage Kills in this Area, they will encounter a Powerful Monster","type":"explicit"},{"id":"explicit.stat_438351187","text":"#% chance for Kills to count twice for Rampage","type":"explicit"},{"id":"explicit.stat_3726536628","text":"Gain # Life when you Taunt an Enemy","type":"explicit"},{"id":"explicit.stat_3130378100","text":"#% more Rarity of Items Dropped by Imprisoned Monsters","type":"explicit"},{"id":"explicit.stat_1621496909","text":"1 Added Passive Skill is Pure Guile","type":"explicit"},{"id":"explicit.stat_49998574","text":"Area contains a Gemcutter\u0027s Strongbox","type":"explicit"},{"id":"explicit.stat_592020238","text":"#% increased Damage when on Full Life","type":"explicit"},{"id":"explicit.stat_712621072","text":"Imprisoned Monsters have #% reduced Action Speed","type":"explicit"},{"id":"explicit.stat_4003821677","text":"Imprisoned Monsters take #% increased Damage","type":"explicit"},{"id":"explicit.stat_2250543633","text":"Clarity Reserves no Mana","type":"explicit"},{"id":"explicit.stat_414379784","text":"#% increased Damage when you have no Energy Shield","type":"explicit"},{"id":"explicit.stat_898094766","text":"Items dropped by Rogue Exiles are fully Linked","type":"explicit"},{"id":"explicit.stat_1755438602","text":"Players take #% reduced Damage from Breach Monsters","type":"explicit"},{"id":"explicit.stat_2908391015","text":"Players deal #% increased Damage with Hits to Breach Monsters","type":"explicit"},{"id":"explicit.stat_2653164718","text":"Rogue Exiles each have a Rogue Exile ally","type":"explicit"},{"id":"explicit.stat_3266549586","text":"Rare Monsters have #% chance to drop a Rare Prismatic Ring","type":"explicit"},{"id":"explicit.stat_2257118425","text":"Vaal Pact","type":"explicit"},{"id":"explicit.stat_2308225900","text":"Purity of Lightning Reserves no Mana","type":"explicit"},{"id":"explicit.stat_2748763342","text":"Gains no Charges during effect of any Soul Ripper Flask","type":"explicit"},{"id":"explicit.stat_4147528862","text":"Vaal Skills deal #% more Damage during Effect","type":"explicit"},{"id":"explicit.stat_4272248216","text":"Ghost Reaver","type":"explicit"},{"id":"explicit.stat_438083873","text":"Vitality Reserves no Mana","type":"explicit"},{"id":"explicit.stat_607308532","text":"Strongboxes in Area have #% chance to contain an additional Vaal Orb","type":"explicit"},{"id":"explicit.stat_3031766225","text":"Players take # Chaos Damage per second","type":"explicit"},{"id":"explicit.stat_120895749","text":"# Life gained for each Ignited Enemy hit by your Attacks","type":"explicit"},{"id":"explicit.stat_637101875","text":"Monsters Fracture","type":"explicit"},{"id":"explicit.stat_433293234","text":"Minion Instability","type":"explicit"},{"id":"explicit.stat_3705740723","text":"Immune to Burning Ground, Shocked Ground and Chilled Ground","type":"explicit"},{"id":"explicit.stat_1183247801","text":"Monsters with Silver Coins drop an additional Currency Item","type":"explicit"},{"id":"explicit.stat_3574189159","text":"Elemental Overload","type":"explicit"},{"id":"explicit.stat_1471580517","text":"You can catch Exotic Fish","type":"explicit"},{"id":"explicit.stat_2309624770","text":"When a Bloodline Pack is Slain, it drops a Rare Item","type":"explicit"},{"id":"explicit.stat_1622979279","text":"Purity of Ice Reserves no Mana","type":"explicit"},{"id":"explicit.stat_1550015622","text":"#% increased Spell Damage if you\u0027ve dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_3943945975","text":"Resolute Technique","type":"explicit"},{"id":"explicit.stat_464535071","text":"#% increased Trap and Mine Throwing Speed","type":"explicit"},{"id":"explicit.stat_3190223614","text":"Rare Monsters drop an additional Rare Item","type":"explicit"},{"id":"explicit.stat_1260064327","text":"Players gain Onslaught for # seconds when they Kill a Rare Monster","type":"explicit"},{"id":"explicit.stat_2933024469","text":"Right ring slot: Projectiles from Spells cannot Fork","type":"explicit"},{"id":"explicit.stat_2266636761","text":"#% Chaos Resistance against Damage Over Time","type":"explicit"},{"id":"explicit.stat_326965591","text":"Iron Reflexes","type":"explicit"},{"id":"explicit.stat_1102362593","text":"Life and Mana Leech are instant during effect","type":"explicit"},{"id":"explicit.stat_3916799917","text":"Gain #% of Cold Damage as Extra Chaos Damage per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_2760138143","text":"Regenerate # Mana per second if all Equipped Items are Corrupted","type":"explicit"},{"id":"explicit.stat_2473016979","text":"Monsters near Shrines are Chilled","type":"explicit"},{"id":"explicit.stat_3049760680","text":"#% chance to gain Onslaught for 3 seconds when Hit","type":"explicit"},{"id":"explicit.stat_3795004497","text":"Rogue Exiles each drop a Skill Gem with Quality","type":"explicit"},{"id":"explicit.stat_2278589942","text":"Purity of Fire Reserves no Mana","type":"explicit"},{"id":"explicit.stat_1263158408","text":"Elemental Equilibrium","type":"explicit"},{"id":"explicit.stat_2047177714","text":"Items dropped by Rogue Exiles are Mirrored","type":"explicit"},{"id":"explicit.stat_707887043","text":"#% increased Critical Strike Chance per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_2606808909","text":"Arrow Dancing","type":"explicit"},{"id":"explicit.stat_719626796","text":"Strike Skills also target the previous location they were Used","type":"explicit"},{"id":"explicit.stat_1731620212","text":"Cannot gain Life during effect","type":"explicit"},{"id":"explicit.stat_1363668533","text":"1 Added Passive Skill is Wall of Muscle","type":"explicit"},{"id":"explicit.stat_2699118751","text":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Elemental Skills","type":"explicit"},{"id":"explicit.stat_1226049915","text":"#% additional Physical Damage Reduction per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_115109959","text":"Regenerate #% of Energy Shield per second while on Low Life","type":"explicit"},{"id":"explicit.stat_2471600316","text":"Area contains a Keepers of the Trove Bloodline Pack","type":"explicit"},{"id":"explicit.stat_2503479316","text":"Envy Reserves no Mana","type":"explicit"},{"id":"explicit.stat_3848992177","text":"#% increased Maximum total Recovery per second from Energy Shield Leech while affected by Zealotry","type":"explicit"},{"id":"explicit.stat_3115319277","text":"Gain #% of Lightning Damage as Extra Chaos Damage per Power Charge","type":"explicit"},{"id":"explicit.stat_2930404958","text":"Grace Reserves no Mana","type":"explicit"},{"id":"explicit.stat_3425934849","text":"Socketed Skills have #% increased Cast Speed","type":"explicit"},{"id":"explicit.stat_300702212","text":"Crimson Dance","type":"explicit"},{"id":"explicit.stat_3884309250","text":"Area contains a Tormented Embezzler","type":"explicit"},{"id":"explicit.stat_960081730","text":"Adds # to # Physical Damage","type":"explicit"},{"id":"explicit.stat_495713612","text":"#% increased Duration of Shrine Effects on Players","type":"explicit"},{"id":"explicit.stat_272791075","text":"Drops Burning Ground while moving, dealing # Fire Damage per second","type":"explicit"},{"id":"explicit.stat_3961213398","text":"Regenerate #% of Life per second per Power Charge","type":"explicit"},{"id":"explicit.stat_2911866787","text":"Grants Level # Frostblink Skill","type":"explicit"},{"id":"explicit.stat_261224780","text":"Monsters Possessed by Tormented Spirits take #% increased Damage","type":"explicit"},{"id":"explicit.stat_2189891129","text":"Anger Reserves no Mana","type":"explicit"},{"id":"explicit.stat_1874553720","text":"#% reduced Chill Duration on you","type":"explicit"},{"id":"explicit.stat_3941271999","text":"Frostblink has #% increased Duration","type":"explicit"},{"id":"explicit.stat_3856468419","text":"Adds # to # Physical Damage to Attacks against Frozen Enemies","type":"explicit"},{"id":"explicit.stat_2996332612","text":"Essences found in this Area are a higher level","type":"explicit"},{"id":"explicit.stat_1439347620","text":"#% increased Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_2449392400","text":"1 Added Passive Skill is Born of Chaos","type":"explicit"},{"id":"explicit.stat_604298782","text":"#% of Physical Attack Damage Leeched as Mana per Power Charge","type":"explicit"},{"id":"explicit.stat_3426614534","text":"Consumes Maximum Charges to use","type":"explicit"},{"id":"explicit.stat_1324450398","text":"#% chance to gain Onslaught when you use a Flask","type":"explicit"},{"id":"explicit.stat_1688834903","text":"Socketed Spells have #% reduced Mana Cost","type":"explicit"},{"id":"explicit.stat_3900181441","text":"Area contains an additional Magic Pack of Wealth","type":"explicit"},{"id":"explicit.stat_1109745356","text":"Gain #% of Fire Damage as Extra Chaos Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_768124628","text":"#% chance for Poisons inflicted with this Weapon to deal 300% more Damage","type":"explicit"},{"id":"explicit.stat_3879236300","text":"Magic Monsters are Maimed","type":"explicit"},{"id":"explicit.stat_3056215807","text":"Magic Monsters take #% increased Damage","type":"explicit"},{"id":"explicit.stat_2148784747","text":"#% Chance to Block Attack Damage per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_2589977608","text":"Area contains a Rare Monster carrying a Tier 2 Talisman","type":"explicit"},{"id":"explicit.stat_414991155","text":"#% less Animate Weapon Duration","type":"explicit"},{"id":"explicit.stat_468681962","text":"Area contains a Tormented Vaal Cultist","type":"explicit"},{"id":"explicit.stat_1994121713","text":"#% to Damage over Time Multiplier per 10 Intelligence on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_359450079","text":"Socketed Gems are Supported by Level # Greater Multiple Projectiles","type":"explicit"},{"id":"explicit.stat_3986347319","text":"#% additional Physical Damage Reduction per Power Charge","type":"explicit"},{"id":"explicit.stat_3232695173","text":"You and Nearby Allies have # to # added Chaos Damage per White Socket","type":"explicit"},{"id":"explicit.stat_3072066782","text":"Players Regenerate #% of Life per second per 25 Rampage Kills","type":"explicit"},{"id":"explicit.stat_3984519770","text":"Socketed Gems have #% chance to Ignite","type":"explicit"},{"id":"explicit.stat_1077576866","text":"Area contains a Tormented Seditionist","type":"explicit"},{"id":"explicit.stat_1105638781","text":"Area contains an additional Perandus Jewellery Box","type":"explicit"},{"id":"explicit.stat_1276918229","text":"#% reduced Lightning Damage taken","type":"explicit"},{"id":"explicit.stat_2881124988","text":"Socketed Skills have #% increased Attack Speed","type":"explicit"},{"id":"explicit.stat_1826480903","text":"Purity of Elements Reserves no Mana","type":"explicit"},{"id":"explicit.stat_627339348","text":"Adds # to # Fire Damage to Attacks against Ignited Enemies","type":"explicit"},{"id":"explicit.stat_2856326982","text":"#% Chance to Block Attack Damage per Power Charge","type":"explicit"},{"id":"explicit.stat_992435560","text":"Hits against Nearby Enemies have 50% increased Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_2547511866","text":"#% increased Critical Strike Chance per Endurance Charge","type":"explicit"},{"id":"explicit.stat_3112480888","text":"Players gain #% chance to Dodge Attack Hits while under a Shrine Effect","type":"explicit"},{"id":"explicit.stat_3643076184","text":"Tempest Effects have #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_1093704472","text":"#% chance to Avoid being Frozen, Chilled or Ignited with Her Blessing","type":"explicit"},{"id":"explicit.stat_2327728343","text":"#% chance to Blind nearby Enemies when gaining Her Blessing","type":"explicit"},{"id":"explicit.stat_1358697130","text":"Determination Reserves no Mana","type":"explicit"},{"id":"explicit.stat_2968804751","text":"#% increased Attack and Movement Speed with Her Blessing","type":"explicit"},{"id":"explicit.stat_754005431","text":"Gain #% of Sword Physical Damage as Extra Fire Damage","type":"explicit"},{"id":"explicit.stat_1391583476","text":"Hatred Reserves no Mana","type":"explicit"},{"id":"explicit.stat_776020689","text":"Loses all Charges when you enter a new area","type":"explicit"},{"id":"explicit.stat_478341845","text":"#% increased frequency of Tempest effects","type":"explicit"},{"id":"explicit.stat_1893852470","text":"#% chance to Dodge Attack Hits per Endurance Charge","type":"explicit"},{"id":"explicit.stat_4203400545","text":"#% chance to gain Her Blessing for 3 seconds when you Ignite an Enemy","type":"explicit"},{"id":"explicit.stat_442509523","text":"Invasion Bosses are Duplicated","type":"explicit"},{"id":"explicit.stat_729430714","text":"#% to Critical Strike Multiplier for Spells if you haven\u0027t Killed Recently","type":"explicit"},{"id":"explicit.stat_1773553795","text":"Warbands in the Area have an additional Support Member","type":"explicit"},{"id":"explicit.stat_1865987277","text":"Wrath Reserves no Mana","type":"explicit"},{"id":"explicit.stat_3884934810","text":"Perfect Agony","type":"explicit"},{"id":"explicit.stat_3628993863","text":"Rare Monsters are Hindered, with #% reduced Movement Speed","type":"explicit"},{"id":"explicit.stat_787958710","text":"#% to Cold Damage over Time Multiplier while affected by Malevolence","type":"explicit"},{"id":"explicit.stat_321765853","text":"# Physical Damage taken from Hits","type":"explicit"},{"id":"explicit.stat_585622486","text":"Malevolence Reserves no Mana","type":"explicit"},{"id":"explicit.stat_2355741828","text":"#% Chance to Block Attack Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_100820057","text":"\u002B# to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_370321141","text":"Area contains a Chayula Breach","type":"explicit"},{"id":"explicit.stat_2648570028","text":"Ancestral Bond","type":"explicit"},{"id":"explicit.stat_2257141320","text":"Vaal Skills deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_751322171","text":"Haste Reserves no Mana","type":"explicit"},{"id":"explicit.stat_2517911661","text":"A Strongbox in this Area is Corrupted","type":"explicit"},{"id":"explicit.stat_2449723897","text":"#% of Damage Leeched as Life for Skills used by Totems","type":"explicit"},{"id":"explicit.stat_3708588508","text":"Discipline Reserves no Mana","type":"explicit"},{"id":"explicit.stat_281949611","text":"Immune to Shock while affected by Purity of Lightning","type":"explicit"},{"id":"explicit.stat_74462130","text":"Life Recovery from Flasks also applies to Energy Shield during Flask Effect","type":"explicit"},{"id":"explicit.stat_1109343199","text":"Wicked Ward","type":"explicit"},{"id":"explicit.stat_2244724505","text":"Area contains 3 additional Magic Packs which\nhave #% increased Attack, Cast and Movement Speed, and drop #% more items","type":"explicit"},{"id":"explicit.stat_112201073","text":"#% of Damage against Shocked Enemies Leeched as Mana","type":"explicit"},{"id":"explicit.stat_593279674","text":"#% of Damage against Frozen Enemies Leeched as Life","type":"explicit"},{"id":"explicit.stat_1384838464","text":"Essences found in this Area are Corrupted","type":"explicit"},{"id":"explicit.stat_3581578643","text":"Socketed Gems are Supported by Level # Empower","type":"explicit"},{"id":"explicit.stat_2519848087","text":"#% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_3381731475","text":"Area contains an additional Fangjaw Talisman","type":"explicit"},{"id":"explicit.stat_1741242318","text":"Zealotry Reserves no Mana","type":"explicit"},{"id":"explicit.stat_1242155304","text":"Every 5 seconds, Regenerate #% of Life over one second","type":"explicit"},{"id":"explicit.stat_2270693644","text":"Area contains an additional Clutching Talisman","type":"explicit"},{"id":"explicit.stat_1415399260","text":"Area is controlled by a Warband Boss","type":"explicit"},{"id":"explicit.stat_3628411738","text":"Warbands in the Area have an additional Elite Member","type":"explicit"},{"id":"explicit.stat_279246355","text":"Area is inhabited by an additional Invasion Boss","type":"explicit"},{"id":"explicit.stat_4048158159","text":"The first time a Player reaches # Rampage Kills in this Area, 6 Currency Items will drop","type":"explicit"},{"id":"explicit.stat_3955574239","text":"Area contains an additional Perandus Treasury","type":"explicit"},{"id":"explicit.stat_341698555","text":"At least one Perandus Chest is guarded by a Unique Monster","type":"explicit"},{"id":"explicit.stat_881914531","text":"#% chance to gain a Frenzy Charge when Hit","type":"explicit"},{"id":"explicit.stat_3726585224","text":"You and Nearby Allies have # to # added Lightning Damage per Blue Socket","type":"explicit"},{"id":"explicit.stat_1959271744","text":"Area is a Maze","type":"explicit"},{"id":"explicit.stat_4080245957","text":"Runebinder","type":"explicit"},{"id":"explicit.stat_511024200","text":"#% reduced Physical Damage taken over time","type":"explicit"},{"id":"explicit.stat_2163273007","text":"#% chance to Dodge Attack Hits per Power Charge","type":"explicit"},{"id":"explicit.stat_761598374","text":"You can apply an additional Curse while at maximum Power Charges","type":"explicit"},{"id":"explicit.stat_424026624","text":"Adds # to # Physical Damage against Poisoned Enemies","type":"explicit"},{"id":"explicit.stat_1655460656","text":"Gain Vaal Souls equal to Charges Consumed when used","type":"explicit"},{"id":"explicit.stat_308309328","text":"#% chance to Recover 10% of Mana when you use a Skill","type":"explicit"},{"id":"explicit.stat_588560583","text":"Regenerate #% of Energy Shield per second if you\u0027ve Hit an Enemy Recently","type":"explicit"},{"id":"explicit.stat_3592330380","text":"Cannot be Shocked or Ignited while moving","type":"explicit"},{"id":"explicit.stat_663447087","text":"Items dropped by Rogue Exiles are Corrupted","type":"explicit"},{"id":"explicit.stat_677564538","text":"Non-Channelling Skills have # to Total Mana Cost","type":"explicit"},{"id":"explicit.stat_1012100113","text":"Area is #% larger","type":"explicit"},{"id":"explicit.stat_3355479537","text":"#% chance to create Shocked Ground when Hit","type":"explicit"},{"id":"explicit.stat_1877984956","text":"Players are Cursed with Warlord\u0027s Mark","type":"explicit"},{"id":"explicit.stat_813119588","text":"#% chance to Gain Arcane Surge on Hit with Spells while at maximum Power Charges","type":"explicit"},{"id":"explicit.stat_3554614456","text":"Pride Reserves no Mana","type":"explicit"},{"id":"explicit.stat_2269282877","text":"Socketed Gems are Supported by Level # Feeding Frenzy","type":"explicit"},{"id":"explicit.stat_1699077932","text":"#% chance to Recover 10% of Mana when you use a Skill while affected by Clarity","type":"explicit"},{"id":"explicit.stat_3371432622","text":"#% chance to gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges","type":"explicit"},{"id":"explicit.stat_571003610","text":"Area contains an Arcanist\u0027s Strongbox","type":"explicit"},{"id":"explicit.stat_1585344030","text":"#% increased Attack Speed if you\u0027ve dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_445988468","text":"Area contains an Essence of Hysteria","type":"explicit"},{"id":"explicit.stat_2935548106","text":"# to Evasion Rating if Hit an Enemy Recently","type":"explicit"},{"id":"explicit.stat_2408544213","text":"#% chance to Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges","type":"explicit"},{"id":"explicit.stat_11106713","text":"#% of Spell Damage Leeched as Energy Shield","type":"explicit"},{"id":"explicit.stat_1311723478","text":"Ignore all Movement Penalties from Armour","type":"explicit"},{"id":"explicit.stat_2390685262","text":"#% increased Quantity of Items found in Areas","type":"explicit"},{"id":"explicit.stat_1891782369","text":"#% increased Damage with Ignite inflicted on Chilled Enemies","type":"explicit"},{"id":"explicit.stat_1990354706","text":"You have Iron Reflexes while at maximum Frenzy Charges","type":"explicit"},{"id":"explicit.stat_598809739","text":"Monsters grant #% increased Experience","type":"explicit"},{"id":"explicit.stat_3780437763","text":"You cannot be Stunned while at maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_1314418188","text":"You have Vaal Pact while at maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_3909654181","text":"Monsters have #% increased Attack, Cast and Movement Speed","type":"explicit"},{"id":"explicit.stat_514705332","text":"Socketed Gems are Supported by Level # Elemental Army Support","type":"explicit"},{"id":"explicit.stat_2368149582","text":"# to Armour if you\u0027ve Hit an Enemy Recently","type":"explicit"},{"id":"explicit.stat_1386808918","text":"Breaches each contain a Breachlord","type":"explicit"},{"id":"explicit.stat_2877370216","text":"#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_2306002879","text":"#% increased Rarity of Items found in this Area","type":"explicit"},{"id":"explicit.stat_4169318921","text":"#% increased Movement Speed per 10 Dexterity on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_1521863824","text":"#% increased Movement speed while on Burning, Chilled or Shocked ground","type":"explicit"},{"id":"explicit.stat_301625329","text":"#% increased Rarity of Items found during any Flask Effect","type":"explicit"},{"id":"explicit.stat_3577248251","text":"You and your Minions take #% reduced Reflected Damage","type":"explicit"},{"id":"explicit.stat_2004028089","text":"Items dropped by Invasion Bosses are fully Linked","type":"explicit"},{"id":"explicit.stat_1636220212","text":"Socketed Gems are Supported by Level # Swift Affliction","type":"explicit"},{"id":"explicit.stat_2960683632","text":"#% reduced Chaos Damage taken","type":"explicit"},{"id":"explicit.stat_2602865453","text":"Regenerate #% of Mana per second if you\u0027ve Hit an Enemy Recently","type":"explicit"},{"id":"explicit.stat_899928542","text":"Invasion Bosses drop an additional Vaal Orb","type":"explicit"},{"id":"explicit.stat_444117960","text":"Items dropped by Invasion Bosses have an additional Socket","type":"explicit"},{"id":"explicit.stat_2344590267","text":"Vaal Skills used during effect do not apply Soul Gain Prevention","type":"explicit"},{"id":"explicit.stat_1866583932","text":"Socketed Gems are Supported by Level # Void Manipulation","type":"explicit"},{"id":"explicit.stat_1519665289","text":"Projectiles from Socketed Gems Fork","type":"explicit"},{"id":"explicit.stat_488900289","text":"Breaches contain a Breachlord\u0027s Clasped Hand","type":"explicit"},{"id":"explicit.stat_2530071726","text":"Area contains an additional Three Rat Talisman","type":"explicit"},{"id":"explicit.stat_1135493957","text":"Socketed Gems are Supported by Level # Culling Strike","type":"explicit"},{"id":"explicit.stat_3481736410","text":"#% increased Area of Effect if you\u0027ve Killed Recently","type":"explicit"},{"id":"explicit.stat_88817332","text":"#% increased Global Evasion Rating when on Full Life","type":"explicit"},{"id":"explicit.stat_720395808","text":"#% of Elemental Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_1876857497","text":"You have Mind over Matter while at maximum Power Charges","type":"explicit"},{"id":"explicit.stat_3859593448","text":"#% reduced Elemental Damage Taken while stationary","type":"explicit"},{"id":"explicit.stat_3057529096","text":"Area contains a Rare Monster with Inner Treasure","type":"explicit"},{"id":"explicit.stat_729163974","text":"1 Added Passive Skill is Unspeakable Gifts","type":"explicit"},{"id":"explicit.stat_504366827","text":"# to Armour while Frozen","type":"explicit"},{"id":"explicit.stat_3846810663","text":"#% reduced Reflected Damage taken","type":"explicit"},{"id":"explicit.stat_2557943734","text":"Added Small Passive Skills grant Nothing","type":"explicit"},{"id":"explicit.stat_3787670808","text":"Contains the Immortalised Grandmasters\nPvP damage scaling in effect","type":"explicit"},{"id":"explicit.stat_1900098804","text":"Socketed Gems are Supported by Level # Impale","type":"explicit"},{"id":"explicit.stat_628032624","text":"Cannot be Chilled or Frozen while moving","type":"explicit"},{"id":"explicit.stat_194037675","text":"Area contains a Unique Strongbox","type":"explicit"},{"id":"explicit.stat_2522970386","text":"1 Added Passive Skill is Enduring Focus","type":"explicit"},{"id":"explicit.stat_2200114771","text":"Every 16 seconds you gain Iron Reflexes for 8 seconds","type":"explicit"},{"id":"explicit.stat_2643665787","text":"Socketed Gems are Supported by Level # Chain","type":"explicit"},{"id":"explicit.stat_1928796626","text":"A Beyond Unique drops when the first Unique Monster from Beyond is slain","type":"explicit"},{"id":"explicit.stat_3827538724","text":"Socketed Gems are Supported by Level # Barrage","type":"explicit"},{"id":"explicit.stat_3828375170","text":"Bleeding you inflict deals Damage #% faster","type":"explicit"},{"id":"explicit.stat_2126431157","text":"Socketed Gems are Supported by Level # Damage On Full Life","type":"explicit"},{"id":"explicit.stat_643741006","text":"Area is inhabited by Bandits","type":"explicit"},{"id":"explicit.stat_2433615566","text":"Socketed Gems are supported by Level # Pierce","type":"explicit"},{"id":"explicit.stat_583277599","text":"Chill Nearby Enemies when you Block","type":"explicit"},{"id":"explicit.stat_1917124426","text":"Your Cold Damage can Poison","type":"explicit"},{"id":"explicit.stat_3337107517","text":"#% increased Fire Damage while affected by Anger","type":"explicit"},{"id":"explicit.stat_4048257027","text":"Socketed Gems are Supported by Level # Infused Channelling","type":"explicit"},{"id":"explicit.stat_3098087057","text":"#% increased Damage on Burning Ground","type":"explicit"},{"id":"explicit.stat_2700934265","text":"Grants Level # Vaal Impurity of Fire Skill","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_kaom","text":"Commanded leadership over # warriors under Kaom","type":"explicit"},{"id":"explicit.stat_3623716321","text":"Adds # to # Fire Damage if you\u0027ve Blocked Recently","type":"explicit"},{"id":"explicit.stat_1669870438","text":"A Monster in this Area will summon Abaxoth when Slain","type":"explicit"},{"id":"explicit.stat_799443127","text":"Socketed Gems are Supported by Level # Energy Leech","type":"explicit"},{"id":"explicit.stat_3504652942","text":"#% to Damage over Time Multiplier for Poison per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_1300125165","text":"Grants Level # Vaal Impurity of Ice Skill","type":"explicit"},{"id":"explicit.stat_807186595","text":"Socketed Gems are Supported by Level # Multiple Totems","type":"explicit"},{"id":"explicit.stat_4082662318","text":"Socketed Gems are Supported by Level # Deathmark","type":"explicit"},{"id":"explicit.stat_3155072742","text":"Socketed Gems are Supported by Level # Summon Phantasm","type":"explicit"},{"id":"explicit.stat_1678643716","text":"1 Added Passive Skill is Widespread Destruction","type":"explicit"},{"id":"explicit.stat_388696990","text":"Socketed Gems are Supported by Level # Decay","type":"explicit"},{"id":"explicit.stat_1828254451","text":"Socketed Gems are Supported by Level # Combustion","type":"explicit"},{"id":"explicit.stat_2556436882","text":"Socketed Gems are Supported by Level # Enhance","type":"explicit"},{"id":"explicit.stat_392942015","text":"1 Added Passive Skill is Eye to Eye","type":"explicit"},{"id":"explicit.stat_4235333770","text":"#% increased Duration of Curses on you per 10 Devotion","type":"explicit"},{"id":"explicit.stat_1296614065","text":"#% increased Fish Bite Sensitivity","type":"explicit"},{"id":"explicit.stat_2022724400","text":"#% increased Dexterity if Strength is higher than Intelligence","type":"explicit"},{"id":"explicit.stat_3294034100","text":"Area contains an additional Perandus Archive","type":"explicit"},{"id":"explicit.stat_1876637240","text":"Socketed Gems are Supported by Level # Intensify","type":"explicit"},{"id":"explicit.stat_2959369472","text":"Grants Level # Vaal Impurity of Lightning Skill","type":"explicit"},{"id":"explicit.stat_3327487371","text":"Socketed Gems are Supported by Level # Physical To Lightning","type":"explicit"},{"id":"explicit.stat_1849749435","text":"Nearby Enemies have #% to Lightning Resistance","type":"explicit"},{"id":"explicit.stat_3171958921","text":"#% chance to Trigger a Socketed Bow Skill when you Attack with a Bow","type":"explicit"},{"id":"explicit.stat_2894567787","text":"Spreads Tar when you Block","type":"explicit"},{"id":"explicit.stat_3287477747","text":"Socketed Gems are Supported by Level # Withering Touch","type":"explicit"},{"id":"explicit.stat_3956623857","text":"Area contains an additional Unique Talisman","type":"explicit"},{"id":"explicit.stat_2233361223","text":"Adds # to # Cold Damage against Chilled or Frozen Enemies","type":"explicit"},{"id":"explicit.stat_4197398087","text":"Area contains a Cartographer\u0027s Strongbox","type":"explicit"},{"id":"explicit.stat_2150878631","text":"1 Added Passive Skill is Endbringer","type":"explicit"},{"id":"explicit.stat_411810300","text":"Area contains an additional Perandus Locker","type":"explicit"},{"id":"explicit.stat_2894476716","text":"Gain # Endurance Charge every second if you\u0027ve been Hit Recently","type":"explicit"},{"id":"explicit.stat_2697741965","text":"Socketed Gems are Supported by Level # Curse On Hit","type":"explicit"},{"id":"explicit.stat_4089933397","text":"Socketed Gems are Supported by Level # Awakened Swift Affliction","type":"explicit"},{"id":"explicit.stat_804508379","text":"Socketed Gems are Supported by Level # Bloodlust","type":"explicit"},{"id":"explicit.stat_1859244771","text":"Socketed Gems are Supported by Level # Bonechill","type":"explicit"},{"id":"explicit.stat_2065361612","text":"Socketed Gems are Supported by Level # Enlighten","type":"explicit"},{"id":"explicit.stat_2032386732","text":"Socketed Gems are Supported by Level # Life Gain On Hit","type":"explicit"},{"id":"explicit.stat_3777170562","text":"1 Added Passive Skill is Overshock","type":"explicit"},{"id":"explicit.stat_402499111","text":"Socketed Gems are Supported by Level # Second Wind","type":"explicit"},{"id":"explicit.stat_3329402420","text":"#% increased Movement Speed while affected by Grace","type":"explicit"},{"id":"explicit.stat_103909236","text":"Socketed Gems are Supported by Level # Deadly Ailments","type":"explicit"},{"id":"explicit.stat_1786672841","text":"Socketed Gems are Supported by Level # Awakened Elemental Damage With Attacks","type":"explicit"},{"id":"explicit.stat_3188756614","text":"1 Added Passive Skill is Fire Attunement","type":"explicit"},{"id":"explicit.stat_608164368","text":"1 Added Passive Skill is Wish for Death","type":"explicit"},{"id":"explicit.stat_1360925132","text":"Adds Nature\u0027s Patience","type":"explicit"},{"id":"explicit.stat_689720069","text":"Socketed Gems are supported by Level # Stun","type":"explicit"},{"id":"explicit.stat_2337273077","text":"1 Added Passive Skill is Life from Death","type":"explicit"},{"id":"explicit.stat_2195406641","text":"1 Added Passive Skill is Lead By Example","type":"explicit"},{"id":"explicit.stat_1803865171","text":"Socketed Gems are Supported by Level # Awakened Fork","type":"explicit"},{"id":"explicit.stat_3652278215","text":"Socketed Gems are Supported by Level # Archmage","type":"explicit"},{"id":"explicit.stat_2062753054","text":"Socketed Gems are supported by Level # Fork","type":"explicit"},{"id":"explicit.stat_2249251344","text":"Socketed Gems are Supported by Level # Awakened Chain","type":"explicit"},{"id":"explicit.stat_3356013982","text":"Socketed Gems are Supported by Level # Unleash","type":"explicit"},{"id":"explicit.stat_2201102274","text":"Socketed Gems are Supported by Level # Infernal Legion","type":"explicit"},{"id":"explicit.stat_3239503729","text":"Socketed Gems are Supported by Level # Mirage Archer","type":"explicit"},{"id":"explicit.stat_1274125114","text":"Vaal Skills have #% reduced Soul Cost during effect","type":"explicit"},{"id":"explicit.stat_248646071","text":"Socketed Gems are Supported by Level # Item Quantity","type":"explicit"},{"id":"explicit.stat_2509486489","text":"Socketed Gems are Supported by Level # Awakened Added Cold Damage","type":"explicit"},{"id":"explicit.stat_3429304534","text":"Socketed Gems are Supported by Level # Awakened Added Lightning Damage","type":"explicit"},{"id":"explicit.stat_2693266036","text":"#% additional Physical Damage Reduction during any Flask Effect","type":"explicit"},{"id":"explicit.stat_1966051190","text":"Socketed Gems are Supported by Level # Block Chance Reduction","type":"explicit"},{"id":"explicit.stat_2116100988","text":"Socketed Gems are Supported by Level # High-Impact Mine","type":"explicit"},{"id":"explicit.stat_2181791238","text":"Wrath has #% increased Aura Effect","type":"explicit"},{"id":"explicit.stat_339131601","text":"Socketed Gems are Supported by Level # Awakened Added Fire Damage","type":"explicit"},{"id":"explicit.stat_3746703776","text":"1 Added Passive Skill is Ancestral Preservation","type":"explicit"},{"id":"explicit.stat_1869678332","text":"During Flask Effect, #% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest","type":"explicit"},{"id":"explicit.stat_4021476585","text":"Socketed Gems are Supported by Level # Swift Assembly","type":"explicit"},{"id":"explicit.stat_1980028507","text":"Socketed Gems are Supported by Level # Awakened Greater Multiple Projectiles","type":"explicit"},{"id":"explicit.stat_2333301609","text":"Socketed Gems are Supported by Level # Awakened Increased Area Of Effect","type":"explicit"},{"id":"explicit.stat_3989400244","text":"1 Added Passive Skill is Low Tolerance","type":"explicit"},{"id":"explicit.stat_3640956958","text":"Projectiles Pierce 2 additional Targets","type":"explicit"},{"id":"explicit.stat_3754129682","text":"Socketed Gems are Supported by Level # Point Blank","type":"explicit"},{"id":"explicit.stat_479453859","text":"Socketed Gems are Supported by Level # Charged Traps","type":"explicit"},{"id":"explicit.stat_694651314","text":"Socketed Gems are Supported by Level # Close Combat","type":"explicit"},{"id":"explicit.stat_1331336999","text":"Socketed Gems are Supported by Level # Arrow Nova","type":"explicit"},{"id":"explicit.stat_369650395","text":"Socketed Gems are Supported by Level # Rage","type":"explicit"},{"id":"explicit.stat_1365328494","text":"Socketed Gems are Supported by Level # Charged Mines","type":"explicit"},{"id":"explicit.stat_2805586447","text":"Socketed Gems are Supported by Level # Minefield","type":"explicit"},{"id":"explicit.stat_2861649515","text":"Socketed Gems are Supported by Level # Nightblade","type":"explicit"},{"id":"explicit.stat_2173069393","text":"Socketed Gems are Supported by Level # Awakened Melee Physical Damage","type":"explicit"},{"id":"explicit.stat_2100048639","text":"Socketed Gems are Supported by Level # Awakened Minion Damage","type":"explicit"},{"id":"explicit.stat_3016436615","text":"Socketed Gems are Supported by Level # Multiple Traps","type":"explicit"},{"id":"explicit.stat_511417258","text":"Socketed Gems are Supported by Level # Awakened Multistrike","type":"explicit"},{"id":"explicit.stat_2253550081","text":"Socketed Gems are Supported by Level # Awakened Melee Splash","type":"explicit"},{"id":"explicit.stat_3610200044","text":"Socketed Gems are Supported by Level # Awakened Brutality","type":"explicit"}]},{"label":"Implicit","entries":[{"id":"implicit.stat_2974417149","text":"#% increased Spell Damage","type":"implicit"},{"id":"implicit.stat_587431675","text":"#% increased Global Critical Strike Chance","type":"implicit"},{"id":"implicit.stat_3299347043","text":"# to maximum Life","type":"implicit"},{"id":"implicit.stat_4080418644","text":"# to Strength","type":"implicit"},{"id":"implicit.stat_3489782002","text":"# to maximum Energy Shield","type":"implicit"},{"id":"implicit.stat_3917489142","text":"#% increased Rarity of Items found","type":"implicit"},{"id":"implicit.stat_3141070085","text":"#% increased Elemental Damage","type":"implicit"},{"id":"implicit.stat_4077843608","text":"Has 1 Socket","type":"implicit"},{"id":"implicit.stat_624954515","text":"#% increased Global Accuracy Rating","type":"implicit"},{"id":"implicit.stat_4277795662","text":"#% to Cold and Lightning Resistances","type":"implicit"},{"id":"implicit.stat_3441501978","text":"#% to Fire and Lightning Resistances","type":"implicit"},{"id":"implicit.stat_3556824919","text":"#% to Global Critical Strike Multiplier","type":"implicit"},{"id":"implicit.stat_1379411836","text":"# to all Attributes","type":"implicit"},{"id":"implicit.stat_2901986750","text":"#% to all Elemental Resistances","type":"implicit"},{"id":"implicit.stat_2915988346","text":"#% to Fire and Cold Resistances","type":"implicit"},{"id":"implicit.stat_3372524247","text":"#% to Fire Resistance","type":"implicit"},{"id":"implicit.stat_2517001139","text":"#% increased Stun Duration on Enemies","type":"implicit"},{"id":"implicit.stat_2300185227","text":"# to Dexterity and Intelligence","type":"implicit"},{"id":"implicit.stat_1671376347","text":"#% to Lightning Resistance","type":"implicit"},{"id":"implicit.stat_2656027173","text":"Natural inhabitants of this area have been removed","type":"implicit"},{"id":"implicit.stat_3261801346","text":"# to Dexterity","type":"implicit"},{"id":"implicit.stat_1310194496","text":"#% increased Global Physical Damage","type":"implicit"},{"id":"implicit.stat_1535626285","text":"# to Strength and Intelligence","type":"implicit"},{"id":"implicit.stat_1001829678","text":"#% Chance to Block Attack Damage while wielding a Staff (Staves)","type":"implicit"},{"id":"implicit.stat_328541901","text":"# to Intelligence","type":"implicit"},{"id":"implicit.stat_299373046","text":"Area is infested with Fungal Growths","type":"implicit"},{"id":"implicit.stat_1050105434","text":"# to maximum Mana","type":"implicit"},{"id":"implicit.stat_2923486259","text":"#% to Chaos Resistance","type":"implicit"},{"id":"implicit.stat_821021828","text":"# Life gained for each Enemy hit by Attacks","type":"implicit"},{"id":"implicit.stat_789117908","text":"#% increased Mana Regeneration Rate","type":"implicit"},{"id":"implicit.stat_2511217560","text":"#% increased Stun and Block Recovery","type":"implicit"},{"id":"implicit.stat_3527617737","text":"Has # Abyssal Sockets","type":"implicit"},{"id":"implicit.stat_2250533757","text":"#% increased Movement Speed","type":"implicit"},{"id":"implicit.stat_691932474","text":"# to Accuracy Rating (Local)","type":"implicit"},{"id":"implicit.stat_1443060084","text":"#% reduced Enemy Stun Threshold","type":"implicit"},{"id":"implicit.stat_3032590688","text":"Adds # to # Physical Damage to Attacks","type":"implicit"},{"id":"implicit.stat_3325883026","text":"Regenerate # Life per second","type":"implicit"},{"id":"implicit.stat_4220027924","text":"#% to Cold Resistance","type":"implicit"},{"id":"implicit.stat_1792283443","text":"Area is influenced by #","type":"implicit","option":{"options":[{"id":"1","value":"1","text":"The Shaper"},{"id":"2","value":"2","text":"The Elder"}]}},{"id":"implicit.stat_202275580","text":"Properties are doubled while in a Breach","type":"implicit"},{"id":"implicit.stat_1589917703","text":"Minions deal #% increased Damage","type":"implicit"},{"id":"implicit.stat_3593843976","text":"#% of Physical Attack Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_387439868","text":"#% increased Elemental Damage with Attack Skills","type":"implicit"},{"id":"implicit.stat_280731498","text":"#% increased Area of Effect","type":"implicit"},{"id":"implicit.stat_1658498488","text":"Corrupted Blood cannot be inflicted on you","type":"implicit"},{"id":"implicit.stat_2154246560","text":"#% increased Damage","type":"implicit"},{"id":"implicit.stat_2101383955","text":"Damage Penetrates #% Elemental Resistances","type":"implicit"},{"id":"implicit.stat_2146730404","text":"Creates Consecrated Ground on Use","type":"implicit"},{"id":"implicit.stat_2227180465","text":"#% increased Mana Reserved","type":"implicit"},{"id":"implicit.stat_836936635","text":"Regenerate #% of Life per second","type":"implicit"},{"id":"implicit.stat_2748665614","text":"#% increased maximum Mana","type":"implicit"},{"id":"implicit.stat_1002362373","text":"#% increased Melee Damage","type":"implicit"},{"id":"implicit.stat_369183568","text":"#% increased Block Recovery","type":"implicit"},{"id":"implicit.stat_3624393862","text":"Map is occupied by #","type":"implicit","option":{"options":[{"id":"1","value":"1","text":"The Enslaver"},{"id":"2","value":"2","text":"The Eradicator"},{"id":"3","value":"3","text":"The Constrictor"},{"id":"4","value":"4","text":"The Purifier"}]}},{"id":"implicit.stat_2994708956","text":"Can roll Minion Modifiers","type":"implicit"},{"id":"implicit.stat_1654414582","text":"You cannot be Cursed with Silence","type":"implicit"},{"id":"implicit.stat_538730182","text":"Creates a Smoke Cloud on Use","type":"implicit"},{"id":"implicit.stat_1760576992","text":"Adds # to # Physical Damage to Bow Attacks","type":"implicit"},{"id":"implicit.stat_1126826428","text":"You cannot be Maimed","type":"implicit"},{"id":"implicit.stat_3423006863","text":"Arrows Pierce an additional Target","type":"implicit"},{"id":"implicit.stat_721014846","text":"You cannot be Hindered","type":"implicit"},{"id":"implicit.stat_782230869","text":"#% increased Effect of Non-Damaging Ailments","type":"implicit"},{"id":"implicit.stat_2891184298","text":"#% increased Cast Speed","type":"implicit"},{"id":"implicit.stat_818778753","text":"Damage Penetrates #% Lightning Resistance","type":"implicit"},{"id":"implicit.stat_2162876159","text":"#% increased Projectile Attack Damage","type":"implicit"},{"id":"implicit.stat_2495041954","text":"Enemies have #% to Total Physical Damage Reduction against your Hits","type":"implicit"},{"id":"implicit.stat_3291658075","text":"#% increased Cold Damage","type":"implicit"},{"id":"implicit.stat_3962278098","text":"#% increased Fire Damage","type":"implicit"},{"id":"implicit.stat_2653955271","text":"Damage Penetrates #% Fire Resistance","type":"implicit"},{"id":"implicit.stat_1652515349","text":"# to maximum number of Raised Zombies","type":"implicit"},{"id":"implicit.stat_696707743","text":"#% chance to Dodge Spell Hits","type":"implicit"},{"id":"implicit.stat_736967255","text":"#% increased Chaos Damage","type":"implicit"},{"id":"implicit.stat_2797971005","text":"# Life gained for each Enemy hit by your Attacks","type":"implicit"},{"id":"implicit.stat_3120164895","text":"Adds # to # Fire Damage to Bow Attacks","type":"implicit"},{"id":"implicit.stat_734614379","text":"#% increased Strength","type":"implicit"},{"id":"implicit.stat_656461285","text":"#% increased Intelligence","type":"implicit"},{"id":"implicit.stat_4139681126","text":"#% increased Dexterity","type":"implicit"},{"id":"implicit.stat_2672805335","text":"#% increased Attack and Cast Speed","type":"implicit"},{"id":"implicit.stat_884586851","text":"#% increased Quantity of Items found","type":"implicit"},{"id":"implicit.stat_2316658489","text":"# to Armour and Evasion Rating","type":"implicit"},{"id":"implicit.stat_2843100721","text":"# to Level of Socketed Gems","type":"implicit"},{"id":"implicit.stat_538848803","text":"# to Strength and Dexterity","type":"implicit"},{"id":"implicit.stat_3143208761","text":"#% increased Attributes","type":"implicit"},{"id":"implicit.stat_1389153006","text":"#% increased Global Defences","type":"implicit"},{"id":"implicit.stat_681332047","text":"#% increased Attack Speed","type":"implicit"},{"id":"implicit.stat_2067062068","text":"Projectiles Pierce # additional Targets","type":"implicit"},{"id":"implicit.stat_2551600084","text":"# to Level of Socketed AoE Gems","type":"implicit"},{"id":"implicit.stat_4078695","text":"# to Maximum Frenzy Charges","type":"implicit"},{"id":"implicit.stat_2115168758","text":"# to Level of Socketed Duration Gems","type":"implicit"},{"id":"implicit.stat_2530372417","text":"#% Chance to Block Attack Damage","type":"implicit"},{"id":"implicit.stat_3691695237","text":"# to Level of Socketed Curse Gems","type":"implicit"},{"id":"implicit.stat_2176571093","text":"# to Level of Socketed Projectile Gems","type":"implicit"},{"id":"implicit.stat_3513534186","text":"Item sells for much more to vendors","type":"implicit"},{"id":"implicit.stat_2375316951","text":"#% increased Critical Strike Chance","type":"implicit"},{"id":"implicit.stat_210067635","text":"#% increased Attack Speed (Local)","type":"implicit"},{"id":"implicit.stat_1519615863","text":"#% chance to cause Bleeding on Hit","type":"implicit"},{"id":"implicit.stat_150668988","text":"# to Level of Socketed Trap or Mine Gems","type":"implicit"},{"id":"implicit.stat_800141891","text":"#% chance to Freeze, Shock and Ignite","type":"implicit"},{"id":"implicit.stat_3742945352","text":"Hatred has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_983749596","text":"#% increased maximum Life","type":"implicit"},{"id":"implicit.stat_2181791238","text":"Wrath has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_1672793731","text":"# to Level of Socketed Warcry Gems","type":"implicit"},{"id":"implicit.stat_3311869501","text":"Creates Chilled Ground on Use","type":"implicit"},{"id":"implicit.stat_397427740","text":"Grace has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_1592278124","text":"Anger has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_3753703249","text":"Gain #% of Physical Damage as Extra Damage of a random Element","type":"implicit"},{"id":"implicit.stat_2028847114","text":"Curse Enemies with Level # Elemental Weakness on Hit","type":"implicit"},{"id":"implicit.stat_4096052153","text":"Zealotry has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_3967845372","text":"Curse Enemies with Level # Vulnerability on Hit","type":"implicit"},{"id":"implicit.stat_3653400807","text":"Determination has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_2749862839","text":"#% chance to Dodge Attack Hits","type":"implicit"},{"id":"implicit.stat_3848282610","text":"#% of Fire Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_80079005","text":"#% of Lightning Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_3999401129","text":"#% of Cold Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_1625819882","text":"Curse Enemies with Level # Enfeeble on Hit","type":"implicit"},{"id":"implicit.stat_4175197580","text":"Malevolence has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_3771516363","text":"#% additional Physical Damage Reduction","type":"implicit"},{"id":"implicit.stat_2764915899","text":"Curse Enemies with Level # Despair on Hit","type":"implicit"},{"id":"implicit.stat_3767873853","text":"Reflects # Physical Damage to Melee Attackers","type":"implicit"},{"id":"implicit.stat_2572042788","text":"Attacks have #% to Critical Strike Chance","type":"implicit"},{"id":"implicit.stat_3023957681","text":"#% chance to gain Onslaught for 4 seconds on Kill","type":"implicit"},{"id":"implicit.stat_640052854","text":"# Mana gained for each Enemy hit by Attacks","type":"implicit"},{"id":"implicit.stat_3943945975","text":"Resolute Technique","type":"implicit"},{"id":"implicit.stat_30642521","text":"You can apply an additional Curse","type":"implicit"},{"id":"implicit.stat_3377888098","text":"#% increased Skill Effect Duration","type":"implicit"},{"id":"implicit.stat_1515657623","text":"# to Maximum Endurance Charges","type":"implicit"},{"id":"implicit.stat_791835907","text":"Spells have #% to Critical Strike Chance ","type":"implicit"},{"id":"implicit.stat_4247488219","text":"Pride has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_1826802197","text":"#% chance to gain a Frenzy Charge on Kill","type":"implicit"},{"id":"implicit.stat_569299859","text":"#% to all maximum Resistances","type":"implicit"},{"id":"implicit.stat_1900164129","text":"Area contains a Monster possessed by an Ancient Talisman","type":"implicit"},{"id":"implicit.stat_561307714","text":"#% Chance to Block Spell Damage","type":"implicit"},{"id":"implicit.stat_2898434123","text":"#% increased Critical Strike Chance during any Flask Effect","type":"implicit"},{"id":"implicit.stat_240289863","text":"#% to Critical Strike Multiplier during any Flask Effect","type":"implicit"},{"id":"implicit.stat_1050286373","text":"Area contains up to 1 Monster imprisoned by Essences","type":"implicit"},{"id":"implicit.stat_304970526","text":"#% increased Movement Speed during any Flask Effect","type":"implicit"},{"id":"implicit.stat_392469782","text":"Area contains a Breach","type":"implicit"},{"id":"implicit.stat_1837040413","text":"Slaying Enemies close together can attract monsters from Beyond this realm","type":"implicit"},{"id":"implicit.stat_548865797","text":"Area contains a Rogue Exile","type":"implicit"},{"id":"implicit.stat_788317702","text":"Discipline has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_3814876985","text":"#% chance to gain a Power Charge on Critical Strike","type":"implicit"},{"id":"implicit.stat_2949489150","text":"Area contains a Tormented Spirit","type":"implicit"},{"id":"implicit.stat_1509134228","text":"#% increased Physical Damage","type":"implicit"},{"id":"implicit.stat_3907094951","text":"Area contains at least 1 Warband Pack","type":"implicit"},{"id":"implicit.stat_2570943032","text":"Area contains a Strongbox","type":"implicit"},{"id":"implicit.stat_452077019","text":"Slaying Enemies in a kill streak grants Rampage bonuses","type":"implicit"},{"id":"implicit.stat_1365052901","text":"#% increased Attack Speed during any Flask Effect","type":"implicit"},{"id":"implicit.stat_49787903","text":"Area contains a Perandus Chest","type":"implicit"},{"id":"implicit.stat_3336890334","text":"Adds # to # Lightning Damage (Local)","type":"implicit"},{"id":"implicit.stat_3511815065","text":"Grants Level # Clarity Skill","type":"implicit"},{"id":"implicit.stat_2878321598","text":"Area contains up to 1 Shrine","type":"implicit"},{"id":"implicit.stat_581013336","text":"Area contains an additional Magic Monster pack","type":"implicit"},{"id":"implicit.stat_97115311","text":"Magic Monster Packs each have a Bloodline Mod","type":"implicit"},{"id":"implicit.stat_3788235244","text":"Area has a #% chance to contain Cadiro Perandus","type":"implicit"},{"id":"implicit.stat_585159631","text":"Area contains a Silver Coin","type":"implicit"},{"id":"implicit.stat_1940865751","text":"Adds # to # Physical Damage (Local)","type":"implicit"},{"id":"implicit.stat_1037193709","text":"Adds # to # Cold Damage (Local)","type":"implicit"},{"id":"implicit.stat_4015621042","text":"#% increased Energy Shield (Local)","type":"implicit"},{"id":"implicit.stat_709508406","text":"Adds # to # Fire Damage (Local)","type":"implicit"},{"id":"implicit.stat_742529963","text":"Bow Attacks fire an additional Arrow","type":"implicit"},{"id":"implicit.stat_252194507","text":"#% increased Cast Speed during any Flask Effect","type":"implicit"},{"id":"implicit.stat_1170386874","text":"# to Level of Socketed Vaal Gems","type":"implicit"},{"id":"implicit.stat_2257141320","text":"Vaal Skills deal #% increased Damage","type":"implicit"},{"id":"implicit.stat_2106365538","text":"#% increased Evasion Rating","type":"implicit"},{"id":"implicit.stat_2810286377","text":"Area contains an additional pack with a Rare monster","type":"implicit"},{"id":"implicit.stat_2391261970","text":"Rare Monsters each have a Nemesis Mod","type":"implicit"},{"id":"implicit.stat_2452998583","text":"# to Level of Socketed Aura Gems","type":"implicit"},{"id":"implicit.stat_2223678961","text":"Adds # to # Chaos Damage (Local)","type":"implicit"},{"id":"implicit.stat_2524254339","text":"Culling Strike","type":"implicit"},{"id":"implicit.stat_2866361420","text":"#% increased Armour","type":"implicit"},{"id":"implicit.stat_674553446","text":"Adds # to # Chaos Damage to Attacks","type":"implicit"},{"id":"implicit.stat_3849207804","text":"Area contains an Invasion Boss","type":"implicit"},{"id":"implicit.stat_1166417447","text":"Grants Fortify on Melee hit","type":"implicit"},{"id":"implicit.stat_3855016469","text":"You take #% reduced Extra Damage from Critical Strikes","type":"implicit"},{"id":"implicit.stat_3822878124","text":"Grants Level # Purity of Lightning Skill","type":"implicit"},{"id":"implicit.stat_74338099","text":"Skills fire an additional Projectile","type":"implicit"},{"id":"implicit.stat_4193390599","text":"Grants Level # Purity of Ice Skill","type":"implicit"},{"id":"implicit.stat_1277237365","text":"Monsters have Onslaught","type":"implicit"},{"id":"implicit.stat_1783006896","text":"#% chance to Avoid being Ignited","type":"implicit"},{"id":"implicit.stat_3970432307","text":"Grants Level # Purity of Fire Skill","type":"implicit"},{"id":"implicit.stat_227523295","text":"# to Maximum Power Charges","type":"implicit"},{"id":"implicit.stat_261654754","text":"# Cold Damage taken from Hits","type":"implicit"},{"id":"implicit.stat_2148556029","text":"Grants Level # Malevolence Skill","type":"implicit"},{"id":"implicit.stat_2483795307","text":"#% chance to gain a Power Charge on Kill","type":"implicit"},{"id":"implicit.stat_105466375","text":"Grants Level # Purity of Elements Skill","type":"implicit"},{"id":"implicit.stat_1054322244","text":"#% chance to gain an Endurance Charge on Kill","type":"implicit"},{"id":"implicit.stat_3417711605","text":"Damage Penetrates #% Cold Resistance","type":"implicit"},{"id":"implicit.stat_465051235","text":"# Lightning Damage taken from Hits","type":"implicit"},{"id":"implicit.stat_4052037485","text":"# to maximum Energy Shield (Local)","type":"implicit"},{"id":"implicit.stat_124859000","text":"#% increased Evasion Rating (Local)","type":"implicit"},{"id":"implicit.stat_690707482","text":"#% increased Damage with Ailments","type":"implicit"},{"id":"implicit.stat_1062208444","text":"#% increased Armour (Local)","type":"implicit"},{"id":"implicit.stat_472520716","text":"#% of Damage taken gained as Mana over 4 seconds when Hit","type":"implicit"},{"id":"implicit.stat_1368271171","text":"# Mana gained on Kill","type":"implicit"},{"id":"implicit.stat_3695891184","text":"# Life gained on Kill","type":"implicit"},{"id":"implicit.stat_2885144362","text":"Adds # to # Lightning Damage to Spells and Attacks","type":"implicit"},{"id":"implicit.stat_3562211447","text":"#% chance to gain Unholy Might for 3 seconds on Kill","type":"implicit"},{"id":"implicit.stat_614758785","text":"# Fire Damage taken from Hits","type":"implicit"},{"id":"implicit.stat_3868549606","text":"Gain a Frenzy Charge after Spending a total of 200 Mana","type":"implicit"},{"id":"implicit.stat_2339757871","text":"#% increased Energy Shield Recharge Rate","type":"implicit"},{"id":"implicit.stat_3964634628","text":"Adds # to # Fire Damage to Spells and Attacks","type":"implicit"},{"id":"implicit.stat_1871765599","text":"#% chance to Avoid being Shocked","type":"implicit"},{"id":"implicit.stat_1662717006","text":"Adds # to # Cold Damage to Spells and Attacks","type":"implicit"},{"id":"implicit.stat_3736589033","text":"# to Total Mana Cost of Skills","type":"implicit"},{"id":"implicit.stat_2429546158","text":"Grants Level # Hatred Skill","type":"implicit"},{"id":"implicit.stat_474294393","text":"#% reduced Mana Cost of Skills","type":"implicit"},{"id":"implicit.stat_2265307453","text":"Grants Level # Wrath Skill","type":"implicit"},{"id":"implicit.stat_2896346114","text":"Point Blank","type":"implicit"},{"id":"implicit.stat_4043416969","text":"# to Level of Socketed Lightning Gems","type":"implicit"},{"id":"implicit.stat_1923210508","text":"Projectiles deal #% increased Damage for each time they have Chained","type":"implicit"},{"id":"implicit.stat_2181129193","text":"#% additional Physical Damage Reduction while stationary","type":"implicit"},{"id":"implicit.stat_2865550257","text":"Socketed Skill Gems get a #% Mana Multiplier","type":"implicit"},{"id":"implicit.stat_2527686725","text":"#% increased Effect of Shock","type":"implicit"},{"id":"implicit.stat_484879947","text":"Grants Level # Anger Skill","type":"implicit"},{"id":"implicit.stat_369494213","text":"Gain #% of Physical Damage as Extra Fire Damage","type":"implicit"},{"id":"implicit.stat_1290399200","text":"#% increased Damage with Poison","type":"implicit"},{"id":"implicit.stat_339179093","text":"# to Level of Socketed Fire Gems","type":"implicit"},{"id":"implicit.stat_3591306273","text":"#% increased Damage while Leeching Life","type":"implicit"},{"id":"implicit.stat_1504091975","text":"#% of Fire Damage from Hits taken as Lightning Damage","type":"implicit"},{"id":"implicit.stat_1017730114","text":"#% of Lightning Damage from Hits taken as Cold Damage","type":"implicit"},{"id":"implicit.stat_3375859421","text":"#% of Lightning Damage from Hits taken as Fire Damage","type":"implicit"},{"id":"implicit.stat_1188846263","text":"Grants Level # Haste Skill","type":"implicit"},{"id":"implicit.stat_1994684426","text":"#% increased Damage while Leeching Mana","type":"implicit"},{"id":"implicit.stat_2839036860","text":"#% increased Endurance, Frenzy and Power Charge Duration","type":"implicit"},{"id":"implicit.stat_3237923082","text":"Socketed Gems are Supported by Level # Onslaught","type":"implicit"},{"id":"implicit.stat_219391121","text":"Gain #% of Physical Damage as Extra Lightning Damage","type":"implicit"},{"id":"implicit.stat_174664100","text":"Minions have #% increased Movement Speed","type":"implicit"},{"id":"implicit.stat_979246511","text":"Gain #% of Physical Damage as Extra Cold Damage","type":"implicit"},{"id":"implicit.stat_883169830","text":"Projectiles deal #% increased Damage for each Enemy Pierced","type":"implicit"},{"id":"implicit.stat_1263695895","text":"#% increased Light Radius","type":"implicit"},{"id":"implicit.stat_1189760108","text":"#% of Cold Damage from Hits taken as Fire Damage","type":"implicit"},{"id":"implicit.stat_2960683632","text":"#% reduced Chaos Damage taken","type":"implicit"},{"id":"implicit.stat_3815042054","text":"#% increased total Recovery per second from Life Leech for each Corrupted Item Equipped","type":"implicit"},{"id":"implicit.stat_2841027131","text":"Regenerate # Life per second while moving","type":"implicit"},{"id":"implicit.stat_1169502663","text":"Grants Level # Frostbite Skill","type":"implicit"},{"id":"implicit.stat_4004011170","text":"#% increased Chaos Damage for each Corrupted Item Equipped","type":"implicit"},{"id":"implicit.stat_2209668839","text":"Grants Level # Flammability Skill","type":"implicit"},{"id":"implicit.stat_350598685","text":"# to Weapon Range","type":"implicit"},{"id":"implicit.stat_2224292784","text":"Can have up to # additional Trap placed at a time","type":"implicit"},{"id":"implicit.stat_3743301799","text":"#% increased Fire Damage taken","type":"implicit"},{"id":"implicit.stat_1313503107","text":"#% of Cold Damage from Hits taken as Lightning Damage","type":"implicit"},{"id":"implicit.stat_3825877290","text":"# to Global Evasion Rating while moving","type":"implicit"},{"id":"implicit.stat_2679819855","text":"#% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped","type":"implicit"},{"id":"implicit.stat_1175385867","text":"#% increased Burning Damage","type":"implicit"},{"id":"implicit.stat_2325632050","text":"Socketed Gems are supported by Level # Cast On Critical Strike","type":"implicit"},{"id":"implicit.stat_3577248251","text":"You and your Minions take #% reduced Reflected Damage","type":"implicit"},{"id":"implicit.stat_4212255859","text":"Cannot be Knocked Back","type":"implicit"},{"id":"implicit.stat_3441651621","text":"# Physical Damage taken from Attack Hits","type":"implicit"},{"id":"implicit.stat_2231156303","text":"#% increased Lightning Damage","type":"implicit"},{"id":"implicit.stat_3303114033","text":"#% reduced Cold Damage taken","type":"implicit"},{"id":"implicit.stat_2843214518","text":"#% increased Attack Damage","type":"implicit"},{"id":"implicit.stat_2551779822","text":"# Armour while stationary","type":"implicit"},{"id":"implicit.stat_3224664127","text":"Grants Level # Zealotry Skill","type":"implicit"},{"id":"implicit.stat_1276918229","text":"#% reduced Lightning Damage taken","type":"implicit"},{"id":"implicit.stat_3835551335","text":"Cannot be Poisoned","type":"implicit"},{"id":"implicit.stat_2044547677","text":"Grants Level # Despair Skill","type":"implicit"},{"id":"implicit.stat_1582887649","text":"#% chance to gain an Endurance Charge when you Stun an Enemy","type":"implicit"},{"id":"implicit.stat_3582580206","text":"#% increased Damage while Dead","type":"implicit"},{"id":"implicit.stat_2166444903","text":"#% Chance to Block Attack Damage while Dual Wielding","type":"implicit"},{"id":"implicit.stat_1436284579","text":"Cannot be Blinded","type":"implicit"},{"id":"implicit.stat_820939409","text":"# Mana gained for each Enemy hit by your Attacks","type":"implicit"},{"id":"implicit.stat_107118693","text":"Socketed Gems are Supported by Level # Fortify","type":"implicit"},{"id":"implicit.stat_4184565463","text":"Grants Level # Pride Skill","type":"implicit"},{"id":"implicit.stat_461472247","text":"Grants Level # Conductivity Skill","type":"implicit"},{"id":"implicit.stat_1874553720","text":"#% reduced Chill Duration on you","type":"implicit"},{"id":"implicit.stat_99927264","text":"#% reduced Shock Duration on you","type":"implicit"},{"id":"implicit.stat_2160282525","text":"#% reduced Freeze Duration on you","type":"implicit"},{"id":"implicit.stat_986397080","text":"#% reduced Ignite Duration on you","type":"implicit"},{"id":"implicit.stat_3484657501","text":"# to Armour (Local)","type":"implicit"},{"id":"implicit.stat_2902845638","text":"Projectiles Pierce # additional Targets","type":"implicit"},{"id":"implicit.stat_1170174456","text":"#% increased Endurance Charge Duration","type":"implicit"},{"id":"implicit.stat_845428765","text":"#% chance to Dodge Attack Hits while moving","type":"implicit"},{"id":"implicit.stat_53045048","text":"# to Evasion Rating (Local)","type":"implicit"},{"id":"implicit.stat_3338298622","text":"#% increased Frenzy Charge Duration","type":"implicit"},{"id":"implicit.stat_496011033","text":"# Chaos Damage taken","type":"implicit"},{"id":"implicit.stat_2482852589","text":"#% increased maximum Energy Shield","type":"implicit"},{"id":"implicit.stat_3872306017","text":"#% increased Power Charge Duration","type":"implicit"},{"id":"implicit.stat_3668351662","text":"#% increased Shock Duration on Enemies","type":"implicit"},{"id":"implicit.stat_165218607","text":"Hits have #% increased Critical Strike Chance against you","type":"implicit"},{"id":"implicit.stat_1420170973","text":"# Life and Mana gained for each Enemy hit","type":"implicit"},{"id":"implicit.stat_1079148723","text":"Socketed Gems are supported by Level # Cast when Stunned","type":"implicit"},{"id":"implicit.stat_1408638732","text":"#% increased Character Size","type":"implicit"},{"id":"implicit.stat_1040269876","text":"Adds # to # Lightning Damage to Bow Attacks","type":"implicit"},{"id":"implicit.stat_1745952865","text":"#% reduced Elemental Ailment Duration on you","type":"implicit"},{"id":"implicit.stat_215124030","text":"Adds # to # Cold Damage to Bow Attacks","type":"implicit"},{"id":"implicit.stat_3736925508","text":"Grants Level # Assassin\u0027s Mark Skill","type":"implicit"},{"id":"implicit.stat_1514829491","text":"#% chance to Avoid being Frozen","type":"implicit"},{"id":"implicit.stat_967627487","text":"#% increased Damage over Time","type":"implicit"},{"id":"implicit.stat_940324562","text":"Grants Level # Temporal Chains Skill","type":"implicit"},{"id":"implicit.stat_3181974858","text":"#% chance to Cause Monsters to Flee","type":"implicit"},{"id":"implicit.stat_1645459191","text":"# to Level of Socketed Cold Gems","type":"implicit"},{"id":"implicit.stat_4291461939","text":"Regenerate # Mana per second","type":"implicit"},{"id":"implicit.stat_425242359","text":"#% of Physical Damage from Hits taken as Lightning Damage","type":"implicit"},{"id":"implicit.stat_2410613176","text":"Grants Level # Vitality Skill","type":"implicit"},{"id":"implicit.stat_1871056256","text":"#% of Physical Damage from Hits taken as Cold Damage","type":"implicit"},{"id":"implicit.stat_4129825612","text":"#% of Physical Damage from Hits taken as Chaos Damage","type":"implicit"},{"id":"implicit.stat_4253454700","text":"#% Chance to Block (Shields)","type":"implicit"},{"id":"implicit.stat_4124805414","text":"#% to maximum Chance to Block Attack Damage","type":"implicit"},{"id":"implicit.stat_3001376862","text":"#% reduced Area Damage taken from Hits","type":"implicit"},{"id":"implicit.stat_3433724931","text":"Curse Enemies with Level # Temporal Chains on Hit","type":"implicit"},{"id":"implicit.stat_1811422871","text":"Socketed Gems are supported by Level # Melee Splash","type":"implicit"},{"id":"implicit.stat_3944782785","text":"#% increased Attack Damage against Bleeding Enemies","type":"implicit"},{"id":"implicit.stat_3342989455","text":"#% of Physical Damage from Hits taken as Fire Damage","type":"implicit"},{"id":"implicit.stat_99089516","text":"Socketed Gems are supported by Level # Faster Projectiles","type":"implicit"},{"id":"implicit.stat_1425651005","text":"#% reduced Damage taken from Projectiles","type":"implicit"},{"id":"implicit.stat_770672621","text":"Minions have #% increased maximum Life","type":"implicit"},{"id":"implicit.stat_1567462963","text":"Socketed Gems are supported by Level # Additional Accuracy","type":"implicit"},{"id":"implicit.stat_1573130764","text":"Adds # to # Fire Damage to Attacks","type":"implicit"},{"id":"implicit.stat_989800292","text":"Regenerate #% of Life per second per Endurance Charge","type":"implicit"},{"id":"implicit.stat_737908626","text":"#% increased Critical Strike Chance for Spells","type":"implicit"},{"id":"implicit.stat_1619454789","text":"Onslaught","type":"implicit"},{"id":"implicit.stat_2223640518","text":"Socketed Gems are supported by Level # Blind","type":"implicit"},{"id":"implicit.stat_660404777","text":"#% increased Evasion Rating per Frenzy Charge","type":"implicit"},{"id":"implicit.stat_1396421504","text":"#% to Quality of Socketed Melee Gems","type":"implicit"},{"id":"implicit.stat_3240769289","text":"#% of Physical Damage Converted to Lightning Damage","type":"implicit"},{"id":"implicit.stat_767196662","text":"#% increased Damage if Corrupted","type":"implicit"},{"id":"implicit.stat_1533563525","text":"#% of Physical Damage Converted to Fire Damage","type":"implicit"},{"id":"implicit.stat_828179689","text":"#% increased Effect of Chill","type":"implicit"},{"id":"implicit.stat_1787073323","text":"Skills Chain # times","type":"implicit"},{"id":"implicit.stat_2133341901","text":"#% of Physical Damage Converted to Cold Damage","type":"implicit"},{"id":"implicit.stat_122841557","text":"#% to Quality of Socketed Strength Gems","type":"implicit"},{"id":"implicit.stat_3174776455","text":"#% to Quality of Socketed Intelligence Gems","type":"implicit"},{"id":"implicit.stat_3536689603","text":"Grants Level # Projectile Weakness Skill","type":"implicit"},{"id":"implicit.stat_827329571","text":"#% increased Spell Damage per Power Charge","type":"implicit"},{"id":"implicit.stat_2341269061","text":"Grants Level # Discipline Skill","type":"implicit"},{"id":"implicit.stat_4262448838","text":"#% chance to Avoid being Stunned","type":"implicit"},{"id":"implicit.stat_3237948413","text":"#% of Physical Attack Damage Leeched as Mana","type":"implicit"},{"id":"implicit.stat_1866911844","text":"Socketed Gems are Supported by Level # Inspiration","type":"implicit"},{"id":"implicit.stat_2867050084","text":"Grants Level # Grace Skill","type":"implicit"},{"id":"implicit.stat_4265392510","text":"Grants Level # Determination Skill","type":"implicit"},{"id":"implicit.stat_3594640492","text":"Regenerate #% of Energy Shield per second","type":"implicit"},{"id":"implicit.stat_4067062424","text":"Adds # to # Cold Damage to Attacks","type":"implicit"},{"id":"implicit.stat_3648858570","text":"# to # Cold Damage per Frenzy Charge","type":"implicit"},{"id":"implicit.stat_1719423857","text":"# to Level of Socketed Intelligence Gems","type":"implicit"},{"id":"implicit.stat_1618589784","text":"#% chance to avoid Bleeding","type":"implicit"},{"id":"implicit.stat_2718698372","text":"# to Level of Socketed Dexterity Gems","type":"implicit"},{"id":"implicit.stat_4053951709","text":"#% chance to Avoid being Poisoned","type":"implicit"},{"id":"implicit.stat_2501237765","text":"Socketed Gems are supported by Level # Multistrike","type":"implicit"},{"id":"implicit.stat_768982451","text":"#% to Quality of Socketed AoE Gems","type":"implicit"},{"id":"implicit.stat_3257279374","text":"#% increased Damage against Abyssal Monsters","type":"implicit"},{"id":"implicit.stat_2011656677","text":"#% increased Poison Duration","type":"implicit"},{"id":"implicit.stat_1782086450","text":"#% faster start of Energy Shield Recharge","type":"implicit"},{"id":"implicit.stat_2428621158","text":"#% to Quality of Socketed Projectile Gems","type":"implicit"},{"id":"implicit.stat_2514424018","text":"You gain Onslaught for # seconds on Hit","type":"implicit"},{"id":"implicit.stat_2390685262","text":"#% increased Quantity of Items found in Areas","type":"implicit"},{"id":"implicit.stat_710372469","text":"Curse Enemies with Level # Conductivity on Hit","type":"implicit"},{"id":"implicit.stat_2881111359","text":"#% Chance to Block Spell Damage (Legacy)","type":"implicit"},{"id":"implicit.stat_4208096430","text":"#% chance to Gain Arcane Surge on Hit with Spells","type":"implicit"},{"id":"implicit.stat_458438597","text":"#% of Damage is taken from Mana before Life","type":"implicit"},{"id":"implicit.stat_1754445556","text":"Adds # to # Lightning Damage to Attacks","type":"implicit"},{"id":"implicit.stat_3828613551","text":"#% to Quality of Socketed Gems","type":"implicit"},{"id":"implicit.stat_2929101122","text":"Socketed Gems are Supported by Level # Elemental Proliferation","type":"implicit"},{"id":"implicit.stat_916797432","text":"# to Level of Socketed Strength Gems","type":"implicit"},{"id":"implicit.stat_2032386732","text":"Socketed Gems are Supported by Level # Life Gain On Hit","type":"implicit"},{"id":"implicit.stat_1702195217","text":"#% Chance to Block Attack Damage","type":"implicit"},{"id":"implicit.stat_1220361974","text":"Enemies you Kill Explode, dealing #% of their Life as Physical Damage","type":"implicit"},{"id":"implicit.stat_338121249","text":"Curse Enemies with Level # Flammability on Hit","type":"implicit"},{"id":"implicit.stat_2947215268","text":"#% increased Damage during any Flask Effect","type":"implicit"},{"id":"implicit.stat_3792821911","text":"Grants Level # Elemental Weakness Skill","type":"implicit"},{"id":"implicit.stat_426847518","text":"Curse Enemies with Level # Frostbite on Hit","type":"implicit"},{"id":"implicit.stat_4293455942","text":"Enemies Cannot Leech Life From you","type":"implicit"},{"id":"implicit.stat_2522672898","text":"#% of Fire Damage from Hits taken as Cold Damage","type":"implicit"},{"id":"implicit.stat_3165492062","text":"#% increased Vaal Skill Critical Strike Chance","type":"implicit"},{"id":"implicit.stat_3067892458","text":"Triggered Spells deal #% increased Spell Damage","type":"implicit"},{"id":"implicit.stat_3922006600","text":"Socketed Gems are Supported by Level # Blood Magic","type":"implicit"},{"id":"implicit.stat_2062753054","text":"Socketed Gems are supported by Level # Fork","type":"implicit"},{"id":"implicit.stat_4223377453","text":"#% increased Brand Attachment range","type":"implicit"},{"id":"implicit.stat_803737631","text":"# to Accuracy Rating","type":"implicit"},{"id":"implicit.stat_4064396395","text":"Attacks with this Weapon Penetrate #% Elemental Resistances","type":"implicit"},{"id":"implicit.stat_1172810729","text":"#% chance to deal Double Damage","type":"implicit"},{"id":"implicit.stat_891277550","text":"Socketed Gems are supported by Level # Life Leech","type":"implicit"},{"id":"implicit.stat_2831165374","text":"Adds # to # Lightning Damage to Spells","type":"implicit"},{"id":"implicit.stat_3005472710","text":"#% chance to Avoid Elemental Ailments","type":"implicit"},{"id":"implicit.stat_1954526925","text":"Immune to Curses if Corrupted","type":"implicit"},{"id":"implicit.stat_2034658008","text":"#% increased Damage per Power Charge","type":"implicit"},{"id":"implicit.stat_3846810663","text":"#% reduced Reflected Damage taken","type":"implicit"},{"id":"implicit.stat_310246444","text":"#% increased Damage while Leeching","type":"implicit"},{"id":"implicit.stat_2023107756","text":"Recover #% of Life on Kill","type":"implicit"},{"id":"implicit.stat_1335054179","text":"#% chance to Ignite","type":"implicit"},{"id":"implicit.stat_1164882313","text":"#% to Quality of Socketed Cold Gems","type":"implicit"},{"id":"implicit.stat_1328548975","text":"#% to Quality of Socketed Support Gems","type":"implicit"},{"id":"implicit.stat_2469416729","text":"Adds # to # Cold Damage to Spells","type":"implicit"},{"id":"implicit.stat_3422008440","text":"#% to Quality of Socketed Fire Gems","type":"implicit"},{"id":"implicit.stat_3759663284","text":"#% increased Projectile Speed","type":"implicit"},{"id":"implicit.stat_2062835769","text":"#% to Quality of Socketed Chaos Gems","type":"implicit"},{"id":"implicit.stat_4154259475","text":"# to Level of Socketed Support Gems","type":"implicit"},{"id":"implicit.stat_3666934677","text":"#% increased Experience gain","type":"implicit"},{"id":"implicit.stat_1962922582","text":"#% chance to gain an additional Vaal Soul on Kill","type":"implicit"},{"id":"implicit.stat_2479683456","text":"Minions Regenerate #% of Life per second","type":"implicit"},{"id":"implicit.stat_1334060246","text":"Adds # to # Lightning Damage","type":"implicit"},{"id":"implicit.stat_3531280422","text":"Adds # to # Chaos Damage","type":"implicit"},{"id":"implicit.stat_720395808","text":"#% of Elemental Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_2387423236","text":"Adds # to # Cold Damage","type":"implicit"},{"id":"implicit.stat_744082851","text":"#% of Chaos Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_2276941637","text":"#% to Quality of Socketed Aura Gems","type":"implicit"},{"id":"implicit.stat_3438201750","text":"#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks","type":"implicit"},{"id":"implicit.stat_3764265320","text":"#% of Physical Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_1294118672","text":"#% increased Damage with Bleeding","type":"implicit"},{"id":"implicit.stat_1950806024","text":"#% to Cold Damage over Time Multiplier","type":"implicit"},{"id":"implicit.stat_2021058489","text":"#% chance to Evade Attack Hits","type":"implicit"},{"id":"implicit.stat_321077055","text":"Adds # to # Fire Damage","type":"implicit"},{"id":"implicit.stat_2089652545","text":"#% chance to Intimidate Enemies for 4 seconds on Hit","type":"implicit"},{"id":"implicit.stat_1133016593","text":"Adds # to # Fire Damage to Spells","type":"implicit"},{"id":"implicit.stat_1030153674","text":"Recover #% of Mana on Kill","type":"implicit"},{"id":"implicit.stat_762600725","text":"# Life gained when you Block","type":"implicit"},{"id":"implicit.stat_682182849","text":"#% chance to Dodge Spell Hits while moving","type":"implicit"},{"id":"implicit.stat_1065580342","text":"#% to Quality of Socketed Lightning Gems","type":"implicit"},{"id":"implicit.stat_1296614065","text":"#% increased Fish Bite Sensitivity","type":"implicit"},{"id":"implicit.stat_829382474","text":"# to Level of Socketed Melee Gems","type":"implicit"},{"id":"implicit.stat_2443492284","text":"Ignites you inflict deal Damage #% faster","type":"implicit"},{"id":"implicit.stat_4095671657","text":"#% to maximum Fire Resistance","type":"implicit"},{"id":"implicit.stat_1419713278","text":"You and nearby Allies deal #% increased Damage","type":"implicit"},{"id":"implicit.stat_3289633055","text":"Socketed Gems have #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_2907156609","text":"Poisons you inflict deal Damage #% faster","type":"implicit"},{"id":"implicit.stat_1538773178","text":"#% chance to Shock","type":"implicit"},{"id":"implicit.stat_3676141501","text":"#% to maximum Cold Resistance","type":"implicit"},{"id":"implicit.stat_2122183138","text":"# Mana gained when you Block","type":"implicit"},{"id":"implicit.stat_1011760251","text":"#% to maximum Lightning Resistance","type":"implicit"},{"id":"implicit.stat_2169938251","text":"Socketed Gems are Supported by Level # Faster Casting","type":"implicit"},{"id":"implicit.stat_3041288981","text":"Recover #% of your maximum Mana when you Block","type":"implicit"},{"id":"implicit.stat_1447222021","text":"Grants Level # Vulnerability Skill","type":"implicit"},{"id":"implicit.stat_821241191","text":"#% increased Life Recovery from Flasks","type":"implicit"},{"id":"implicit.stat_2309614417","text":"#% chance to Freeze","type":"implicit"},{"id":"implicit.stat_1108755349","text":"Socketed Gems are supported by Level # Increased Critical Damage","type":"implicit"},{"id":"implicit.stat_1901158930","text":"Bleeding cannot be inflicted on you","type":"implicit"},{"id":"implicit.stat_1301765461","text":"#% to maximum Chaos Resistance","type":"implicit"},{"id":"implicit.stat_2675603254","text":"# to Level of Socketed Chaos Gems","type":"implicit"},{"id":"implicit.stat_2027269580","text":"# to Level of Socketed Bow Gems","type":"implicit"},{"id":"implicit.stat_3828375170","text":"Bleeding you inflict deals Damage #% faster","type":"implicit"},{"id":"implicit.stat_1880071428","text":"#% increased effect of Non-Curse Auras from your Skills","type":"implicit"},{"id":"implicit.stat_3492025235","text":"Arrows Pierce 1 additional Target","type":"implicit"},{"id":"implicit.stat_2532625478","text":"Socketed Gems are supported by Level # Elemental Damage with Attacks","type":"implicit"},{"id":"implicit.stat_1435748744","text":"Curse Skills have #% increased Skill Effect Duration","type":"implicit"},{"id":"implicit.stat_689720069","text":"Socketed Gems are supported by Level # Stun","type":"implicit"},{"id":"implicit.stat_902747843","text":"#% increased Damage per Frenzy Charge","type":"implicit"},{"id":"implicit.stat_2572192375","text":"Socketed Gems are Supported by Level # Added Fire Damage","type":"implicit"},{"id":"implicit.stat_1459321413","text":"#% increased Bleeding Duration","type":"implicit"},{"id":"implicit.stat_3515686789","text":"#% increased Damage per Endurance Charge","type":"implicit"},{"id":"implicit.stat_3801128794","text":"#% increased Damage per 15 Intelligence","type":"implicit"},{"id":"implicit.stat_26867112","text":"#% increased Attack and Cast Speed if Corrupted","type":"implicit"},{"id":"implicit.stat_149574107","text":"Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity","type":"implicit"},{"id":"implicit.stat_2442647190","text":"Recover #% of Life when you Block","type":"implicit"},{"id":"implicit.stat_2320884914","text":"#% increased Attack and Cast Speed during Onslaught","type":"implicit"},{"id":"implicit.stat_1073942215","text":"#% increased Freeze Duration on Enemies","type":"implicit"},{"id":"implicit.stat_1423639565","text":"Minions have #% to all Elemental Resistances","type":"implicit"},{"id":"implicit.stat_2894476716","text":"Gain # Endurance Charge every second if you\u0027ve been Hit Recently","type":"implicit"},{"id":"implicit.stat_4208907162","text":"#% increased Lightning Damage with Attack Skills","type":"implicit"},{"id":"implicit.stat_3395908304","text":"#% increased Conductivity Curse Effect","type":"implicit"},{"id":"implicit.stat_3731630482","text":"#% to all Elemental Resistances if Corrupted","type":"implicit"},{"id":"implicit.stat_3390848861","text":"Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence","type":"implicit"},{"id":"implicit.stat_282417259","text":"#% increased Flammability Curse Effect","type":"implicit"},{"id":"implicit.stat_2468413380","text":"#% increased Fire Damage with Attack Skills","type":"implicit"},{"id":"implicit.stat_1718147982","text":"#% increased Minion Accuracy Rating","type":"implicit"},{"id":"implicit.stat_3720936304","text":"Socketed Gems are Supported by Level # Increased Area of Effect","type":"implicit"},{"id":"implicit.stat_3684879618","text":"#% increased Movement Speed while Phasing","type":"implicit"},{"id":"implicit.stat_1683578560","text":"Unwavering Stance","type":"implicit"},{"id":"implicit.stat_3741323227","text":"#% increased Flask Effect Duration","type":"implicit"},{"id":"implicit.stat_3759735052","text":"#% increased Attack Speed with Bows","type":"implicit"},{"id":"implicit.stat_1712221299","text":"#% to Critical Strike Multiplier with Bows","type":"implicit"},{"id":"implicit.stat_2200030809","text":"Discipline has #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_4055307827","text":"#% to Chaos Damage over Time Multiplier","type":"implicit"},{"id":"implicit.stat_3192966873","text":"Purity of Ice has #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_1999711879","text":"# to Minimum Power Charges","type":"implicit"},{"id":"implicit.stat_1549898151","text":"Grace has #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_3706959521","text":"# to Minimum Endurance Charges","type":"implicit"},{"id":"implicit.stat_1482572705","text":"#% increased Effect of Socketed Jewels","type":"implicit"},{"id":"implicit.stat_3072232736","text":"Determination has #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_991194404","text":"Regenerate #% of Energy Shield per Second while affected by Discipline","type":"implicit"},{"id":"implicit.stat_1443215722","text":"#% increased Frostbite Curse Effect","type":"implicit"},{"id":"implicit.stat_3215042347","text":"Purity of Fire has #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_3555662994","text":"#% increased Spell Damage per 500 Maximum Mana","type":"implicit"},{"id":"implicit.stat_644456512","text":"#% reduced Flask Charges used","type":"implicit"},{"id":"implicit.stat_4118987751","text":"#% increased Maximum total Recovery per second from Life Leech","type":"implicit"},{"id":"implicit.stat_3280600715","text":"#% to Quality of Socketed Bow Gems","type":"implicit"},{"id":"implicit.stat_1452809865","text":"#% increased Flask Charges gained","type":"implicit"},{"id":"implicit.stat_4134865890","text":"#% increased Attack Damage per 500 Maximum Mana","type":"implicit"},{"id":"implicit.stat_3743438423","text":"#% of Physical Damage is taken from Mana before Life","type":"implicit"},{"id":"implicit.stat_96977651","text":"#% increased Maximum total Recovery per second from Mana Leech","type":"implicit"},{"id":"implicit.stat_658456881","text":"# to Minimum Frenzy Charges","type":"implicit"},{"id":"implicit.stat_1060540099","text":"Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength","type":"implicit"},{"id":"implicit.stat_1653010703","text":"#% to Non-Ailment Chaos Damage over Time Multiplier","type":"implicit"},{"id":"implicit.stat_3761858151","text":"#% increased Chaos Damage with Spell Skills","type":"implicit"},{"id":"implicit.stat_2402136583","text":"Gain #% of Lightning Damage as Extra Chaos Damage","type":"implicit"},{"id":"implicit.stat_2451060005","text":"You can catch Corrupted Fish","type":"implicit"},{"id":"implicit.stat_169946467","text":"#% increased Accuracy Rating with Bows","type":"implicit"},{"id":"implicit.stat_1285430327","text":"Purity of Lightning has #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_1959092146","text":"#% increased Chaos Damage with Attack Skills","type":"implicit"},{"id":"implicit.stat_402920808","text":"#% increased Physical Damage with Bows","type":"implicit"},{"id":"implicit.stat_3293699237","text":"#% increased Attack Speed with Swords","type":"implicit"},{"id":"implicit.stat_361162316","text":"#% increased Fire Damage with Spell Skills","type":"implicit"},{"id":"implicit.stat_2228518621","text":"Raised Zombies deal #% increased Damage","type":"implicit"},{"id":"implicit.stat_2266750692","text":"#% increased Physical Damage with Attack Skills","type":"implicit"},{"id":"implicit.stat_1430255627","text":"#% increased Physical Damage with Spell Skills","type":"implicit"},{"id":"implicit.stat_3935031607","text":"#% increased Lightning Damage with Spell Skills","type":"implicit"},{"id":"implicit.stat_3310914132","text":"#% increased Rarity of Fish Caught","type":"implicit"},{"id":"implicit.stat_2186994986","text":"#% increased Cold Damage with Spell Skills","type":"implicit"},{"id":"implicit.stat_158779585","text":"#% increased Effect of Fortify on you","type":"implicit"},{"id":"implicit.stat_3604946673","text":"# to Level of Socketed Minion Gems","type":"implicit"},{"id":"implicit.stat_3059357595","text":"Skeletons deal #% increased Damage","type":"implicit"},{"id":"implicit.stat_2347923784","text":"#% increased Attack Damage if Corrupted","type":"implicit"},{"id":"implicit.stat_3348324479","text":"#% increased Elemental Weakness Curse Effect","type":"implicit"},{"id":"implicit.stat_1241396104","text":"#% to Critical Strike Multiplier with Wands","type":"implicit"},{"id":"implicit.stat_3720627346","text":"#% increased Attack Speed with Wands","type":"implicit"},{"id":"implicit.stat_318953428","text":"#% chance to Blind Enemies on Hit with Attacks","type":"implicit"},{"id":"implicit.stat_1678690824","text":"#% increased Spell Damage while Dual Wielding","type":"implicit"},{"id":"implicit.stat_3550868361","text":"#% increased Attack Speed with Axes","type":"implicit"},{"id":"implicit.stat_2813626504","text":"Spells have a #% chance to deal Double Damage","type":"implicit"},{"id":"implicit.stat_1421645223","text":"#% increased Attack Speed with Claws","type":"implicit"},{"id":"implicit.stat_2889664727","text":"#% chance to Avoid Lightning Damage from Hits","type":"implicit"},{"id":"implicit.stat_2382196858","text":"#% increased Cast Speed while Dual Wielding","type":"implicit"},{"id":"implicit.stat_430248187","text":"#% increased Area of Effect if you have Stunned an Enemy Recently","type":"implicit"},{"id":"implicit.stat_3188455409","text":"Regenerate #% of Mana per second","type":"implicit"},{"id":"implicit.stat_1065909420","text":"#% increased Vulnerability Curse Effect","type":"implicit"},{"id":"implicit.stat_2538566497","text":"#% increased Attack Speed with Daggers","type":"implicit"},{"id":"implicit.stat_3814560373","text":"#% increased Physical Damage with Swords","type":"implicit"},{"id":"implicit.stat_2066542501","text":"#% increased Cast Speed while wielding a Staff","type":"implicit"},{"id":"implicit.stat_1766142294","text":"#% increased Spell Damage while holding a Shield","type":"implicit"},{"id":"implicit.stat_3948776386","text":"#% increased Damage per 15 Strength","type":"implicit"},{"id":"implicit.stat_2769075491","text":"#% increased Physical Damage with Wands","type":"implicit"},{"id":"implicit.stat_2612056840","text":"#% increased Spell Damage per 16 Dexterity","type":"implicit"},{"id":"implicit.stat_3496944181","text":"#% increased Spell Damage while wielding a Staff","type":"implicit"},{"id":"implicit.stat_2880601380","text":"#% increased Movement Speed if Corrupted","type":"implicit"},{"id":"implicit.stat_2008219439","text":"#% increased Physical Damage with Axes","type":"implicit"},{"id":"implicit.stat_42242677","text":"#% chance to Avoid Fire Damage from Hits","type":"implicit"},{"id":"implicit.stat_3998601568","text":"#% to Critical Strike Multiplier with Daggers","type":"implicit"},{"id":"implicit.stat_3743375737","text":"#% chance to Avoid Cold Damage from Hits","type":"implicit"},{"id":"implicit.stat_988575597","text":"#% increased Energy Shield Recovery rate","type":"implicit"},{"id":"implicit.stat_3762868276","text":"Regenerate # Mana per Second while holding a Shield","type":"implicit"},{"id":"implicit.stat_1361343333","text":"Regenerate # Mana per Second while Dual Wielding","type":"implicit"},{"id":"implicit.stat_1394963553","text":"#% increased Attack Speed with Staves","type":"implicit"},{"id":"implicit.stat_3629080637","text":"#% to Critical Strike Multiplier for Spells while wielding a Staff","type":"implicit"},{"id":"implicit.stat_3882531569","text":"#% increased Physical Damage with Daggers","type":"implicit"},{"id":"implicit.stat_3375935924","text":"Minions have #% increased Attack Speed","type":"implicit"},{"id":"implicit.stat_118398748","text":"#% increased Trap Throwing Speed","type":"implicit"},{"id":"implicit.stat_635761691","text":"#% increased Physical Damage with Claws","type":"implicit"},{"id":"implicit.stat_2515515064","text":"#% increased Attack Speed with Maces or Sceptres","type":"implicit"},{"id":"implicit.stat_1218939541","text":"#% increased Critical Strike Chance for Spells while Dual Wielding","type":"implicit"},{"id":"implicit.stat_1474913037","text":"#% to Critical Strike Multiplier with Staves","type":"implicit"},{"id":"implicit.stat_140429540","text":"#% increased Critical Strike Chance for Spells while wielding a Staff","type":"implicit"},{"id":"implicit.stat_1388668644","text":"Regenerate # Mana per second while wielding a Staff","type":"implicit"},{"id":"implicit.stat_1923879260","text":"Attacks have #% chance to cause Bleeding","type":"implicit"},{"id":"implicit.stat_1612163368","text":"#% increased Cast Speed while holding a Shield","type":"implicit"},{"id":"implicit.stat_2090868905","text":"#% increased Accuracy Rating with Swords","type":"implicit"},{"id":"implicit.stat_374116820","text":"#% increased Spell Damage if Corrupted","type":"implicit"},{"id":"implicit.stat_2311200892","text":"#% to Critical Strike Multiplier for Spells while holding a Shield","type":"implicit"},{"id":"implicit.stat_1609570656","text":"#% increased Physical Damage while you have Unholy Might","type":"implicit"},{"id":"implicit.stat_11106713","text":"#% of Spell Damage Leeched as Energy Shield","type":"implicit"},{"id":"implicit.stat_2811834828","text":"#% to Critical Strike Multiplier with Claws","type":"implicit"},{"id":"implicit.stat_4000101551","text":"Minions have #% increased Cast Speed","type":"implicit"},{"id":"implicit.stat_2062174346","text":"#% increased Damage per 15 Dexterity","type":"implicit"},{"id":"implicit.stat_2150183156","text":"#% increased Accuracy Rating with Wands","type":"implicit"},{"id":"implicit.stat_3774831856","text":"#% increased Physical Damage with Maces or Sceptres","type":"implicit"},{"id":"implicit.stat_1809006367","text":"Totems gain #% to all Elemental Resistances","type":"implicit"},{"id":"implicit.stat_2353576063","text":"#% increased Effect of your Curses","type":"implicit"},{"id":"implicit.stat_287491423","text":"#% additional Physical Damage Reduction against Abyssal Monsters","type":"implicit"},{"id":"implicit.stat_3114492047","text":"#% to Critical Strike Multiplier with Swords","type":"implicit"},{"id":"implicit.stat_2538120572","text":"#% increased Accuracy Rating with Axes","type":"implicit"},{"id":"implicit.stat_458899422","text":"#% to Critical Strike Multiplier with Maces or Sceptres","type":"implicit"},{"id":"implicit.stat_2054715690","text":"#% increased Accuracy Rating with Daggers","type":"implicit"},{"id":"implicit.stat_3485067555","text":"#% increased Chill Duration on Enemies","type":"implicit"},{"id":"implicit.stat_795138349","text":"#% chance to Poison on Hit","type":"implicit"},{"id":"implicit.stat_952509814","text":"#% increased Critical Strike Chance for Spells while holding a Shield","type":"implicit"},{"id":"implicit.stat_3319896421","text":"Gain #% of Physical Damage as Extra Chaos Damage","type":"implicit"},{"id":"implicit.stat_4219746989","text":"#% to Critical Strike Multiplier with Axes","type":"implicit"},{"id":"implicit.stat_2349237916","text":"#% to Critical Strike Multiplier for Spells while Dual Wielding","type":"implicit"},{"id":"implicit.stat_2915373966","text":"Gain #% of Cold Damage as Extra Chaos Damage","type":"implicit"},{"id":"implicit.stat_280213220","text":"#% chance to Taunt Enemies on Hit with Attacks","type":"implicit"},{"id":"implicit.stat_1297965523","text":"#% increased Accuracy Rating with Claws","type":"implicit"},{"id":"implicit.stat_3739863694","text":"#% chance to Impale Enemies on Hit with Attacks","type":"implicit"},{"id":"implicit.stat_3522931817","text":"#% increased Damage taken per 250 Intelligence","type":"implicit"},{"id":"implicit.stat_3909846940","text":"Item drops on Death if Equipped by an Animated Guardian","type":"implicit"},{"id":"implicit.stat_2477636501","text":"#% increased Damage taken per 250 Dexterity","type":"implicit"},{"id":"implicit.stat_860668586","text":"#% increased Cold Damage with Attack Skills","type":"implicit"},{"id":"implicit.stat_3374165039","text":"#% increased Totem Placement speed","type":"implicit"},{"id":"implicit.stat_1443108510","text":"#% increased Damage taken per 250 Strength","type":"implicit"},{"id":"implicit.stat_3150705301","text":"#% increased Physical Damage with Staves","type":"implicit"},{"id":"implicit.stat_3208450870","text":"#% increased Accuracy Rating with Maces or Sceptres","type":"implicit"},{"id":"implicit.stat_3309607228","text":"#% reduced Damage taken if Corrupted","type":"implicit"},{"id":"implicit.stat_1122074043","text":"Vitality has #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_2094281311","text":"#% to Animated Guardian Elemental Resistances","type":"implicit"},{"id":"implicit.stat_2013799819","text":"#% increased Maximum total Recovery per second from Energy Shield Leech","type":"implicit"},{"id":"implicit.stat_3002506763","text":"#% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed","type":"implicit"},{"id":"implicit.stat_1617235962","text":"#% increased Accuracy Rating with Staves","type":"implicit"},{"id":"implicit.stat_2323242761","text":"#% chance to gain a Frenzy Charge on Hit","type":"implicit"},{"id":"implicit.stat_3871212304","text":"Increases and Reductions to Damage of Vaal Skills also apply to Non-Vaal Skills","type":"implicit"},{"id":"implicit.stat_3887484120","text":"#% increased maximum Life if Corrupted","type":"implicit"},{"id":"implicit.stat_1896971621","text":"#% increased Mine Throwing Speed","type":"implicit"},{"id":"implicit.stat_1025108940","text":"#% increased maximum Energy Shield if Corrupted","type":"implicit"},{"id":"implicit.stat_3240073117","text":"#% increased Life Recovery rate","type":"implicit"},{"id":"implicit.stat_67280387","text":"Gain #% of Maximum Life as Extra Maximum Energy Shield","type":"implicit"},{"id":"implicit.stat_3296873305","text":"Remove Chill and Freeze when you use a Flask","type":"implicit"},{"id":"implicit.stat_3802667447","text":"#% increased Quantity of Fish Caught","type":"implicit"},{"id":"implicit.stat_2877754099","text":"#% to Quality of Socketed Dexterity Gems","type":"implicit"},{"id":"implicit.stat_3961014595","text":"#% increased Spell Damage per 16 Intelligence","type":"implicit"},{"id":"implicit.stat_1599775597","text":"Gain #% of Fire Damage as Extra Chaos Damage","type":"implicit"},{"id":"implicit.stat_4249521944","text":"#% increased Spell Damage per 16 Strength","type":"implicit"},{"id":"implicit.stat_561861132","text":"Remove Shock when you use a Flask","type":"implicit"},{"id":"implicit.stat_327253797","text":"#% chance when Hit for double Armour effect","type":"implicit"},{"id":"implicit.stat_3645693773","text":"Spectres have #% increased Damage","type":"implicit"},{"id":"implicit.stat_1086147743","text":"#% increased Ignite Duration on Enemies","type":"implicit"},{"id":"implicit.stat_969576725","text":"#% chance to Evade Attack Hits while affected by Grace","type":"implicit"},{"id":"implicit.stat_301214136","text":"#% to maximum Chance to Dodge Attack Hits","type":"implicit"},{"id":"implicit.stat_211381198","text":"# Energy Shield gained for each Enemy hit by your Attacks","type":"implicit"},{"id":"implicit.stat_2388574377","text":"#% to maximum Chance to Block Spell Damage","type":"implicit"},{"id":"implicit.stat_1162425204","text":"Remove Ignite and Burning when you use a Flask","type":"implicit"},{"id":"implicit.stat_1211769158","text":"Damage with Weapons Penetrates #% Cold Resistance","type":"implicit"},{"id":"implicit.stat_1073314277","text":"#% increased Spell Damage per 10 Strength","type":"implicit"},{"id":"implicit.stat_2818518881","text":"#% increased Spell Damage per 10 Intelligence","type":"implicit"},{"id":"implicit.stat_4023723828","text":"#% increased Global Critical Strike Chance if Corrupted","type":"implicit"},{"id":"implicit.stat_2221570601","text":"#% Global chance to Blind Enemies on hit","type":"implicit"},{"id":"implicit.stat_4251717817","text":"#% increased Area Damage","type":"implicit"},{"id":"implicit.stat_547412107","text":"#% increased Vaal Skill Effect Duration","type":"implicit"},{"id":"implicit.stat_3980924189","text":"#% to maximum Chance to Dodge Spell Hits","type":"implicit"},{"id":"implicit.stat_1839076647","text":"#% increased Projectile Damage","type":"implicit"}]},{"label":"Fractured","entries":[{"id":"fractured.stat_3299347043","text":"# to maximum Life","type":"fractured"},{"id":"fractured.stat_1671376347","text":"#% to Lightning Resistance","type":"fractured"},{"id":"fractured.stat_4220027924","text":"#% to Cold Resistance","type":"fractured"},{"id":"fractured.stat_3372524247","text":"#% to Fire Resistance","type":"fractured"},{"id":"fractured.stat_2511217560","text":"#% increased Stun and Block Recovery","type":"fractured"},{"id":"fractured.stat_1050105434","text":"# to maximum Mana","type":"fractured"},{"id":"fractured.stat_4080418644","text":"# to Strength","type":"fractured"},{"id":"fractured.stat_3261801346","text":"# to Dexterity","type":"fractured"},{"id":"fractured.stat_328541901","text":"# to Intelligence","type":"fractured"},{"id":"fractured.stat_3325883026","text":"Regenerate # Life per second","type":"fractured"},{"id":"fractured.stat_691932474","text":"# to Accuracy Rating (Local)","type":"fractured"},{"id":"fractured.stat_4052037485","text":"# to maximum Energy Shield (Local)","type":"fractured"},{"id":"fractured.stat_803737631","text":"# to Accuracy Rating","type":"fractured"},{"id":"fractured.stat_3556824919","text":"#% to Global Critical Strike Multiplier","type":"fractured"},{"id":"fractured.stat_3336890334","text":"Adds # to # Lightning Damage (Local)","type":"fractured"},{"id":"fractured.stat_210067635","text":"#% increased Attack Speed (Local)","type":"fractured"},{"id":"fractured.stat_709508406","text":"Adds # to # Fire Damage (Local)","type":"fractured"},{"id":"fractured.stat_3489782002","text":"# to maximum Energy Shield","type":"fractured"},{"id":"fractured.stat_3917489142","text":"#% increased Rarity of Items found","type":"fractured"},{"id":"fractured.stat_1509134228","text":"#% increased Physical Damage","type":"fractured"},{"id":"fractured.stat_1037193709","text":"Adds # to # Cold Damage (Local)","type":"fractured"},{"id":"fractured.stat_4015621042","text":"#% increased Energy Shield (Local)","type":"fractured"},{"id":"fractured.stat_53045048","text":"# to Evasion Rating (Local)","type":"fractured"},{"id":"fractured.stat_1940865751","text":"Adds # to # Physical Damage (Local)","type":"fractured"},{"id":"fractured.stat_2375316951","text":"#% increased Critical Strike Chance","type":"fractured"},{"id":"fractured.stat_3484657501","text":"# to Armour (Local)","type":"fractured"},{"id":"fractured.stat_2517001139","text":"#% increased Stun Duration on Enemies","type":"fractured"},{"id":"fractured.stat_3695891184","text":"# Life gained on Kill","type":"fractured"},{"id":"fractured.stat_3639275092","text":"#% increased Attribute Requirements","type":"fractured"},{"id":"fractured.stat_789117908","text":"#% increased Mana Regeneration Rate","type":"fractured"},{"id":"fractured.stat_2250533757","text":"#% increased Movement Speed","type":"fractured"},{"id":"fractured.stat_3032590688","text":"Adds # to # Physical Damage to Attacks","type":"fractured"},{"id":"fractured.stat_1368271171","text":"# Mana gained on Kill","type":"fractured"},{"id":"fractured.stat_2923486259","text":"#% to Chaos Resistance","type":"fractured"},{"id":"fractured.stat_2901986750","text":"#% to all Elemental Resistances","type":"fractured"},{"id":"fractured.stat_3767873853","text":"Reflects # Physical Damage to Melee Attackers","type":"fractured"},{"id":"fractured.stat_1263695895","text":"#% increased Light Radius","type":"fractured"},{"id":"fractured.stat_737908626","text":"#% increased Critical Strike Chance for Spells","type":"fractured"},{"id":"fractured.stat_124859000","text":"#% increased Evasion Rating (Local)","type":"fractured"},{"id":"fractured.stat_2974417149","text":"#% increased Spell Damage","type":"fractured"},{"id":"fractured.stat_821021828","text":"# Life gained for each Enemy hit by Attacks","type":"fractured"},{"id":"fractured.stat_1379411836","text":"# to all Attributes","type":"fractured"},{"id":"fractured.stat_1999113824","text":"#% increased Evasion and Energy Shield (Local)","type":"fractured"},{"id":"fractured.stat_387439868","text":"#% increased Elemental Damage with Attack Skills","type":"fractured"},{"id":"fractured.stat_3321629045","text":"#% increased Armour and Energy Shield (Local)","type":"fractured"},{"id":"fractured.stat_1443060084","text":"#% reduced Enemy Stun Threshold","type":"fractured"},{"id":"fractured.stat_1062208444","text":"#% increased Armour (Local)","type":"fractured"},{"id":"fractured.stat_2891184298","text":"#% increased Cast Speed","type":"fractured"},{"id":"fractured.stat_2451402625","text":"#% increased Armour and Evasion (Local)","type":"fractured"},{"id":"fractured.stat_1294118672","text":"#% increased Damage with Bleeding","type":"fractured"},{"id":"fractured.stat_3291658075","text":"#% increased Cold Damage","type":"fractured"},{"id":"fractured.stat_829382474","text":"# to Level of Socketed Melee Gems","type":"fractured"},{"id":"fractured.stat_3962278098","text":"#% increased Fire Damage","type":"fractured"},{"id":"fractured.stat_1754445556","text":"Adds # to # Lightning Damage to Attacks","type":"fractured"},{"id":"fractured.stat_2831165374","text":"Adds # to # Lightning Damage to Spells","type":"fractured"},{"id":"fractured.stat_1290399200","text":"#% increased Damage with Poison","type":"fractured"},{"id":"fractured.stat_3593843976","text":"#% of Physical Attack Damage Leeched as Life","type":"fractured"},{"id":"fractured.stat_1573130764","text":"Adds # to # Fire Damage to Attacks","type":"fractured"},{"id":"fractured.stat_4067062424","text":"Adds # to # Cold Damage to Attacks","type":"fractured"},{"id":"fractured.stat_2469416729","text":"Adds # to # Cold Damage to Spells","type":"fractured"},{"id":"fractured.stat_1133016593","text":"Adds # to # Fire Damage to Spells","type":"fractured"},{"id":"fractured.stat_681332047","text":"#% increased Attack Speed","type":"fractured"},{"id":"fractured.stat_587431675","text":"#% increased Global Critical Strike Chance","type":"fractured"},{"id":"fractured.stat_3237948413","text":"#% of Physical Attack Damage Leeched as Mana","type":"fractured"},{"id":"fractured.stat_2231156303","text":"#% increased Lightning Damage","type":"fractured"},{"id":"fractured.stat_3759663284","text":"#% increased Projectile Speed","type":"fractured"},{"id":"fractured.stat_4043416969","text":"# to Level of Socketed Lightning Gems","type":"fractured"},{"id":"fractured.stat_809229260","text":"# to Armour","type":"fractured"},{"id":"fractured.stat_2144192055","text":"# to Evasion Rating","type":"fractured"},{"id":"fractured.stat_624954515","text":"#% increased Global Accuracy Rating","type":"fractured"},{"id":"fractured.stat_2011656677","text":"#% increased Poison Duration","type":"fractured"},{"id":"fractured.stat_3604946673","text":"# to Level of Socketed Minion Gems","type":"fractured"},{"id":"fractured.stat_1459321413","text":"#% increased Bleeding Duration","type":"fractured"},{"id":"fractured.stat_2482852589","text":"#% increased maximum Energy Shield","type":"fractured"},{"id":"fractured.stat_1175385867","text":"#% increased Burning Damage","type":"fractured"},{"id":"fractured.stat_1645459191","text":"# to Level of Socketed Cold Gems","type":"fractured"},{"id":"fractured.stat_2797971005","text":"# Life gained for each Enemy hit by your Attacks","type":"fractured"},{"id":"fractured.stat_339179093","text":"# to Level of Socketed Fire Gems","type":"fractured"},{"id":"fractured.stat_3885634897","text":"#% chance to Poison on Hit (Local)","type":"fractured"},{"id":"fractured.stat_2027269580","text":"# to Level of Socketed Bow Gems","type":"fractured"},{"id":"fractured.stat_2106365538","text":"#% increased Evasion Rating","type":"fractured"},{"id":"fractured.stat_2866361420","text":"#% increased Armour","type":"fractured"},{"id":"fractured.stat_2749862839","text":"#% chance to Dodge Attack Hits","type":"fractured"},{"id":"fractured.stat_1310194496","text":"#% increased Global Physical Damage","type":"fractured"},{"id":"fractured.stat_2675603254","text":"# to Level of Socketed Chaos Gems","type":"fractured"},{"id":"fractured.stat_1519615863","text":"#% chance to cause Bleeding on Hit","type":"fractured"},{"id":"fractured.stat_2843100721","text":"# to Level of Socketed Gems","type":"fractured"},{"id":"fractured.stat_4253454700","text":"#% Chance to Block (Shields)","type":"fractured"},{"id":"fractured.stat_3594640492","text":"Regenerate #% of Energy Shield per second","type":"fractured"},{"id":"fractured.stat_2122183138","text":"# Mana gained when you Block","type":"fractured"},{"id":"fractured.stat_983749596","text":"#% increased maximum Life","type":"fractured"},{"id":"fractured.stat_4262448838","text":"#% chance to Avoid being Stunned","type":"fractured"},{"id":"fractured.stat_2915373966","text":"Gain #% of Cold Damage as Extra Chaos Damage","type":"fractured"},{"id":"fractured.stat_2309614417","text":"#% chance to Freeze","type":"fractured"},{"id":"fractured.stat_3416410609","text":"#% Chance to Block Projectile Attack Damage","type":"fractured"},{"id":"fractured.stat_2223678961","text":"Adds # to # Chaos Damage (Local)","type":"fractured"},{"id":"fractured.stat_644456512","text":"#% reduced Flask Charges used","type":"fractured"},{"id":"fractured.stat_3741323227","text":"#% increased Flask Effect Duration","type":"fractured"},{"id":"fractured.stat_1599775597","text":"Gain #% of Fire Damage as Extra Chaos Damage","type":"fractured"},{"id":"fractured.stat_1538773178","text":"#% chance to Shock","type":"fractured"},{"id":"fractured.stat_3005472710","text":"#% chance to Avoid Elemental Ailments","type":"fractured"},{"id":"fractured.stat_51994685","text":"#% increased Flask Life Recovery rate","type":"fractured"},{"id":"fractured.stat_967627487","text":"#% increased Damage over Time","type":"fractured"},{"id":"fractured.stat_4251717817","text":"#% increased Area Damage","type":"fractured"},{"id":"fractured.stat_1335054179","text":"#% chance to Ignite","type":"fractured"},{"id":"fractured.stat_2402136583","text":"Gain #% of Lightning Damage as Extra Chaos Damage","type":"fractured"},{"id":"fractured.stat_1452809865","text":"#% increased Flask Charges gained","type":"fractured"},{"id":"fractured.stat_2672805335","text":"#% increased Attack and Cast Speed","type":"fractured"},{"id":"fractured.stat_1040269876","text":"Adds # to # Lightning Damage to Bow Attacks","type":"fractured"},{"id":"fractured.stat_3319896421","text":"Gain #% of Physical Damage as Extra Chaos Damage","type":"fractured"},{"id":"fractured.stat_1653010703","text":"#% to Non-Ailment Chaos Damage over Time Multiplier","type":"fractured"},{"id":"fractured.stat_696707743","text":"#% chance to Dodge Spell Hits","type":"fractured"},{"id":"fractured.stat_836936635","text":"Regenerate #% of Life per second","type":"fractured"},{"id":"fractured.stat_3771516363","text":"#% additional Physical Damage Reduction","type":"fractured"},{"id":"fractured.stat_3441501978","text":"#% to Fire and Lightning Resistances","type":"fractured"},{"id":"fractured.stat_1412217137","text":"#% increased Flask Mana Recovery rate","type":"fractured"},{"id":"fractured.stat_215124030","text":"Adds # to # Cold Damage to Bow Attacks","type":"fractured"},{"id":"fractured.stat_2915988346","text":"#% to Fire and Cold Resistances","type":"fractured"},{"id":"fractured.stat_1172029298","text":"Minions deal # to # additional Physical Damage","type":"fractured"},{"id":"fractured.stat_4249220643","text":"#% increased Attack Speed while Dual Wielding","type":"fractured"},{"id":"fractured.stat_3805075944","text":"#% increased Attack Speed while holding a Shield","type":"fractured"},{"id":"fractured.stat_1535626285","text":"# to Strength and Intelligence","type":"fractured"},{"id":"fractured.stat_4277795662","text":"#% to Cold and Lightning Resistances","type":"fractured"},{"id":"fractured.stat_2300185227","text":"# to Dexterity and Intelligence","type":"fractured"},{"id":"fractured.stat_561307714","text":"#% Chance to Block Spell Damage","type":"fractured"},{"id":"fractured.stat_1839076647","text":"#% increased Projectile Damage","type":"fractured"},{"id":"fractured.stat_2154246560","text":"#% increased Damage","type":"fractured"},{"id":"fractured.stat_538848803","text":"# to Strength and Dexterity","type":"fractured"},{"id":"fractured.stat_2561836520","text":"Regenerate # Energy Shield per second","type":"fractured"},{"id":"fractured.stat_3152982863","text":"Minions deal # to # additional Cold Damage","type":"fractured"},{"id":"fractured.stat_2930653471","text":"Minions deal # to # additional Lightning Damage","type":"fractured"},{"id":"fractured.stat_1813451228","text":"#% increased Attack Speed with One Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_474294393","text":"#% reduced Mana Cost of Skills","type":"fractured"},{"id":"fractured.stat_3351784991","text":"Minions deal # to # additional Fire Damage","type":"fractured"},{"id":"fractured.stat_3023957681","text":"#% chance to gain Onslaught for 4 seconds on Kill","type":"fractured"},{"id":"fractured.stat_1585344030","text":"#% increased Attack Speed if you\u0027ve dealt a Critical Strike Recently","type":"fractured"},{"id":"fractured.stat_2918708827","text":"#% chance to gain Phasing for 4 seconds on Kill","type":"fractured"},{"id":"fractured.stat_1950806024","text":"#% to Cold Damage over Time Multiplier","type":"fractured"},{"id":"fractured.stat_2889601781","text":"Minions deal # to # additional Chaos Damage","type":"fractured"},{"id":"fractured.stat_3120164895","text":"Adds # to # Fire Damage to Bow Attacks","type":"fractured"},{"id":"fractured.stat_2748665614","text":"#% increased maximum Mana","type":"fractured"},{"id":"fractured.stat_1002362373","text":"#% increased Melee Damage","type":"fractured"},{"id":"fractured.stat_3550868361","text":"#% increased Attack Speed with Axes","type":"fractured"},{"id":"fractured.stat_762600725","text":"# Life gained when you Block","type":"fractured"},{"id":"fractured.stat_3293699237","text":"#% increased Attack Speed with Swords","type":"fractured"},{"id":"fractured.stat_674553446","text":"Adds # to # Chaos Damage to Attacks","type":"fractured"},{"id":"fractured.stat_4055307827","text":"#% to Chaos Damage over Time Multiplier","type":"fractured"},{"id":"fractured.stat_2787733863","text":"Adds # to # Lightning Damage to Wand Attacks","type":"fractured"},{"id":"fractured.stat_4291461939","text":"Regenerate # Mana per second","type":"fractured"},{"id":"fractured.stat_2441475928","text":"#% to Critical Strike Multiplier with Lightning Skills","type":"fractured"},{"id":"fractured.stat_3141070085","text":"#% increased Elemental Damage","type":"fractured"},{"id":"fractured.stat_287491423","text":"#% additional Physical Damage Reduction against Abyssal Monsters","type":"fractured"},{"id":"fractured.stat_2307547323","text":"#% to Critical Strike Multiplier with Fire Skills","type":"fractured"},{"id":"fractured.stat_915908446","text":"#% to Critical Strike Multiplier with Cold Skills","type":"fractured"},{"id":"fractured.stat_3851254963","text":"#% increased Totem Damage","type":"fractured"},{"id":"fractured.stat_1917910910","text":"#% increased Attack Speed with Two Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_1073942215","text":"#% increased Freeze Duration on Enemies","type":"fractured"},{"id":"fractured.stat_1923879260","text":"Attacks have #% chance to cause Bleeding","type":"fractured"},{"id":"fractured.stat_2843214518","text":"#% increased Attack Damage","type":"fractured"},{"id":"fractured.stat_972201717","text":"Adds # to # Cold Damage to Sword Attacks","type":"fractured"},{"id":"fractured.stat_2937483991","text":"#% to Critical Strike Multiplier if you\u0027ve Killed Recently","type":"fractured"},{"id":"fractured.stat_2546185479","text":"#% to Critical Strike Multiplier while Dual Wielding","type":"fractured"},{"id":"fractured.stat_2435536961","text":"Adds # to # Physical Damage to Spells","type":"fractured"},{"id":"fractured.stat_2300399854","text":"Adds # to # Chaos Damage to Spells","type":"fractured"},{"id":"fractured.stat_3854949926","text":"#% increased Movement Speed if you haven\u0027t taken Damage Recently","type":"fractured"},{"id":"fractured.stat_1760576992","text":"Adds # to # Physical Damage to Bow Attacks","type":"fractured"},{"id":"fractured.stat_770672621","text":"Minions have #% increased maximum Life","type":"fractured"},{"id":"fractured.stat_1766142294","text":"#% increased Spell Damage while holding a Shield","type":"fractured"},{"id":"fractured.stat_938645499","text":"#% Chance to Block Spell Damage while holding a Shield","type":"fractured"},{"id":"fractured.stat_2137912951","text":"#% increased Mine Damage","type":"fractured"},{"id":"fractured.stat_3257279374","text":"#% increased Damage against Abyssal Monsters","type":"fractured"},{"id":"fractured.stat_670153687","text":"#% to Critical Strike Multiplier with One Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_908516597","text":"Regenerate #% of Life per second while moving","type":"fractured"},{"id":"fractured.stat_734823525","text":"#% increased Evasion Rating while moving","type":"fractured"},{"id":"fractured.stat_1237708713","text":"Adds # to # Lightning Damage to Sword Attacks","type":"fractured"},{"id":"fractured.stat_1174076861","text":"#% increased Cast Speed if you\u0027ve dealt a Critical Strike Recently","type":"fractured"},{"id":"fractured.stat_4193088553","text":"#% increased Damage over Time while wielding a Two Handed Weapon","type":"fractured"},{"id":"fractured.stat_1072119541","text":"#% increased Damage if you\u0027ve Killed Recently","type":"fractured"},{"id":"fractured.stat_3278968597","text":"#% chance to Dodge Attack and Spell Hits if you\u0027ve\nbeen Hit Recently","type":"fractured"},{"id":"fractured.stat_736967255","text":"#% increased Chaos Damage","type":"fractured"},{"id":"fractured.stat_1101206134","text":"#% Chance to Block Spell Damage if you were Damaged by a Hit Recently","type":"fractured"},{"id":"fractured.stat_3668351662","text":"#% increased Shock Duration on Enemies","type":"fractured"},{"id":"fractured.stat_3759735052","text":"#% increased Attack Speed with Bows","type":"fractured"},{"id":"fractured.stat_83050999","text":"#% increased Damage with Swords","type":"fractured"},{"id":"fractured.stat_1104796138","text":"#% increased Critical Strike Chance with Fire Skills","type":"fractured"},{"id":"fractured.stat_2166444903","text":"#% Chance to Block Attack Damage while Dual Wielding","type":"fractured"},{"id":"fractured.stat_138741818","text":"#% Chance to Block Spell Damage while Dual Wielding","type":"fractured"},{"id":"fractured.stat_2856328513","text":"#% increased Critical Strike Chance if you haven\u0027t dealt a Critical Strike Recently","type":"fractured"},{"id":"fractured.stat_1086147743","text":"#% increased Ignite Duration on Enemies","type":"fractured"},{"id":"fractured.stat_1186596295","text":"#% increased Critical Strike Chance with Lightning Skills","type":"fractured"},{"id":"fractured.stat_2383797932","text":"Adds # to # Cold Damage to Wand Attacks","type":"fractured"},{"id":"fractured.stat_1421645223","text":"#% increased Attack Speed with Claws","type":"fractured"},{"id":"fractured.stat_1569407745","text":"#% to Critical Strike Multiplier with Elemental Skills","type":"fractured"},{"id":"fractured.stat_4231842891","text":"Adds # to # Lightning Damage to Claw Attacks","type":"fractured"},{"id":"fractured.stat_4061558269","text":"#% Chance to Block Attack Damage while holding a Shield","type":"fractured"},{"id":"fractured.stat_2096159630","text":"Adds # to # Lightning Damage to Mace or Sceptre Attacks","type":"fractured"},{"id":"fractured.stat_686254215","text":"#% increased Totem Life","type":"fractured"},{"id":"fractured.stat_318953428","text":"#% chance to Blind Enemies on Hit with Attacks","type":"fractured"},{"id":"fractured.stat_928238845","text":"#% increased Cast Speed with Cold Skills","type":"fractured"},{"id":"fractured.stat_3603666270","text":"#% additional Physical Damage Reduction if you weren\u0027t Damaged by a Hit Recently","type":"fractured"},{"id":"fractured.stat_3702513529","text":"#% increased Attack Critical Strike Chance while Dual Wielding","type":"fractured"},{"id":"fractured.stat_2382196858","text":"#% increased Cast Speed while Dual Wielding","type":"fractured"},{"id":"fractured.stat_3337344042","text":"#% increased Critical Strike Chance with Cold Skills","type":"fractured"},{"id":"fractured.stat_1678690824","text":"#% increased Spell Damage while Dual Wielding","type":"fractured"},{"id":"fractured.stat_1782176131","text":"Adds # to # Cold Damage to Axe Attacks","type":"fractured"},{"id":"fractured.stat_4237442815","text":"#% to Melee Critical Strike Multiplier","type":"fractured"},{"id":"fractured.stat_977908611","text":"#% chance to Knock Enemies Back on hit","type":"fractured"},{"id":"fractured.stat_1244360317","text":"#% increased Damage over Time while holding a Shield","type":"fractured"},{"id":"fractured.stat_87098247","text":"Adds # to # Fire Damage to Wand Attacks","type":"fractured"},{"id":"fractured.stat_252507949","text":"#% to Critical Strike Multiplier with Two Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_1809006367","text":"Totems gain #% to all Elemental Resistances","type":"fractured"},{"id":"fractured.stat_1589917703","text":"Minions deal #% increased Damage","type":"fractured"},{"id":"fractured.stat_2323739383","text":"Minions have #% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed","type":"fractured"},{"id":"fractured.stat_214001793","text":"#% increased Damage over Time while Dual Wielding","type":"fractured"},{"id":"fractured.stat_1582068183","text":"Adds # to # Lightning Damage to Axe Attacks","type":"fractured"},{"id":"fractured.stat_444174528","text":"#% increased Attack Damage while Dual Wielding","type":"fractured"},{"id":"fractured.stat_1612163368","text":"#% increased Cast Speed while holding a Shield","type":"fractured"},{"id":"fractured.stat_1788635023","text":"#% increased Cast Speed with Lightning Skills","type":"fractured"},{"id":"fractured.stat_4255924189","text":"Adds # to # Physical Damage to Spells while Dual Wielding","type":"fractured"},{"id":"fractured.stat_2464689927","text":"Adds # to # Cold Damage to Spells while wielding a Two Handed Weapon","type":"fractured"},{"id":"fractured.stat_274716455","text":"#% to Critical Strike Multiplier for Spells","type":"fractured"},{"id":"fractured.stat_601249293","text":"Adds # to # Fire Damage to Sword Attacks","type":"fractured"},{"id":"fractured.stat_1327522346","text":"#% increased Mana Regeneration Rate while moving","type":"fractured"},{"id":"fractured.stat_2515515064","text":"#% increased Attack Speed with Maces or Sceptres","type":"fractured"},{"id":"fractured.stat_2848646243","text":"Adds # to # Cold Damage to Claw Attacks","type":"fractured"},{"id":"fractured.stat_3479683016","text":"Adds # to # Lightning Damage to Dagger Attacks","type":"fractured"},{"id":"fractured.stat_2941585404","text":"#% increased Trap Damage","type":"fractured"},{"id":"fractured.stat_3220927448","text":"Adds # to # Fire Damage to Staff Attacks","type":"fractured"},{"id":"fractured.stat_3314142259","text":"#% increased Damage with Axes","type":"fractured"},{"id":"fractured.stat_1423639565","text":"Minions have #% to all Elemental Resistances","type":"fractured"},{"id":"fractured.stat_187418672","text":"Adds # to # Cold Damage to Mace or Sceptre Attacks","type":"fractured"},{"id":"fractured.stat_3062329212","text":"Minions Regenerate # Life per second","type":"fractured"},{"id":"fractured.stat_3146788701","text":"Adds # to # Fire Damage to Mace or Sceptre Attacks","type":"fractured"},{"id":"fractured.stat_2154290807","text":"Adds # to # Fire Damage to Claw Attacks","type":"fractured"},{"id":"fractured.stat_1782086450","text":"#% faster start of Energy Shield Recharge","type":"fractured"},{"id":"fractured.stat_1910361436","text":"Adds # to # Fire Damage to Dagger Attacks","type":"fractured"},{"id":"fractured.stat_852195286","text":"#% Chance to Block Attack Damage if you were Damaged by a Hit Recently","type":"fractured"},{"id":"fractured.stat_2120297997","text":"#% Chance to Block Spell Damage while wielding a Staff","type":"fractured"},{"id":"fractured.stat_2381842786","text":"#% increased Critical Strike Chance with One Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_4227567885","text":"Minions have #% increased Attack and Cast Speed if you or your Minions have Killed Recently","type":"fractured"},{"id":"fractured.stat_1261958804","text":"Adds # to # Cold Damage to Staff Attacks","type":"fractured"},{"id":"fractured.stat_3352373076","text":"Adds # to # Lightning Damage to Spells while Dual Wielding","type":"fractured"},{"id":"fractured.stat_1199429645","text":"#% increased Melee Critical Strike Chance","type":"fractured"},{"id":"fractured.stat_118398748","text":"#% increased Trap Throwing Speed","type":"fractured"},{"id":"fractured.stat_3496944181","text":"#% increased Spell Damage while wielding a Staff","type":"fractured"},{"id":"fractured.stat_2431643207","text":"Minions have #% chance to Blind on Hit with Attacks","type":"fractured"},{"id":"fractured.stat_1783006896","text":"#% chance to Avoid being Ignited","type":"fractured"},{"id":"fractured.stat_2671663397","text":"Adds # to # Cold Damage to Spells while holding a Shield","type":"fractured"},{"id":"fractured.stat_1010549321","text":"#% increased Damage with One Handed Weapons","type":"fractured"},{"id":"fractured.stat_2538566497","text":"#% increased Attack Speed with Daggers","type":"fractured"},{"id":"fractured.stat_1476643878","text":"#% increased Cast Speed with Fire Skills","type":"fractured"},{"id":"fractured.stat_44182350","text":"Adds # to # Fire Damage to Spells while holding a Shield","type":"fractured"},{"id":"fractured.stat_1836374041","text":"#% increased Damage with Two Handed Weapons","type":"fractured"},{"id":"fractured.stat_3375935924","text":"Minions have #% increased Attack Speed","type":"fractured"},{"id":"fractured.stat_1263342750","text":"Adds # to # Cold Damage to Dagger Attacks","type":"fractured"},{"id":"fractured.stat_4000101551","text":"Minions have #% increased Cast Speed","type":"fractured"},{"id":"fractured.stat_412745376","text":"Minions deal #% increased Damage if you\u0027ve used a Minion Skill Recently","type":"fractured"},{"id":"fractured.stat_1865428306","text":"Adds # to # Chaos Damage to Spells while Dual Wielding","type":"fractured"},{"id":"fractured.stat_2339757871","text":"#% increased Energy Shield Recharge Rate","type":"fractured"},{"id":"fractured.stat_211381198","text":"# Energy Shield gained for each Enemy hit by your Attacks","type":"fractured"},{"id":"fractured.stat_2008219439","text":"#% increased Physical Damage with Axes","type":"fractured"},{"id":"fractured.stat_1334465904","text":"#% increased Physical Damage with One Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_1086057912","text":"Minions deal #% increased Damage against Abyssal Monsters","type":"fractured"},{"id":"fractured.stat_1871765599","text":"#% chance to Avoid being Shocked","type":"fractured"},{"id":"fractured.stat_3501769159","text":"#% increased Melee Physical Damage while holding a Shield","type":"fractured"},{"id":"fractured.stat_3483999943","text":"#% chance to Avoid being Chilled","type":"fractured"},{"id":"fractured.stat_2424133568","text":"#% increased Armour if you haven\u0027t Killed Recently","type":"fractured"},{"id":"fractured.stat_2135335407","text":"Adds # to # Fire Damage to Spells while wielding a Two Handed Weapon","type":"fractured"},{"id":"fractured.stat_1394963553","text":"#% increased Attack Speed with Staves","type":"fractured"},{"id":"fractured.stat_1274831335","text":"#% increased Physical Attack Damage while Dual Wielding","type":"fractured"},{"id":"fractured.stat_3720627346","text":"#% increased Attack Speed with Wands","type":"fractured"},{"id":"fractured.stat_2461965653","text":"Adds # to # Fire Damage to Axe Attacks","type":"fractured"},{"id":"fractured.stat_1514829491","text":"#% chance to Avoid being Frozen","type":"fractured"},{"id":"fractured.stat_1618589784","text":"#% chance to avoid Bleeding","type":"fractured"},{"id":"fractured.stat_2066542501","text":"#% increased Cast Speed while wielding a Staff","type":"fractured"},{"id":"fractured.stat_2398198236","text":"Adds # to # Lightning Damage to Spells while wielding a Two Handed Weapon","type":"fractured"},{"id":"fractured.stat_764295120","text":"#% increased Critical Strike Chance with Two Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_3212481075","text":"Adds # to # Lightning Damage to Staff Attacks","type":"fractured"},{"id":"fractured.stat_1778298516","text":"#% Chance to Block Attack Damage while wielding a Staff","type":"fractured"},{"id":"fractured.stat_1393393937","text":"#% increased Attack Damage while holding a Shield","type":"fractured"},{"id":"fractured.stat_3954157711","text":"Adds # to # Physical Damage to Spells while holding a Shield","type":"fractured"},{"id":"fractured.stat_2921084940","text":"Adds # to # Physical Damage to Spells while wielding a Two Handed Weapon","type":"fractured"},{"id":"fractured.stat_1896971621","text":"#% increased Mine Throwing Speed","type":"fractured"},{"id":"fractured.stat_1801889979","text":"Adds # to # Lightning Damage to Spells while holding a Shield","type":"fractured"},{"id":"fractured.stat_662691280","text":"Adds # to # Fire Damage to Spells while Dual Wielding","type":"fractured"},{"id":"fractured.stat_3166317791","text":"#% chance to Gain Unholy Might for 4 seconds on Melee Kill","type":"fractured"},{"id":"fractured.stat_2911442053","text":"Minions have #% chance to Taunt on Hit with Attacks","type":"fractured"},{"id":"fractured.stat_3376452528","text":"Adds # to # Cold Damage to Spells while Dual Wielding","type":"fractured"},{"id":"fractured.stat_820939409","text":"# Mana gained for each Enemy hit by your Attacks","type":"fractured"},{"id":"fractured.stat_2810434465","text":"Gain #% of Physical Damage as Extra Fire Damage if you\u0027ve dealt a Critical Strike Recently","type":"fractured"},{"id":"fractured.stat_3814560373","text":"#% increased Physical Damage with Swords","type":"fractured"},{"id":"fractured.stat_3110907148","text":"#% increased Cast Speed if a Minion has been Killed Recently","type":"fractured"},{"id":"fractured.stat_4053951709","text":"#% chance to Avoid being Poisoned","type":"fractured"},{"id":"fractured.stat_1743759111","text":"Adds # to # Chaos Damage to Spells while wielding a Two Handed Weapon","type":"fractured"},{"id":"fractured.stat_2479683456","text":"Minions Regenerate #% of Life per second","type":"fractured"},{"id":"fractured.stat_1040189894","text":"Adds # to # Physical Damage to Sword Attacks","type":"fractured"},{"id":"fractured.stat_3303015","text":"Adds # to # Physical Damage to Claw Attacks","type":"fractured"},{"id":"fractured.stat_311030839","text":"Adds # to # Physical Damage to Axe Attacks","type":"fractured"},{"id":"fractured.stat_3002506763","text":"#% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed","type":"fractured"},{"id":"fractured.stat_2527686725","text":"#% increased Effect of Shock","type":"fractured"},{"id":"fractured.stat_3882662078","text":"Adds # to # Physical Damage to Mace or Sceptre Attacks","type":"fractured"},{"id":"fractured.stat_69898010","text":"Adds # to # Physical Damage to Staff Attacks","type":"fractured"},{"id":"fractured.stat_2806435316","text":"#% increased Accuracy Rating if you haven\u0027t Killed Recently","type":"fractured"},{"id":"fractured.stat_2056783069","text":"#% increased Physical Damage with Two Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_379328644","text":"#% increased Damage with Wands","type":"fractured"},{"id":"fractured.stat_439950087","text":"#% increased Critical Strike Chance with Elemental Skills","type":"fractured"},{"id":"fractured.stat_4188894176","text":"#% increased Damage with Bows","type":"fractured"},{"id":"fractured.stat_828179689","text":"#% increased Effect of Chill","type":"fractured"},{"id":"fractured.stat_1181419800","text":"#% increased Damage with Maces or Sceptres","type":"fractured"},{"id":"fractured.stat_3837707023","text":"Minions have #% to Chaos Resistance","type":"fractured"},{"id":"fractured.stat_2770782267","text":"Minions Leech #% of Damage as Life","type":"fractured"},{"id":"fractured.stat_3374054207","text":"Minions have #% Chance to Block Attack Damage","type":"fractured"},{"id":"fractured.stat_3586984690","text":"#% increased Damage with Daggers","type":"fractured"},{"id":"fractured.stat_280213220","text":"#% chance to Taunt Enemies on Hit with Attacks","type":"fractured"},{"id":"fractured.stat_174664100","text":"Minions have #% increased Movement Speed","type":"fractured"},{"id":"fractured.stat_133683091","text":"Adds # to # Physical Damage to Wand Attacks","type":"fractured"},{"id":"fractured.stat_4087089130","text":"#% increased Damage with Staves","type":"fractured"},{"id":"fractured.stat_1181129483","text":"Adds # to # Chaos Damage to Spells while holding a Shield","type":"fractured"},{"id":"fractured.stat_1069260037","text":"#% increased Damage with Claws","type":"fractured"},{"id":"fractured.stat_795138349","text":"#% chance to Poison on Hit","type":"fractured"},{"id":"fractured.stat_635761691","text":"#% increased Physical Damage with Claws","type":"fractured"},{"id":"fractured.stat_1298238534","text":"Adds # to # Physical Damage to Dagger Attacks","type":"fractured"},{"id":"fractured.stat_2769075491","text":"#% increased Physical Damage with Wands","type":"fractured"},{"id":"fractured.stat_455556407","text":"Damage Penetrates #% Elemental Resistance if you haven\u0027t Killed Recently","type":"fractured"},{"id":"fractured.stat_3150705301","text":"#% increased Physical Damage with Staves","type":"fractured"},{"id":"fractured.stat_402920808","text":"#% increased Physical Damage with Bows","type":"fractured"},{"id":"fractured.stat_3882531569","text":"#% increased Physical Damage with Daggers","type":"fractured"},{"id":"fractured.stat_3774831856","text":"#% increased Physical Damage with Maces or Sceptres","type":"fractured"},{"id":"fractured.stat_279227559","text":"#% increased Movement Speed if you\u0027ve Killed Recently","type":"fractured"}]},{"label":"Enchant","entries":[{"id":"enchant.stat_3948993189","text":"Added Small Passive Skills grant: #","type":"enchant","option":{"options":[{"id":1,"value":1,"text":"Axe Attacks deal 12% increased Damage with Hits and Ailments\nSword Attacks deal 12% increased Damage with Hits and Ailments"},{"id":2,"value":2,"text":"Staff Attacks deal 12% increased Damage with Hits and Ailments\nMace or Sceptre Attacks deal 12% increased Damage with Hits and Ailments"},{"id":3,"value":3,"text":"Claw Attacks deal 12% increased Damage with Hits and Ailments\nDagger Attacks deal 12% increased Damage with Hits and Ailments"},{"id":4,"value":4,"text":"12% increased Damage with Bows\n12% increased Damage Over Time with Bow Skills"},{"id":5,"value":5,"text":"Wand Attacks deal 12% increased Damage with Hits and Ailments"},{"id":6,"value":6,"text":"12% increased Damage with Two Handed Weapons"},{"id":7,"value":7,"text":"12% increased Attack Damage while Dual Wielding"},{"id":8,"value":8,"text":"12% increased Attack Damage while holding a Shield"},{"id":9,"value":9,"text":"10% increased Attack Damage"},{"id":10,"value":10,"text":"10% increased Spell Damage"},{"id":11,"value":11,"text":"10% increased Elemental Damage"},{"id":12,"value":12,"text":"12% increased Physical Damage"},{"id":13,"value":13,"text":"12% increased Fire Damage"},{"id":14,"value":14,"text":"12% increased Lightning Damage"},{"id":15,"value":15,"text":"12% increased Cold Damage"},{"id":16,"value":16,"text":"12% increased Chaos Damage"},{"id":17,"value":17,"text":"Minions deal 10% increased Damage"},{"id":18,"value":18,"text":"\u002B5% to Fire Damage over Time Multiplier"},{"id":19,"value":19,"text":"\u002B5% to Chaos Damage over Time Multiplier"},{"id":20,"value":20,"text":"\u002B5% to Physical Damage over Time Multiplier"},{"id":21,"value":21,"text":"\u002B5% to Cold Damage over Time Multiplier"},{"id":22,"value":22,"text":"\u002B4% to Damage over Time Multiplier"},{"id":23,"value":23,"text":"10% increased Effect of Non-Damaging Ailments"},{"id":24,"value":24,"text":"6% increased effect of Non-Curse Auras from your Skills"},{"id":25,"value":25,"text":"5% increased Effect of your Curses"},{"id":26,"value":26,"text":"10% increased Damage while affected by a Herald"},{"id":27,"value":27,"text":"Minions deal 10% increased Damage while you are affected by a Herald"},{"id":28,"value":28,"text":"15% increased Warcry Buff Effect"},{"id":29,"value":29,"text":"15% increased Critical Strike Chance"},{"id":30,"value":30,"text":"Minions have 12% increased maximum Life"},{"id":31,"value":31,"text":"10% increased Area Damage"},{"id":32,"value":32,"text":"10% increased Projectile Damage"},{"id":33,"value":33,"text":"12% increased Trap Damage\n12% increased Mine Damage"},{"id":34,"value":34,"text":"12% increased Totem Damage"},{"id":35,"value":35,"text":"12% increased Damage with Brand Skills"},{"id":36,"value":36,"text":"Channelling Skills deal 12% increased Damage"},{"id":37,"value":37,"text":"6% increased Flask Effect Duration"},{"id":38,"value":38,"text":"10% increased Life Recovery from Flasks\n10% increased Mana Recovery from Flasks"},{"id":39,"value":39,"text":"4% increased maximum Life"},{"id":40,"value":40,"text":"6% increased maximum Energy Shield"},{"id":41,"value":41,"text":"6% increased maximum Mana"},{"id":42,"value":42,"text":"15% increased Armour"},{"id":43,"value":43,"text":"15% increased Evasion Rating"},{"id":44,"value":44,"text":"1% Chance to Block Attack Damage"},{"id":45,"value":45,"text":"1% Chance to Block Spell Damage"},{"id":46,"value":46,"text":"\u002B15% to Fire Resistance"},{"id":47,"value":47,"text":"\u002B15% to Cold Resistance"},{"id":48,"value":48,"text":"\u002B15% to Lightning Resistance"},{"id":49,"value":49,"text":"\u002B12% to Chaos Resistance"},{"id":50,"value":50,"text":"1% chance to Dodge Attack Hits"}]}},{"id":"enchant.stat_3086156145","text":"Adds # Passive Skills","type":"enchant"},{"id":"enchant.stat_2954116742","text":"Allocates #","type":"enchant","option":{"options":[{"id":32345,"value":32345,"text":"Alacrity"},{"id":15027,"value":15027,"text":"Beef"},{"id":56029,"value":56029,"text":"Agility"},{"id":36874,"value":36874,"text":"Wisdom of the Glade"},{"id":32245,"value":32245,"text":"Expertise"},{"id":60180,"value":60180,"text":"Thief\u0027s Craft"},{"id":52714,"value":52714,"text":"Prowess"},{"id":34601,"value":34601,"text":"Proficiency"},{"id":50197,"value":50197,"text":"Ancestral Knowledge"},{"id":5456,"value":5456,"text":"Might"},{"id":30160,"value":30160,"text":"Fending"},{"id":18025,"value":18025,"text":"Hard Knocks"},{"id":10153,"value":10153,"text":"Physique"},{"id":23690,"value":23690,"text":"Arcane Vision"},{"id":10542,"value":10542,"text":"Diamond Skin"},{"id":37078,"value":37078,"text":"Path of the Savant"},{"id":12702,"value":12702,"text":"Path of the Warrior"},{"id":19506,"value":19506,"text":"Path of the Hunter"},{"id":38516,"value":38516,"text":"Righteous Decree"},{"id":63150,"value":63150,"text":"Ironwood"},{"id":16243,"value":16243,"text":"Fusillade"},{"id":2715,"value":2715,"text":"Quickstep"},{"id":52230,"value":52230,"text":"Weathered Hunter"},{"id":21435,"value":21435,"text":"Cloth and Chain"},{"id":31033,"value":31033,"text":"Solidity"},{"id":65224,"value":65224,"text":"Aspect of the Eagle"},{"id":24256,"value":24256,"text":"Dynamo"},{"id":21973,"value":21973,"text":"Decay Ward"},{"id":45067,"value":45067,"text":"Thrill Seeker"},{"id":38246,"value":38246,"text":"Aspect of the Panther"},{"id":1382,"value":1382,"text":"Spirit Void"},{"id":529,"value":529,"text":"Poisonous Fangs"},{"id":46965,"value":46965,"text":"Saboteur"},{"id":47484,"value":47484,"text":"Depth Perception"},{"id":42686,"value":42686,"text":"Elemental Focus"},{"id":27929,"value":27929,"text":"Deep Wisdom"},{"id":27301,"value":27301,"text":"Martial Experience"},{"id":60002,"value":60002,"text":"Fury Bolts"},{"id":5289,"value":5289,"text":"Battle Rouse"},{"id":27190,"value":27190,"text":"Hasty Reconstruction"},{"id":20832,"value":20832,"text":"Sanctuary"},{"id":8135,"value":8135,"text":"Practical Application"},{"id":31257,"value":31257,"text":"Words of Glory"},{"id":10016,"value":10016,"text":"Executioner"},{"id":42804,"value":42804,"text":"Mind Drinker"},{"id":15344,"value":15344,"text":"Freedom of Movement"},{"id":10835,"value":10835,"text":"Dreamer"},{"id":44788,"value":44788,"text":"Aligned Spirits"},{"id":2550,"value":2550,"text":"Arsonist"},{"id":7085,"value":7085,"text":"Weapon Artistry"},{"id":2959,"value":2959,"text":"Unpredictable Offensive"},{"id":18174,"value":18174,"text":"Mystic Bulwark"},{"id":53757,"value":53757,"text":"Shamanistic Fury"},{"id":24362,"value":24362,"text":"Deep Thoughts"},{"id":10115,"value":10115,"text":"Prodigal Perfection"},{"id":19144,"value":19144,"text":"Sentinel"},{"id":42720,"value":42720,"text":"Heavy Draw"},{"id":54791,"value":54791,"text":"Claws of the Magpie"},{"id":60031,"value":60031,"text":"Harvester of Foes"},{"id":26023,"value":26023,"text":"Splitting Strikes"},{"id":17608,"value":17608,"text":"Silent Steps"},{"id":29861,"value":29861,"text":"Explosive Runes"},{"id":36859,"value":36859,"text":"Steelwood Stance"},{"id":44102,"value":44102,"text":"Efficient Explosives"},{"id":63933,"value":63933,"text":"Totemic Zeal"},{"id":40645,"value":40645,"text":"Bone Breaker"},{"id":11784,"value":11784,"text":"Gemini"},{"id":59556,"value":59556,"text":"Expeditious Munitions"},{"id":33082,"value":33082,"text":"Razor\u0027s Edge"},{"id":56359,"value":56359,"text":"Red Storm"},{"id":59866,"value":59866,"text":"Honed Edge"},{"id":35436,"value":35436,"text":"Kinetic Impacts"},{"id":41476,"value":41476,"text":"Elder Power"},{"id":45608,"value":45608,"text":"Successive Detonations"},{"id":33582,"value":33582,"text":"Forceful Skewering"},{"id":23038,"value":23038,"text":"Slaughter"},{"id":60619,"value":60619,"text":"Galvanic Hammer"},{"id":5430,"value":5430,"text":"Magmatic Strikes"},{"id":16236,"value":16236,"text":"Toxic Strikes"},{"id":39657,"value":39657,"text":"Pain Forger"},{"id":36915,"value":36915,"text":"Sacrifice"},{"id":51212,"value":51212,"text":"Entropy"},{"id":61982,"value":61982,"text":"Grave Intentions"},{"id":6233,"value":6233,"text":"Blast Waves"},{"id":51881,"value":51881,"text":"Master Fletcher"},{"id":65093,"value":65093,"text":"Bladedancer"},{"id":37504,"value":37504,"text":"Claws of the Pride"},{"id":64077,"value":64077,"text":"Ophidian Aim"},{"id":63635,"value":63635,"text":"Primal Manifestation"},{"id":5126,"value":5126,"text":"Spinecruncher"},{"id":51559,"value":51559,"text":"Smashing Strikes"},{"id":63921,"value":63921,"text":"Utmost Swiftness"},{"id":47743,"value":47743,"text":"Farsight"},{"id":42917,"value":42917,"text":"Whirling Barrier"},{"id":59605,"value":59605,"text":"Unstable Munitions"},{"id":1405,"value":1405,"text":"From the Shadows"},{"id":26096,"value":26096,"text":"Hatchet Master"},{"id":55380,"value":55380,"text":"Clever Construction"},{"id":49772,"value":49772,"text":"Utmost Might"},{"id":22972,"value":22972,"text":"Wandslinger"},{"id":49969,"value":49969,"text":"Bludgeon Blitz"},{"id":17171,"value":17171,"text":"Flash Freeze"},{"id":36490,"value":36490,"text":"Flaying"},{"id":35685,"value":35685,"text":"Fearsome Force"},{"id":15046,"value":15046,"text":"Redemption"},{"id":55114,"value":55114,"text":"Utmost Intellect"},{"id":7918,"value":7918,"text":"Enigmatic Defence"},{"id":14606,"value":14606,"text":"Butchery"},{"id":33435,"value":33435,"text":"Holy Dominion"},{"id":26557,"value":26557,"text":"Static Blows"},{"id":9567,"value":9567,"text":"Light Eater"},{"id":63976,"value":63976,"text":"Shaper"},{"id":53493,"value":53493,"text":"Annihilation"},{"id":45317,"value":45317,"text":"Ash, Frost and Storm"},{"id":44207,"value":44207,"text":"Testudo"},{"id":30225,"value":30225,"text":"Lightning Walker"},{"id":9788,"value":9788,"text":"Nimbleness"},{"id":31508,"value":31508,"text":"Aspect of the Lynx"},{"id":53042,"value":53042,"text":"Exceptional Performance"},{"id":4940,"value":4940,"text":"Cleaving"},{"id":42795,"value":42795,"text":"Arcane Focus"},{"id":21413,"value":21413,"text":"Combat Stamina"},{"id":33903,"value":33903,"text":"Will of Blades"},{"id":44347,"value":44347,"text":"Divine Fury"},{"id":65502,"value":65502,"text":"Heartseeker"},{"id":6770,"value":6770,"text":"Arcane Guarding"},{"id":44103,"value":44103,"text":"Reflexes"},{"id":13164,"value":13164,"text":"Divine Judgement"},{"id":35894,"value":35894,"text":"Trickery"},{"id":49538,"value":49538,"text":"Defiance"},{"id":33545,"value":33545,"text":"Harrier"},{"id":6,"value":6,"text":"Twin Terrors"},{"id":65273,"value":65273,"text":"Enigmatic Reach"},{"id":42649,"value":42649,"text":"Snowforged"},{"id":15085,"value":15085,"text":"Ambidexterity"},{"id":24383,"value":24383,"text":"Warrior\u0027s Blood"},{"id":6967,"value":6967,"text":"Command of the Elements"},{"id":54694,"value":54694,"text":"Light of Divinity"},{"id":49621,"value":49621,"text":"Acuity"},{"id":54142,"value":54142,"text":"Finesse"},{"id":9432,"value":9432,"text":"Mental Rapidity"},{"id":14813,"value":14813,"text":"Revelry"},{"id":861,"value":861,"text":"Aggressive Bastion"},{"id":26866,"value":26866,"text":"Sanctity"},{"id":65053,"value":65053,"text":"Essence Sap"},{"id":49416,"value":49416,"text":"Adamant"},{"id":24050,"value":24050,"text":"Coldhearted Calculation"},{"id":11420,"value":11420,"text":"Arcanist\u0027s Dominion"},{"id":2225,"value":2225,"text":"Eagle Eye"},{"id":32455,"value":32455,"text":"Storm Weaver"},{"id":12809,"value":12809,"text":"Berserking"},{"id":1006,"value":1006,"text":"Potency of Will"},{"id":5823,"value":5823,"text":"Coordination"},{"id":18703,"value":18703,"text":"Graceful Assault"},{"id":20835,"value":20835,"text":"Brinkmanship"},{"id":3309,"value":3309,"text":"Fleetfoot"},{"id":15842,"value":15842,"text":"Precise Interception"},{"id":15711,"value":15711,"text":"Blast Radius"},{"id":34666,"value":34666,"text":"Destroyer"},{"id":14665,"value":14665,"text":"Divine Wrath"},{"id":30471,"value":30471,"text":"True Strike"},{"id":49318,"value":49318,"text":"Wrecking Ball"},{"id":32059,"value":32059,"text":"Titanic Impacts"},{"id":65308,"value":65308,"text":"Deflection"},{"id":12795,"value":12795,"text":"Versatility"},{"id":33287,"value":33287,"text":"Juggernaut"},{"id":25456,"value":25456,"text":"Dervish"},{"id":35663,"value":35663,"text":"Strong Arm"},{"id":60737,"value":60737,"text":"Sleight of Hand"},{"id":50858,"value":50858,"text":"Battle Cry"},{"id":61308,"value":61308,"text":"Amplify"},{"id":570,"value":570,"text":"Dazzling Strikes"},{"id":24324,"value":24324,"text":"Explosive Impact"},{"id":34661,"value":34661,"text":"Fire Walker"},{"id":54268,"value":54268,"text":"Blade Barrier"},{"id":44824,"value":44824,"text":"Dark Arts"},{"id":18865,"value":18865,"text":"Melding"},{"id":47306,"value":47306,"text":"Throatseeker"},{"id":44955,"value":44955,"text":"Frost Walker"},{"id":13922,"value":13922,"text":"Steadfast"},{"id":39743,"value":39743,"text":"Mysticism"},{"id":50338,"value":50338,"text":"Ballistic Mastery"},{"id":53802,"value":53802,"text":"Essence Extraction"},{"id":49254,"value":49254,"text":"Retribution"},{"id":8001,"value":8001,"text":"Lethal Assault"},{"id":32176,"value":32176,"text":"Soul Thief"},{"id":27137,"value":27137,"text":"Sanctum of Thought"},{"id":57900,"value":57900,"text":"Command of Steel"},{"id":6237,"value":6237,"text":"Precision"},{"id":49379,"value":49379,"text":"Hired Killer"},{"id":12878,"value":12878,"text":"Retaliation"},{"id":19103,"value":19103,"text":"Righteous Army"},{"id":8458,"value":8458,"text":"Longshot"},{"id":24721,"value":24721,"text":"Ribcage Crusher"},{"id":9015,"value":9015,"text":"Dire Torment"},{"id":27308,"value":27308,"text":"Gravepact"},{"id":6615,"value":6615,"text":"Arcing Blows"},{"id":64882,"value":64882,"text":"Disciple of the Unyielding"},{"id":52031,"value":52031,"text":"Disintegration"},{"id":25367,"value":25367,"text":"Blade Master"},{"id":57199,"value":57199,"text":"Fangs of Frost"},{"id":39761,"value":39761,"text":"Counterweight"},{"id":21602,"value":21602,"text":"Destructive Apparatus"},{"id":9535,"value":9535,"text":"Hunter\u0027s Gambit"},{"id":28503,"value":28503,"text":"Soul Raker"},{"id":59766,"value":59766,"text":"Dirty Techniques"},{"id":8920,"value":8920,"text":"Backstabbing"},{"id":63207,"value":63207,"text":"Tempest Blast"},{"id":43385,"value":43385,"text":"Winter Spirit"},{"id":21297,"value":21297,"text":"High Explosives"},{"id":29049,"value":29049,"text":"Holy Fire"},{"id":44562,"value":44562,"text":"Shaman\u0027s Dominion"},{"id":18707,"value":18707,"text":"Method to the Madness"},{"id":57839,"value":57839,"text":"Blade of Cunning"},{"id":38849,"value":38849,"text":"Searing Heat"},{"id":33777,"value":33777,"text":"Devastating Devices"},{"id":4481,"value":4481,"text":"Forces of Nature"},{"id":10511,"value":10511,"text":"Singular Focus"},{"id":26620,"value":26620,"text":"Corruption"},{"id":16703,"value":16703,"text":"Skull Cracking"},{"id":32227,"value":32227,"text":"Adder\u0027s Touch"},{"id":31359,"value":31359,"text":"Fatal Toxins"},{"id":63727,"value":63727,"text":"Gladiator\u0027s Perseverance"},{"id":41119,"value":41119,"text":"Lethality"},{"id":52090,"value":52090,"text":"Feller of Foes"},{"id":62094,"value":62094,"text":"Lucidity"},{"id":55772,"value":55772,"text":"Blacksmith\u0027s Clout"},{"id":49459,"value":49459,"text":"King of the Hill"},{"id":26294,"value":26294,"text":"Bloodletting"},{"id":7136,"value":7136,"text":"Master Sapper"},{"id":63251,"value":63251,"text":"Charging Offensive"},{"id":22702,"value":22702,"text":"Serpent Stance"},{"id":36281,"value":36281,"text":"Primeval Force"},{"id":19897,"value":19897,"text":"Death Attunement"},{"id":48823,"value":48823,"text":"Deadly Draw"},{"id":15614,"value":15614,"text":"Claws of the Hawk"},{"id":61689,"value":61689,"text":"Blast Cascade"},{"id":9194,"value":9194,"text":"Swift Skewering"},{"id":27611,"value":27611,"text":"Lord of the Dead"},{"id":64395,"value":64395,"text":"Blunt Trauma"},{"id":21389,"value":21389,"text":"Runesmith"},{"id":39986,"value":39986,"text":"Hex Master"},{"id":9261,"value":9261,"text":"Disciple of the Forbidden"},{"id":36687,"value":36687,"text":"Avatar of the Hunt"},{"id":63944,"value":63944,"text":"Prism Weave"},{"id":25409,"value":25409,"text":"Indomitable Army"},{"id":1568,"value":1568,"text":"Fatal Blade"},{"id":30439,"value":30439,"text":"Lava Lash"},{"id":53013,"value":53013,"text":"Atrophy"},{"id":29381,"value":29381,"text":"Ravenous Horde"},{"id":43689,"value":43689,"text":"Spiritual Command"},{"id":7263,"value":7263,"text":"Swift Venoms"},{"id":38922,"value":38922,"text":"Stun Mastery"},{"id":56094,"value":56094,"text":"One with the River"},{"id":7688,"value":7688,"text":"Enduring Bond"},{"id":59151,"value":59151,"text":"Brutal Blade"},{"id":56648,"value":56648,"text":"Claws of the Falcon"},{"id":9864,"value":9864,"text":"Growth and Decay"},{"id":58921,"value":58921,"text":"Disciple of the Slaughter"},{"id":56276,"value":56276,"text":"Nightstalker"},{"id":9055,"value":9055,"text":"Volatile Mines"},{"id":48298,"value":48298,"text":"Insightfulness"},{"id":21634,"value":21634,"text":"Arcane Chemistry"},{"id":53759,"value":53759,"text":"Cleansed Thoughts"},{"id":12143,"value":12143,"text":"Influence"},{"id":56716,"value":56716,"text":"Heart of Thunder"},{"id":36949,"value":36949,"text":"Devotion"},{"id":58218,"value":58218,"text":"Purity of Flesh"},{"id":61981,"value":61981,"text":"Doom Cast"},{"id":21330,"value":21330,"text":"Quick Recovery"},{"id":40743,"value":40743,"text":"Crystal Skin"},{"id":48438,"value":48438,"text":"Bravery"},{"id":11924,"value":11924,"text":"Breath of Flames"},{"id":48614,"value":48614,"text":"Fervour"},{"id":40849,"value":40849,"text":"Transcendence"},{"id":42041,"value":42041,"text":"Profane Chemistry"},{"id":60501,"value":60501,"text":"Heart of Flame"},{"id":18769,"value":18769,"text":"Written in Blood"},{"id":41137,"value":41137,"text":"Aqueous Accelerant"},{"id":21958,"value":21958,"text":"Cruel Preparation"},{"id":58831,"value":58831,"text":"Disemboweling"},{"id":51748,"value":51748,"text":"Cursed Concoction"},{"id":52157,"value":52157,"text":"Soul Siphon"},{"id":46842,"value":46842,"text":"Arcane Potency"},{"id":11645,"value":11645,"text":"Breath of Lightning"},{"id":4833,"value":4833,"text":"Vigour"},{"id":47065,"value":47065,"text":"Master of Force"},{"id":22356,"value":22356,"text":"Hematophagy"},{"id":51440,"value":51440,"text":"Druidic Rite"},{"id":27203,"value":27203,"text":"Heart and Soul"},{"id":6289,"value":6289,"text":"Bloodless"},{"id":58449,"value":58449,"text":"Born to Fight"},{"id":65210,"value":65210,"text":"Heart of Oak"},{"id":33718,"value":33718,"text":"Champion of the Cause"},{"id":24133,"value":24133,"text":"Survivalist"},{"id":34173,"value":34173,"text":"Overcharge"},{"id":47471,"value":47471,"text":"Overcharged"},{"id":34009,"value":34009,"text":"Master of the Arena"},{"id":62596,"value":62596,"text":"Mystic Talents"},{"id":58198,"value":58198,"text":"Fingers of Frost"},{"id":30693,"value":30693,"text":"Divine Fervour"},{"id":19858,"value":19858,"text":"Herbalism"},{"id":25058,"value":25058,"text":"Blood Siphon"},{"id":7555,"value":7555,"text":"Crackling Speed"},{"id":65097,"value":65097,"text":"Leadership"},{"id":53573,"value":53573,"text":"Arcane Expanse"},{"id":11730,"value":11730,"text":"Endurance"},{"id":35958,"value":35958,"text":"Faith and Steel"},{"id":38706,"value":38706,"text":"Way of the Warrior"},{"id":41307,"value":41307,"text":"Deadly Inclinations"},{"id":56207,"value":56207,"text":"Hardened Scars"},{"id":1340,"value":1340,"text":"Rampart"},{"id":54629,"value":54629,"text":"Inexorable"},{"id":37326,"value":37326,"text":"Stamina"},{"id":51108,"value":51108,"text":"Arcane Capacitor"},{"id":65108,"value":65108,"text":"Tireless"},{"id":46904,"value":46904,"text":"Arcane Swiftness"},{"id":44988,"value":44988,"text":"Stabbing Thirst"},{"id":23066,"value":23066,"text":"Savagery"},{"id":54776,"value":54776,"text":"Mana Flows"},{"id":25178,"value":25178,"text":"Primal Spirit"},{"id":48807,"value":48807,"text":"Art of the Gladiator"},{"id":20528,"value":20528,"text":"Instability"},{"id":27163,"value":27163,"text":"Arcane Will"},{"id":3452,"value":3452,"text":"Foresight"},{"id":21460,"value":21460,"text":"Breath of Rime"},{"id":63422,"value":63422,"text":"Lust for Carnage"},{"id":42443,"value":42443,"text":"Frenetic"},{"id":54713,"value":54713,"text":"Force Shaper"},{"id":21228,"value":21228,"text":"Piercing Shots"},{"id":19069,"value":19069,"text":"Thick Skin"},{"id":37647,"value":37647,"text":"Dismembering"},{"id":25411,"value":25411,"text":"Infused"},{"id":8833,"value":8833,"text":"Heart of Ice"},{"id":33725,"value":33725,"text":"Swagger"},{"id":27788,"value":27788,"text":"Blood Drinker"},{"id":39530,"value":39530,"text":"Vitality Void"},{"id":46408,"value":46408,"text":"Fangs of the Viper"},{"id":15852,"value":15852,"text":"Ethereal Feast"},{"id":41989,"value":41989,"text":"Resourcefulness"},{"id":62577,"value":62577,"text":"Essence Surge"},{"id":34506,"value":34506,"text":"Golem Commander"},{"id":41472,"value":41472,"text":"Discipline and Training"},{"id":28754,"value":28754,"text":"Assassination"},{"id":61198,"value":61198,"text":"Heart of the Warrior"},{"id":48698,"value":48698,"text":"Void Barrier"},{"id":15400,"value":15400,"text":"Skittering Runes"},{"id":53118,"value":53118,"text":"Barbarism"},{"id":5624,"value":5624,"text":"Crusader"},{"id":48556,"value":48556,"text":"Thunderous Salvos"},{"id":57006,"value":57006,"text":"Vengeant Cascade"},{"id":50029,"value":50029,"text":"Unnatural Calm"},{"id":1325,"value":1325,"text":"Golem\u0027s Blood"},{"id":16246,"value":16246,"text":"Tranquility"},{"id":53114,"value":53114,"text":"Revenge of the Hunted"},{"id":64217,"value":64217,"text":"Aspect of Stone"},{"id":52282,"value":52282,"text":"Tenacity"},{"id":32932,"value":32932,"text":"Sovereignty"},{"id":27119,"value":27119,"text":"Tribal Fury"},{"id":22535,"value":22535,"text":"Whispers of Doom"},{"id":4177,"value":4177,"text":"Spiritual Aid"},{"id":6799,"value":6799,"text":"Charisma"},{"id":55485,"value":55485,"text":"Constitution"},{"id":42009,"value":42009,"text":"Soul of Steel"}]}},{"id":"enchant.stat_4135304575","text":"#% increased Attack and Cast Speed if you\u0027ve Killed Recently","type":"enchant"},{"id":"enchant.stat_308396001","text":"#% increased Movement Speed if you haven\u0027t been Hit Recently","type":"enchant"},{"id":"enchant.stat_3010587200","text":"#% increased Critical Strike Chance if you haven\u0027t Crit Recently","type":"enchant"},{"id":"enchant.stat_412905518","text":"#% chance to Avoid being Stunned if you\u0027ve Killed Recently","type":"enchant"},{"id":"enchant.stat_884399432","text":"Adds # to # Cold Damage if you\u0027ve been Hit Recently","type":"enchant"},{"id":"enchant.stat_4291115328","text":"#% of Damage Leeched as Life if you\u0027ve Killed Recently","type":"enchant"},{"id":"enchant.stat_1122635070","text":"Regenerate #% of Life per second if you were Hit Recently","type":"enchant"},{"id":"enchant.stat_3414398924","text":"#% Chance to Dodge Attack Hits if you\u0027ve taken a Critical Strike Recently","type":"enchant"},{"id":"enchant.stat_3693451031","text":"#% reduced Mana Cost of Skills if you\u0027ve been Hit Recently","type":"enchant"},{"id":"enchant.stat_3915210550","text":"#% chance to Freeze, Shock and Ignite if you haven\u0027t Crit Recently","type":"enchant"},{"id":"enchant.stat_3077703716","text":"Adds # to # Fire Damage if you\u0027ve Killed Recently","type":"enchant"},{"id":"enchant.stat_1715784068","text":"Players in Area are #% Delirious","type":"enchant"},{"id":"enchant.stat_1409388882","text":"#% increased Mana Regeneration Rate if you\u0027ve cast a Spell Recently","type":"enchant"},{"id":"enchant.stat_281254371","text":"Damage Penetrates #% of Enemy Elemental Resistances if you haven\u0027t Killed Recently","type":"enchant"},{"id":"enchant.stat_3992962185","text":"#% chance to Trigger Word of Spite when Hit","type":"enchant"},{"id":"enchant.stat_995860222","text":"Molten Strike fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_1162506883","text":"#% chance to Trigger Word of Force on Hit","type":"enchant"},{"id":"enchant.stat_756653426","text":"#% chance to Trigger Word of Blades on Hit","type":"enchant"},{"id":"enchant.stat_1354248411","text":"#% chance to Trigger Word of Winter when Hit","type":"enchant"},{"id":"enchant.stat_1350605126","text":"#% chance to Trigger Word of Thunder on Kill","type":"enchant"},{"id":"enchant.stat_3111060801","text":"#% chance to Trigger Word of Light when you take a Critical Strike","type":"enchant"},{"id":"enchant.stat_3610104224","text":"#% chance to Trigger Word of the Tempest on Hit","type":"enchant"},{"id":"enchant.stat_835592326","text":"#% increased Cyclone Attack Speed","type":"enchant"},{"id":"enchant.stat_2527140156","text":"#% chance to Trigger Word of the Grave when your Skills or Minions Kill","type":"enchant"},{"id":"enchant.stat_2472584898","text":"#% chance to Trigger Word of Ire when Hit","type":"enchant"},{"id":"enchant.stat_290368246","text":"# uses remaining","type":"enchant"},{"id":"enchant.stat_3302747233","text":"#% chance to Trigger Word of Frost on Kill","type":"enchant"},{"id":"enchant.stat_1222329688","text":"#% chance to Dodge Spell Hits if you\u0027ve\ntaken Spell Damage Recently","type":"enchant"},{"id":"enchant.stat_1454162553","text":"#% increased Cyclone Damage","type":"enchant"},{"id":"enchant.stat_1730598557","text":"# Blight Chests are Lucky","type":"enchant"},{"id":"enchant.stat_3901337328","text":"#% chance to Trigger Word of Inferno on Kill","type":"enchant"},{"id":"enchant.stat_2634094270","text":"#% chance to Trigger Word of Reflection when Hit","type":"enchant"},{"id":"enchant.stat_186513618","text":"Spark fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_391609701","text":"Adds # to # Chaos Damage if you\u0027ve taken a Critical Strike Recently","type":"enchant"},{"id":"enchant.stat_1662974426","text":"#% increased Temporal Chains Curse Effect","type":"enchant"},{"id":"enchant.stat_3009270704","text":"Barrage fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_891161612","text":"#% chance to Trigger Word of Flames on Hit","type":"enchant"},{"id":"enchant.stat_3105097589","text":"Kinetic Blast has a #% chance for an additional explosion","type":"enchant"},{"id":"enchant.stat_1580810115","text":"Tornado Shot fires an additional secondary Projectile","type":"enchant"},{"id":"enchant.stat_3469967347","text":"#% increased Essence Drain Damage","type":"enchant"},{"id":"enchant.stat_3012437250","text":"#% chance to Trigger Word of Fury on Hit","type":"enchant"},{"id":"enchant.stat_3645693773","text":"Spectres have #% increased Damage","type":"enchant"},{"id":"enchant.stat_754797886","text":"#% increased Blade Flurry Damage","type":"enchant"},{"id":"enchant.stat_3537762266","text":"Herald of Ice has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3835483564","text":"Hatred has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_4221797807","text":"#% increased Blade Vortex Spell Damage","type":"enchant"},{"id":"enchant.stat_2589980605","text":"Magma Orb Chains an additional time","type":"enchant"},{"id":"enchant.stat_3555919553","text":"#% increased Tornado Shot Damage","type":"enchant"},{"id":"enchant.stat_531461618","text":"Storm Brand deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_966400988","text":"Herald of Thunder has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_2328234364","text":"Herald of Ash has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_1730304831","text":"Herald of Purity has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_1084180630","text":"Your Meteor Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_2278715446","text":"Split Arrow fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_3359178310","text":"#% increased Righteous Fire Damage","type":"enchant"},{"id":"enchant.stat_3152812191","text":"#% increased Ball Lightning Damage","type":"enchant"},{"id":"enchant.stat_1086309398","text":"#% increased Ice Nova Damage","type":"enchant"},{"id":"enchant.stat_2228518621","text":"Raised Zombies deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_1901955093","text":"Lightning Arrow hits an additional Enemy","type":"enchant"},{"id":"enchant.stat_1510381560","text":"Storm Brand has a #% chance to Chain an additional time","type":"enchant"},{"id":"enchant.stat_1815368527","text":"#% increased Tornado Shot Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_3418033798","text":"Blood Rage grants additional #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_3600749521","text":"Wrath has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3734339018","text":"Winter Orb has \u002B# Maximum Stages","type":"enchant"},{"id":"enchant.stat_3685345485","text":"#% increased Barrage Damage","type":"enchant"},{"id":"enchant.stat_2447447843","text":"Wild Strike\u0027s Beam Chains an additional time","type":"enchant"},{"id":"enchant.stat_4253105373","text":"Herald of Agony has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3910961021","text":"#% increased Herald of Ice Damage","type":"enchant"},{"id":"enchant.stat_2461552986","text":"Arc Chains an additional time","type":"enchant"},{"id":"enchant.stat_1471796012","text":"Cobra Lash Chains an additional time","type":"enchant"},{"id":"enchant.stat_1154155584","text":"#% of Glacial Cascade Physical Damage Converted to Cold Damage","type":"enchant"},{"id":"enchant.stat_2200030809","text":"Discipline has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3026752303","text":"#% increased Ice Shot Damage","type":"enchant"},{"id":"enchant.stat_865511246","text":"Toxic Rain deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_91821600","text":"Haste has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_1212590278","text":"#% increased Volatile Dead Damage","type":"enchant"},{"id":"enchant.stat_3998182656","text":"Arc deals #% increased Damage for each time it has Chained","type":"enchant"},{"id":"enchant.stat_3473724367","text":"Minions summoned by Your Scout Towers have #% increased Damage","type":"enchant"},{"id":"enchant.stat_2200744772","text":"Winter Orb deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_464448327","text":"#% increased Flicker Strike Damage","type":"enchant"},{"id":"enchant.stat_3701991680","text":"#% increased Flicker Strike Damage per Frenzy Charge","type":"enchant"},{"id":"enchant.stat_3514973342","text":"#% increased Ethereal Knives Damage","type":"enchant"},{"id":"enchant.stat_2003753577","text":"Anger has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_478612089","text":"Zealotry has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_4109038270","text":"Elemental Hit deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1213035889","text":"Lightning Strike fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_2561956001","text":"Skills Supported by Spellslinger have #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3316822388","text":"Righteous Fire grants #% increased Spell Damage","type":"enchant"},{"id":"enchant.stat_2583039202","text":"Blade Vortex has #% to Critical Strike Multiplier for each blade","type":"enchant"},{"id":"enchant.stat_1177831984","text":"Power Siphon fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_3059357595","text":"Skeletons deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_451037529","text":"#% increased Glacial Cascade Damage","type":"enchant"},{"id":"enchant.stat_3738398726","text":"Clarity has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3420683028","text":"Ball Lightning fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_465162370","text":"Skills Supported by Spellslinger have #% increased Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_767884542","text":"#% increased Herald of Ash Damage","type":"enchant"},{"id":"enchant.stat_1844721010","text":"#% increased Lacerate Damage","type":"enchant"},{"id":"enchant.stat_3034788766","text":"Volatile Dead Consumes up to # additional corpse","type":"enchant"},{"id":"enchant.stat_1833626118","text":"#% chance for Discharge to deal Damage without removing Charges","type":"enchant"},{"id":"enchant.stat_2038865857","text":"#% increased Molten Strike Damage","type":"enchant"},{"id":"enchant.stat_1549898151","text":"Grace has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_1153637043","text":"#% chance to Trigger Edict of Fury on Hit","type":"enchant"},{"id":"enchant.stat_3215042347","text":"Purity of Fire has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_257027296","text":"#% chance to Trigger Edict of Spite when Hit","type":"enchant"},{"id":"enchant.stat_1122074043","text":"Vitality has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3432170876","text":"#% increased Rain of Arrows Damage","type":"enchant"},{"id":"enchant.stat_4120821275","text":"Malevolence has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_2584129062","text":"Divine Ire deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3755794090","text":"#% increased Spectral Throw Damage","type":"enchant"},{"id":"enchant.stat_578067404","text":"#% increased Lacerate Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_250961191","text":"Pride has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_4228580629","text":"#% chance to Trigger Edict of Reflection when Hit","type":"enchant"},{"id":"enchant.stat_2033463878","text":"#% chance to Trigger Edict of War on Kill","type":"enchant"},{"id":"enchant.stat_192534517","text":"Scourge Arrow deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3192966873","text":"Purity of Ice has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_1208019382","text":"#% increased Spark Damage","type":"enchant"},{"id":"enchant.stat_2748553775","text":"#% increased Blade Vortex Area of Effect","type":"enchant"},{"id":"enchant.stat_2760193888","text":"#% chance to Trigger Edict of Force on Hit","type":"enchant"},{"id":"enchant.stat_1460506005","text":"Kinetic Bolt changes direction # additional time","type":"enchant"},{"id":"enchant.stat_603658709","text":"#% chance to Trigger Edict of Thunder on Kill","type":"enchant"},{"id":"enchant.stat_308154324","text":"#% chance to Trigger Edict of the Grave when your Skills or Minions Kill","type":"enchant"},{"id":"enchant.stat_3711386843","text":"#% chance to create an additional Animate Weapon copy","type":"enchant"},{"id":"enchant.stat_3505939359","text":"Rain of Arrows has #% chance to fire an additional sequence of arrows","type":"enchant"},{"id":"enchant.stat_147678606","text":"#% chance to Trigger Edict of Winter when Hit","type":"enchant"},{"id":"enchant.stat_1711789839","text":"#% chance to Trigger Edict of the Tempest on Hit","type":"enchant"},{"id":"enchant.stat_271342637","text":"#% chance to Trigger Edict of Light when you take a Critical Strike","type":"enchant"},{"id":"enchant.stat_90942364","text":"#% chance to Trigger Edict of Frost on Kill","type":"enchant"},{"id":"enchant.stat_2078274993","text":"#% increased Frostbolt Damage","type":"enchant"},{"id":"enchant.stat_3655654928","text":"Desecrate Spawns an additional corpse","type":"enchant"},{"id":"enchant.stat_1285430327","text":"Purity of Lightning has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3608981617","text":"Spectral Shield Throw fires an additional Shard Projectile","type":"enchant"},{"id":"enchant.stat_2160886943","text":"#% chance to Trigger Edict of Blades on Hit","type":"enchant"},{"id":"enchant.stat_2085855914","text":"Summoned Raging Spirits deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_2246143608","text":"#% chance to Trigger Edict of Inferno on Kill","type":"enchant"},{"id":"enchant.stat_926530613","text":"Your Chilling Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_2396402660","text":"Your Meteor Towers drop an additional Meteor","type":"enchant"},{"id":"enchant.stat_2499559911","text":"Raised Zombies have #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_1477213724","text":"Divine Ire Damages an additional nearby Enemy when gaining Stages","type":"enchant"},{"id":"enchant.stat_2140127102","text":"Toxic Rain fires # additional Arrow","type":"enchant"},{"id":"enchant.stat_1949390531","text":"#% increased Molten Shell Buff Effect","type":"enchant"},{"id":"enchant.stat_3468905159","text":"Precision has #% increased Mana Reservation","type":"enchant"},{"id":"enchant.stat_3698833303","text":"#% increased Essence Drain Duration","type":"enchant"},{"id":"enchant.stat_586167247","text":"Unearth Spawns corpses with # Level","type":"enchant"},{"id":"enchant.stat_2250111474","text":"#% increased Effect of the Buff granted by your Ice Golems","type":"enchant"},{"id":"enchant.stat_200942664","text":"#% increased Vortex Damage","type":"enchant"},{"id":"enchant.stat_786149615","text":"#% chance to Trigger Edict of Flames on Hit","type":"enchant"},{"id":"enchant.stat_78239163","text":"#% increased Ancestral Warchief Totem Damage","type":"enchant"},{"id":"enchant.stat_103922739","text":"#% increased Spark Projectile Speed","type":"enchant"},{"id":"enchant.stat_3285719520","text":"#% chance to Trigger Edict of Ire when Hit","type":"enchant"},{"id":"enchant.stat_1537296847","text":"Flesh and Stone has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3069740560","text":"#% increased Bladefall Damage","type":"enchant"},{"id":"enchant.stat_1849664701","text":"Purity of Elements has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_819852672","text":"#% increased Freezing Pulse Damage","type":"enchant"},{"id":"enchant.stat_760994068","text":"#% increased Ethereal Knives Projectile Speed","type":"enchant"},{"id":"enchant.stat_1044970549","text":"Scourge Arrow creates an additional spore pod at Maximum Stages","type":"enchant"},{"id":"enchant.stat_3134777190","text":"Lightning Strike pierces an additional Target","type":"enchant"},{"id":"enchant.stat_1573799461","text":"#% increased Dark Pact Damage","type":"enchant"},{"id":"enchant.stat_862824495","text":"#% increased Reave Damage","type":"enchant"},{"id":"enchant.stat_1623552446","text":"#% increased Blight Damage","type":"enchant"},{"id":"enchant.stat_2284801675","text":"#% increased Effect of the Buff granted by your Stone Golems","type":"enchant"},{"id":"enchant.stat_1255310381","text":"#% increased Frenzy Damage per Frenzy Charge","type":"enchant"},{"id":"enchant.stat_2729530556","text":"#% increased Dual Strike Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_1555251","text":"Icicle Mine has #% to Critical Strike Multiplier","type":"enchant"},{"id":"enchant.stat_269930125","text":"#% increased Effect of the Buff granted by your Flame Golems","type":"enchant"},{"id":"enchant.stat_2555469486","text":"#% increased Split Arrow Damage","type":"enchant"},{"id":"enchant.stat_1715805151","text":"Armageddon Brand Damage Penetrates #% of Branded Enemy\u0027s Fire Resistance","type":"enchant"},{"id":"enchant.stat_599289531","text":"Bladestorm deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3652051346","text":"Shock Nova ring deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1798919988","text":"Toxic Rain gains #% of Physical Damage as Extra Chaos Damage","type":"enchant"},{"id":"enchant.stat_1935930829","text":"#% increased Discharge Damage","type":"enchant"},{"id":"enchant.stat_2896672990","text":"#% increased Lightning Arrow Damage","type":"enchant"},{"id":"enchant.stat_2746213081","text":"#% increased Blade Flurry Area of Effect","type":"enchant"},{"id":"enchant.stat_513715594","text":"Flesh Offering grants an additional #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_1496334795","text":"#% increased Caustic Arrow Damage","type":"enchant"},{"id":"enchant.stat_3087527696","text":"#% increased Detonate Dead Damage","type":"enchant"},{"id":"enchant.stat_3798244977","text":"Summon Skitterbots has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_4014289250","text":"Blast Rain deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2094069860","text":"#% increased Dual Strike Damage","type":"enchant"},{"id":"enchant.stat_277116504","text":"#% increased Contagion Damage","type":"enchant"},{"id":"enchant.stat_2430635444","text":"#% increased Righteous Fire Area of Effect","type":"enchant"},{"id":"enchant.stat_1065909420","text":"#% increased Vulnerability Curse Effect","type":"enchant"},{"id":"enchant.stat_1699139870","text":"Armageddon Brand deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3543257184","text":"Ancestral Warchief Totem grants #% increased Melee Damage while Active","type":"enchant"},{"id":"enchant.stat_2471636515","text":"Blood and Sand has #% increased Buff Effect","type":"enchant"},{"id":"enchant.stat_1017161280","text":"Winter Orb has #% increased Area of Effect per Stage","type":"enchant"},{"id":"enchant.stat_788307702","text":"#% increased Ball Lightning Area of Effect","type":"enchant"},{"id":"enchant.stat_2246425134","text":"#% increased Incinerate Damage","type":"enchant"},{"id":"enchant.stat_3309486263","text":"Blade Blast detonates other Lingering Blades within an #% increased Area","type":"enchant"},{"id":"enchant.stat_4048820315","text":"Pyroclast Mine deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3338074370","text":"#% increased Animate Weapon Duration","type":"enchant"},{"id":"enchant.stat_732320584","text":"Lacerate deals # to # added Physical Damage against Bleeding Enemies","type":"enchant"},{"id":"enchant.stat_3318254108","text":"Storm Brand Damage Penetrates #% of Branded Enemy\u0027s Lightning Resistance","type":"enchant"},{"id":"enchant.stat_600891507","text":"#% increased Magma Orb Damage","type":"enchant"},{"id":"enchant.stat_1575282859","text":"Flame Golems have #% increased Damage","type":"enchant"},{"id":"enchant.stat_3510848926","text":"#% increased Ice Spear Critical Strike Chance in second form","type":"enchant"},{"id":"enchant.stat_3395096718","text":"#% increased Scorching Ray Damage","type":"enchant"},{"id":"enchant.stat_1028884162","text":"#% increased Split Arrow Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_3867484047","text":"Incinerate has # to maximum stages","type":"enchant"},{"id":"enchant.stat_3024867180","text":"#% increased Blade Vortex Duration","type":"enchant"},{"id":"enchant.stat_3293830776","text":"#% increased Enfeeble Curse Effect","type":"enchant"},{"id":"enchant.stat_1961975107","text":"#% increased Assassin\u0027s Mark Curse Effect","type":"enchant"},{"id":"enchant.stat_444686294","text":"#% reduced Spectral Throw Projectile Deceleration","type":"enchant"},{"id":"enchant.stat_1040958896","text":"#% chance to Summon an additional Skeleton Warrior with Summon Skeleton","type":"enchant"},{"id":"enchant.stat_2276547155","text":"Blade Blast deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_841281094","text":"Pyroclast Mine fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_2634945088","text":"#% increased Galvanic Arrow Damage","type":"enchant"},{"id":"enchant.stat_1554500307","text":"#% chance to Trigger Commandment of Fury on Hit","type":"enchant"},{"id":"enchant.stat_1843506018","text":"#% reduced Storm Call Duration","type":"enchant"},{"id":"enchant.stat_3131492956","text":"#% increased Lightning Trap Damage","type":"enchant"},{"id":"enchant.stat_3011405513","text":"Your Arc Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_4137556603","text":"Spectres have #% increased Attack and Cast Speed","type":"enchant"},{"id":"enchant.stat_2252338738","text":"#% chance to Trigger Decree of Fury on Hit","type":"enchant"},{"id":"enchant.stat_1898356067","text":"Storm Burst has a #% chance to create an additional Orb","type":"enchant"},{"id":"enchant.stat_78767457","text":"#% increased Power Siphon Damage","type":"enchant"},{"id":"enchant.stat_775200811","text":"Holy Flame Totem fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_1666713639","text":"#% increased Wild Strike Damage","type":"enchant"},{"id":"enchant.stat_1381908541","text":"Summon Raging Spirit has #% chance to summon an extra Minion","type":"enchant"},{"id":"enchant.stat_1359058534","text":"#% increased Cleave Damage","type":"enchant"},{"id":"enchant.stat_2420972973","text":"#% increased Effect of the Buff granted by your Carrion Golems","type":"enchant"},{"id":"enchant.stat_1398394628","text":"#% increased Flicker Strike Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_3781924200","text":"Ice Shot has #% increased Area of Effect angle","type":"enchant"},{"id":"enchant.stat_4047323043","text":"Consecrated Path deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2527931375","text":"#% increased Effect of the Buff granted by your Lightning Golems","type":"enchant"},{"id":"enchant.stat_4117042530","text":"Soulrend deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1809965314","text":"#% increased Double Strike Damage","type":"enchant"},{"id":"enchant.stat_3764410821","text":"Lightning Trap pierces an additional Target","type":"enchant"},{"id":"enchant.stat_2003026405","text":"#% increased Freezing Pulse Projectile Speed","type":"enchant"},{"id":"enchant.stat_1095160683","text":"Dominating Blow can summon an additional Magic Sentinel of Dominance","type":"enchant"},{"id":"enchant.stat_1962401751","text":"#% increased Ice Shot Area of Effect","type":"enchant"},{"id":"enchant.stat_3854723321","text":"#% increased Lacerate Area of Effect","type":"enchant"},{"id":"enchant.stat_2224580362","text":"Cobra Lash deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_147952811","text":"#% chance to Trigger Commandment of Blades on Hit","type":"enchant"},{"id":"enchant.stat_1792647120","text":"#% chance to Trigger Decree of Reflection when Hit","type":"enchant"},{"id":"enchant.stat_1648511635","text":"#% increased Effect of the Buff granted by your Chaos Golems","type":"enchant"},{"id":"enchant.stat_2585271359","text":"#% increased Viper Strike Damage","type":"enchant"},{"id":"enchant.stat_2600498881","text":"#% increased Fireball Damage","type":"enchant"},{"id":"enchant.stat_3036365740","text":"#% chance to Trigger Commandment of Reflection when Hit","type":"enchant"},{"id":"enchant.stat_1917107304","text":"#% increased Dual Strike Attack Speed","type":"enchant"},{"id":"enchant.stat_3630274354","text":"#% increased Lightning Strike Damage","type":"enchant"},{"id":"enchant.stat_3816405721","text":"Ice Golems deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_1062615953","text":"#% increased Spectral Throw Projectile Speed","type":"enchant"},{"id":"enchant.stat_1259277978","text":"#% chance to Trigger Commandment of Spite when Hit","type":"enchant"},{"id":"enchant.stat_4147746721","text":"Dash travels #% increased distance","type":"enchant"},{"id":"enchant.stat_1171483499","text":"Stone Golems deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_2948719994","text":"#% increased Storm Burst Damage","type":"enchant"},{"id":"enchant.stat_165958462","text":"#% chance to Trigger Decree of Blades on Hit","type":"enchant"},{"id":"enchant.stat_3734756042","text":"#% increased Viper Strike Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_2233726619","text":"Arctic Armour has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3139672534","text":"Wave of Conviction\u0027s Exposure applies #% Elemental Resistance","type":"enchant"},{"id":"enchant.stat_1201942540","text":"#% increased Double Strike Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_3078026860","text":"Explosive Trap causes an additional smaller explosion","type":"enchant"},{"id":"enchant.stat_760606760","text":"Perforate creates # Spike","type":"enchant"},{"id":"enchant.stat_1056396846","text":"#% increased Contagion Area of Effect","type":"enchant"},{"id":"enchant.stat_168538372","text":"#% increased Orb of Storms Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_1943147282","text":"#% of Galvanic Arrow Physical Damage gained as extra Lightning Damage","type":"enchant"},{"id":"enchant.stat_1999307054","text":"#% increased Sunder Attack Speed","type":"enchant"},{"id":"enchant.stat_3999206457","text":"#% increased Tectonic Slam Damage","type":"enchant"},{"id":"enchant.stat_3031985694","text":"Lancing Steel\u0027s primary Projectile Pierces 1 additional Target","type":"enchant"},{"id":"enchant.stat_1336543283","text":"#% increased Immortal Call Duration","type":"enchant"},{"id":"enchant.stat_68809719","text":"#% increased Ice Nova Area of Effect","type":"enchant"},{"id":"enchant.stat_2205814812","text":"#% increased Rain of Arrows Area of Effect","type":"enchant"},{"id":"enchant.stat_3096183736","text":"Tempest Shield chains an additional time","type":"enchant"},{"id":"enchant.stat_3948894096","text":"#% increased Shock Nova Damage","type":"enchant"},{"id":"enchant.stat_3229580299","text":"#% of Burning Arrow Physical Damage gained as Extra Fire Damage","type":"enchant"},{"id":"enchant.stat_3641868987","text":"#% chance to Trigger Decree of Light when you take a Critical Strike","type":"enchant"},{"id":"enchant.stat_3125201823","text":"Double Strike has a #% chance to deal Double Damage to Bleeding Enemies","type":"enchant"},{"id":"enchant.stat_2524620107","text":"#% increased Molten Strike Area of Effect","type":"enchant"},{"id":"enchant.stat_3109915337","text":"#% chance to Trigger Commandment of Light when you take a Critical Strike","type":"enchant"},{"id":"enchant.stat_3205997967","text":"Elemental Hit Always Freezes, Shocks and Ignites","type":"enchant"},{"id":"enchant.stat_1366391108","text":"#% chance to Trigger Decree of Inferno on Kill","type":"enchant"},{"id":"enchant.stat_2515273888","text":"#% chance to Trigger Decree of Winter when Hit","type":"enchant"},{"id":"enchant.stat_287319069","text":"Dread Banner has #% increased Aura Effect","type":"enchant"},{"id":"enchant.stat_195463427","text":"Arc has #% chance to Shock","type":"enchant"},{"id":"enchant.stat_1671985305","text":"#% chance to Trigger Decree of the Tempest on Hit","type":"enchant"},{"id":"enchant.stat_3053448465","text":"#% increased Flameblast Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_1794090421","text":"#% increased Ice Crash Damage","type":"enchant"},{"id":"enchant.stat_3564777492","text":"Smoke Mine grants additional #% increased Movement Speed","type":"enchant"},{"id":"enchant.stat_4074562940","text":"#% increased Vortex Duration","type":"enchant"},{"id":"enchant.stat_2666843091","text":"#% chance to Trigger Commandment of Force on Hit","type":"enchant"},{"id":"enchant.stat_3729006707","text":"#% increased Cold Snap Damage","type":"enchant"},{"id":"enchant.stat_4224384031","text":"#% increased Ice Trap Damage","type":"enchant"},{"id":"enchant.stat_4084540709","text":"#% increased Orb of Storms Damage","type":"enchant"},{"id":"enchant.stat_1087923932","text":"#% increased Frost Blades Projectile Speed","type":"enchant"},{"id":"enchant.stat_4243904146","text":"#% Chance on Frenzy to gain an additional Frenzy Charge","type":"enchant"},{"id":"enchant.stat_3593547682","text":"Summoned Carrion Golems deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_4203647216","text":"#% chance to Trigger Commandment of the Tempest on Hit","type":"enchant"},{"id":"enchant.stat_2212298325","text":"Divine Ire\u0027s beam has #% increased width","type":"enchant"},{"id":"enchant.stat_3222886961","text":"#% chance to Trigger Commandment of Winter when Hit","type":"enchant"},{"id":"enchant.stat_4033078288","text":"#% increased Sunder Damage","type":"enchant"},{"id":"enchant.stat_2187415468","text":"#% chance to Trigger Decree of the Grave when your Skills or Minions Kill","type":"enchant"},{"id":"enchant.stat_3080391193","text":"Summoned Holy Relics have #% increased Buff Effect","type":"enchant"},{"id":"enchant.stat_3152806535","text":"Blood Rage grants additional #% chance to gain a Frenzy Charge on Kill","type":"enchant"},{"id":"enchant.stat_2244239056","text":"Kinetic Bolt has #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_494477497","text":"#% chance to Trigger Commandment of War on Kill","type":"enchant"},{"id":"enchant.stat_1019790379","text":"Berserk has #% reduced Rage loss per second","type":"enchant"},{"id":"enchant.stat_4175469673","text":"#% increased Cremation Damage","type":"enchant"},{"id":"enchant.stat_2779309910","text":"#% increased Double Strike Attack Speed","type":"enchant"},{"id":"enchant.stat_4152292551","text":"#% chance to Trigger Decree of Thunder on Kill","type":"enchant"},{"id":"enchant.stat_1268512925","text":"#% chance to Trigger Decree of Frost on Kill","type":"enchant"},{"id":"enchant.stat_3186938438","text":"#% increased Puncture Duration","type":"enchant"},{"id":"enchant.stat_3760588941","text":"Heavy Strike has a #% chance to deal Double Damage","type":"enchant"},{"id":"enchant.stat_101788216","text":"#% increased Flesh Offering Duration","type":"enchant"},{"id":"enchant.stat_1063173946","text":"#% increased Spirit Offering Duration","type":"enchant"},{"id":"enchant.stat_2565809961","text":"#% increased Contagion Duration","type":"enchant"},{"id":"enchant.stat_609478942","text":"#% reduced Lightning Warp Duration","type":"enchant"},{"id":"enchant.stat_3465202861","text":"#% of Ice Crash Physical Damage gained as Extra Cold Damage","type":"enchant"},{"id":"enchant.stat_3106577499","text":"#% increased Cleave Attack Speed","type":"enchant"},{"id":"enchant.stat_2753191013","text":"#% increased Power Siphon Attack Speed","type":"enchant"},{"id":"enchant.stat_181307038","text":"#% increased Fire Trap Damage","type":"enchant"},{"id":"enchant.stat_309198891","text":"Wave of Conviction deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_4224588066","text":"Bane has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_522780692","text":"#% increased Frenzy Damage","type":"enchant"},{"id":"enchant.stat_2201904285","text":"#% increased Firestorm Damage","type":"enchant"},{"id":"enchant.stat_1818525360","text":"#% chance to Trigger Decree of Ire when Hit","type":"enchant"},{"id":"enchant.stat_2512194486","text":"Armageddon Brand has #% increased Activation Frequency","type":"enchant"},{"id":"enchant.stat_1967208066","text":"Plague Bearer Buff grants #% to Poison Damage over Time Multiplier while Infecting","type":"enchant"},{"id":"enchant.stat_990408262","text":"#% chance to Trigger Decree of Flames on Hit","type":"enchant"},{"id":"enchant.stat_482660590","text":"#% increased Detonate Dead Area of Effect","type":"enchant"},{"id":"enchant.stat_2592211591","text":"War Banner has #% increased Aura Effect","type":"enchant"},{"id":"enchant.stat_4147277532","text":"#% increased Rallying Cry Buff Effect","type":"enchant"},{"id":"enchant.stat_3703722637","text":"#% chance to Trigger Commandment of Flames on Hit","type":"enchant"},{"id":"enchant.stat_2925650365","text":"#% chance to Trigger Decree of Force on Hit","type":"enchant"},{"id":"enchant.stat_1303996723","text":"Ancestral Protector Totem grants #% increased Attack Speed while Active","type":"enchant"},{"id":"enchant.stat_1607493537","text":"#% increased Bone Offering Duration","type":"enchant"},{"id":"enchant.stat_2313072099","text":"Shattering Steel deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1902197291","text":"#% increased Whirling Blades Attack Speed","type":"enchant"},{"id":"enchant.stat_524936200","text":"#% increased Wild Strike Area of Effect","type":"enchant"},{"id":"enchant.stat_4255043252","text":"Molten Shell has #% increased Skill Effect Duration","type":"enchant"},{"id":"enchant.stat_1663783758","text":"Berserk has #% increased Buff Effect","type":"enchant"},{"id":"enchant.stat_3233607638","text":"Bone Offering grants an additional #% Chance to Block Attack Damage","type":"enchant"},{"id":"enchant.stat_2020183428","text":"#% chance to Trigger Commandment of Inferno on Kill","type":"enchant"},{"id":"enchant.stat_840189382","text":"Siege Ballista deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2844839137","text":"Summoned Skitterbots have #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_1440798870","text":"#% increased Flame Dash Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_1486490067","text":"#% increased Reave Radius","type":"enchant"},{"id":"enchant.stat_3359777583","text":"#% increased Storm Call Damage","type":"enchant"},{"id":"enchant.stat_3280107027","text":"Lightning Golems deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_2556095677","text":"#% increased Phase Run Duration","type":"enchant"},{"id":"enchant.stat_3949159285","text":"Explosive Arrow has #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_3283028259","text":"Artillery Ballista fires an additional Arrow","type":"enchant"},{"id":"enchant.stat_648343221","text":"#% increased Shield Charge Attack Speed","type":"enchant"},{"id":"enchant.stat_2789561878","text":"#% increased Projectile Weakness Curse Effect","type":"enchant"},{"id":"enchant.stat_2461424099","text":"Vortex has #% increased Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_1152784934","text":"Summoned Holy Relics deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_108883700","text":"#% increased Ground Slam Damage","type":"enchant"},{"id":"enchant.stat_850390248","text":"Minions summoned by Your Summoning Towers have #% increased Damage","type":"enchant"},{"id":"enchant.stat_574378310","text":"Blast Rain has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_3179781611","text":"#% increased Volatile Dead Cast Speed","type":"enchant"},{"id":"enchant.stat_253870897","text":"#% increased Sweep Damage","type":"enchant"},{"id":"enchant.stat_620045439","text":"#% chance to Trigger Commandment of Ire when Hit","type":"enchant"},{"id":"enchant.delirium_reward_armour","text":"Delirium Reward Type: Armour (\u00D7#)","type":"enchant"},{"id":"enchant.stat_1404787106","text":"Venom Gyre deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_618920318","text":"Lancing Steel\u0027s additional Projectiles have #% chance to Impale Enemies","type":"enchant"},{"id":"enchant.stat_3730999759","text":"#% increased Leap Slam Attack Speed","type":"enchant"},{"id":"enchant.stat_954135826","text":"#% increased Heavy Strike Damage","type":"enchant"},{"id":"enchant.stat_1528965411","text":"#% increased Warlord\u0027s Mark Curse Effect","type":"enchant"},{"id":"enchant.stat_684174846","text":"#% increased Earthquake Area of Effect","type":"enchant"},{"id":"enchant.stat_2289367813","text":"#% increased Cold Snap Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_12756171","text":"#% increased Lightning Tendrils Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_282417259","text":"#% increased Flammability Curse Effect","type":"enchant"},{"id":"enchant.stat_2294732229","text":"Smite has #% increased Aura Effect","type":"enchant"},{"id":"enchant.stat_494231298","text":"Stormblast Mine deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3569393676","text":"Blade Blast has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_242838571","text":"#% increased Infernal Blow Damage","type":"enchant"},{"id":"enchant.stat_2482018205","text":"Kinetic Bolt has #% increased Projectile Speed","type":"enchant"},{"id":"enchant.stat_1894493605","text":"#% increased Freezing Pulse Cast Speed","type":"enchant"},{"id":"enchant.stat_3723124286","text":"#% increased Whirling Blades Damage","type":"enchant"},{"id":"enchant.stat_430890565","text":"#% increased Flame Surge Damage against Burning Enemies","type":"enchant"},{"id":"enchant.stat_957864706","text":"#% increased Dark Pact Area of Effect","type":"enchant"},{"id":"enchant.stat_2596239449","text":"Ancestral Protector Totem deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1491182794","text":"#% increased Flame Surge Damage","type":"enchant"},{"id":"enchant.stat_2555366825","text":"#% of Glacial Hammer Physical Damage gained as Extra Cold Damage","type":"enchant"},{"id":"enchant.stat_2257652056","text":"Scourge Arrow has #% chance to Poison per Stage","type":"enchant"},{"id":"enchant.stat_944311193","text":"Purifying Flame deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2159486200","text":"Lancing Steel deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1891516164","text":"#% increased Spectral Shield Throw Damage","type":"enchant"},{"id":"enchant.stat_2273926362","text":"Withering Step inflicts # additional Withered Debuffs","type":"enchant"},{"id":"enchant.stat_780453137","text":"#% increased Abyssal Cry Damage","type":"enchant"},{"id":"enchant.stat_1549594869","text":"#% increased Dark Pact Cast Speed","type":"enchant"},{"id":"enchant.stat_345703394","text":"#% increased Fire Trap Burning Damage","type":"enchant"},{"id":"enchant.stat_4136186767","text":"Mirror Arrow and Mirror Arrow Clones deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_4129421630","text":"#% increased Lightning Arrow Area of Effect","type":"enchant"},{"id":"enchant.stat_2871777604","text":"Raised Zombies have #% to Elemental Resistances","type":"enchant"},{"id":"enchant.stat_2295263113","text":"Vortex has #% increased Area of Effect when Cast on Frostbolt","type":"enchant"},{"id":"enchant.stat_3854556792","text":"#% increased Caustic Arrow Area of Effect","type":"enchant"},{"id":"enchant.stat_447560345","text":"Wither has #% increased Duration","type":"enchant"},{"id":"enchant.stat_241781316","text":"#% increased Enduring Cry Buff Effect","type":"enchant"},{"id":"enchant.stat_1646093658","text":"#% increased Magma Orb Area of Effect","type":"enchant"},{"id":"enchant.stat_88796379","text":"#% increased Glacial Cascade Area of Effect","type":"enchant"},{"id":"enchant.stat_2287764959","text":"#% increased Vigilant Strike Damage","type":"enchant"},{"id":"enchant.stat_3172519570","text":"#% increased Cleave Area of Effect","type":"enchant"},{"id":"enchant.stat_2070247068","text":"#% increased Storm Call Area of Effect","type":"enchant"},{"id":"enchant.stat_3214665792","text":"Tectonic Slam has #% chance to create a Charged Slam","type":"enchant"},{"id":"enchant.stat_1609523492","text":"#% increased Assassin\u0027s Mark Duration","type":"enchant"},{"id":"enchant.stat_2843908086","text":"#% increased Effect of Curses applied by Bane","type":"enchant"},{"id":"enchant.stat_303359279","text":"Soulrend also Hinders Enemies, with #% reduced Movement Speed","type":"enchant"},{"id":"enchant.stat_2226973351","text":"Burning Arrow Always Ignites","type":"enchant"},{"id":"enchant.stat_1041365824","text":"Explosive Arrow has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_2537202749","text":"Static Strike has # maximum Beam Targets","type":"enchant"},{"id":"enchant.stat_3371533847","text":"Soulrend fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_3100629498","text":"Consecrated Ground from Purifying Flame applies #% increased Damage taken to Enemies","type":"enchant"},{"id":"enchant.stat_308326229","text":"#% increased Reckoning Damage","type":"enchant"},{"id":"enchant.stat_1030003515","text":"#% increased Flame Surge Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_1443215722","text":"#% increased Frostbite Curse Effect","type":"enchant"},{"id":"enchant.stat_3869217625","text":"#% increased Viper Strike Duration","type":"enchant"},{"id":"enchant.stat_856157011","text":"Pestilent Strike deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_4102483123","text":"Steelskin Buff can take #% increased amount of Damage","type":"enchant"},{"id":"enchant.stat_565901339","text":"#% increased Shock Nova Area of Effect","type":"enchant"},{"id":"enchant.stat_3609207587","text":"#% Chance to gain an additional Power Charge on Kill with Power Siphon","type":"enchant"},{"id":"enchant.stat_3278819254","text":"#% increased Poacher\u0027s Mark Curse Effect","type":"enchant"},{"id":"enchant.stat_4231484190","text":"#% increased Frostbolt Cast Speed","type":"enchant"},{"id":"enchant.stat_387490713","text":"#% increased Caustic Arrow Duration","type":"enchant"},{"id":"enchant.stat_3590425794","text":"Explosive Arrow has #% increased Duration","type":"enchant"},{"id":"enchant.stat_1972101281","text":"#% increased Vengeance Damage","type":"enchant"},{"id":"enchant.stat_3628984170","text":"Explosive Arrow deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2731606134","text":"Perforate deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1743954272","text":"#% increased Discharge Radius","type":"enchant"},{"id":"enchant.stat_4259029320","text":"#% chance for Phase Run to increase Duration without removing Frenzy Charges","type":"enchant"},{"id":"enchant.stat_2511915418","text":"#% increased Blight Area of Effect","type":"enchant"},{"id":"enchant.stat_3320271130","text":"#% increased Ancestral Warchief Totem Area of Effect","type":"enchant"},{"id":"enchant.stat_1993913925","text":"Caustic Arrow has #% chance to inflict Withered on Hit for # second base Duration","type":"enchant"},{"id":"enchant.stat_3371538704","text":"#% increased Cold Snap Area of Effect","type":"enchant"},{"id":"enchant.stat_3316767657","text":"#% increased Sunder Area of Effect","type":"enchant"},{"id":"enchant.stat_2484188706","text":"#% of Infernal Blow Physical Damage gained as Extra Fire Damage","type":"enchant"},{"id":"enchant.stat_1769497634","text":"# to maximum number of Bladestorms","type":"enchant"},{"id":"enchant.stat_2778301298","text":"Orb of Storms has #% increased Cast Speed","type":"enchant"},{"id":"enchant.stat_3232905239","text":"#% Chance to gain a Power Charge on Critical Strike with Ice Spear","type":"enchant"},{"id":"enchant.stat_732631533","text":"Cobra Lash has #% increased Projectile Speed","type":"enchant"},{"id":"enchant.stat_3961497709","text":"#% increased Storm Burst Area of Effect","type":"enchant"},{"id":"enchant.stat_3953599026","text":"#% increased Unearth Damage","type":"enchant"},{"id":"enchant.stat_3285061858","text":"Consecrated Path has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_3995612171","text":"#% increased Arctic Armour Buff Effect","type":"enchant"},{"id":"enchant.stat_2801853811","text":"Holy Flame Totem deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_648647905","text":"Ground Slam has a #% increased angle","type":"enchant"},{"id":"enchant.stat_2440551805","text":"#% increased Shockwave Totem Damage","type":"enchant"},{"id":"enchant.stat_2298223148","text":"#% increased Searing Bond Damage","type":"enchant"},{"id":"enchant.stat_1691710359","text":"#% increased Firestorm Duration","type":"enchant"},{"id":"enchant.stat_1433838252","text":"#% chance to Dodge Attack Hits while at maximum Blade Flurry stages","type":"enchant"},{"id":"enchant.stat_1532964880","text":"#% increased Flameblast Area of Effect","type":"enchant"},{"id":"enchant.stat_3490662882","text":"#% increased Shield Charge Damage","type":"enchant"},{"id":"enchant.stat_27640220","text":"#% to Raised Spectre Elemental Resistances","type":"enchant"},{"id":"enchant.stat_4172171622","text":"Dash has # Cooldown Use","type":"enchant"},{"id":"enchant.stat_2846773529","text":"#% increased Arctic Breath Damage","type":"enchant"},{"id":"enchant.stat_1810898461","text":"Wither has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_702909553","text":"#% increased Scorching Ray beam length","type":"enchant"},{"id":"enchant.stat_3698446010","text":"Ice Trap Damage Penetrates #% Cold Resistance","type":"enchant"},{"id":"enchant.stat_2875508213","text":"#% increased Orb of Storms Area of Effect","type":"enchant"},{"id":"enchant.stat_2680060124","text":"#% increased Convocation Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_3269321994","text":"Ice Nova Always Freezes","type":"enchant"},{"id":"enchant.stat_4207255685","text":"Explosive Trap deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_340193547","text":"#% increased Tectonic Slam Area of Effect","type":"enchant"},{"id":"enchant.stat_1967878868","text":"Blink Arrow and Blink Arrow Clones have #% increased Damage","type":"enchant"},{"id":"enchant.stat_696995312","text":"#% increased Burning Arrow Damage","type":"enchant"},{"id":"enchant.stat_2157671820","text":"Venom Gyre has a #% chance to inflict Withered for 2 seconds on Hit","type":"enchant"},{"id":"enchant.stat_683073695","text":"#% increased Despair Duration","type":"enchant"},{"id":"enchant.stat_281958409","text":"Withering Step has #% increased Elusive Effect","type":"enchant"},{"id":"enchant.stat_1235531589","text":"Stormbind deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_516587640","text":"#% increased Enfeeble Duration","type":"enchant"},{"id":"enchant.stat_2275055843","text":"#% increased Vigilant Strike Fortify Duration","type":"enchant"},{"id":"enchant.stat_2844206732","text":"#% increased Punishment Curse Effect","type":"enchant"},{"id":"enchant.stat_551375258","text":"#% increased Static Strike Damage","type":"enchant"},{"id":"enchant.stat_2054059315","text":"#% increased Convocation Buff Effect","type":"enchant"},{"id":"enchant.stat_4170725899","text":"Blight has #% increased Hinder Duration","type":"enchant"},{"id":"enchant.stat_4071708873","text":"#% increased Riposte Damage","type":"enchant"},{"id":"enchant.stat_288248772","text":"Glacial Hammer has #% chance to Freeze","type":"enchant"},{"id":"enchant.stat_3040033697","text":"Bladefall has an additional Volley","type":"enchant"},{"id":"enchant.stat_680880155","text":"Steelskin grants #% additional Physical Damage Reduction","type":"enchant"},{"id":"enchant.stat_39356080","text":"#% increased Lightning Tendrils Damage","type":"enchant"},{"id":"enchant.stat_3185156108","text":"#% increased Despair Curse Effect","type":"enchant"},{"id":"enchant.stat_4202548383","text":"#% increased Sweep Area of Effect","type":"enchant"},{"id":"enchant.stat_3279758713","text":"#% increased Scorching Ray Cast Speed","type":"enchant"},{"id":"enchant.stat_444858149","text":"Siege Ballista has #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_3931013900","text":"#% increased Firestorm explosion Area of Effect","type":"enchant"},{"id":"enchant.stat_2896357741","text":"Siege Ballista has #% increased Totem Placement Speed","type":"enchant"},{"id":"enchant.stat_1478321338","text":"Your Flamethrower Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_3617955571","text":"#% increased Enduring Cry Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_3395908304","text":"#% increased Conductivity Curse Effect","type":"enchant"},{"id":"enchant.stat_246356360","text":"Your Empowering Towers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_1447427508","text":"#% increased Vengeance Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_3653459847","text":"Mirror Arrow and Mirror Arrow Clones have #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_3026568825","text":"Summoned Holy Relics have #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_819890745","text":"#% increased Conductivity Duration","type":"enchant"},{"id":"enchant.stat_2523298357","text":"#% increased Barrage Attack Speed","type":"enchant"},{"id":"enchant.stat_3946561324","text":"Smite has a #% chance for lightning to strike another target","type":"enchant"},{"id":"enchant.stat_1374371477","text":"#% chance to Trigger Commandment of the Grave when your Skills or Minions Kill","type":"enchant"},{"id":"enchant.stat_3229878341","text":"#% increased Vulnerability Duration","type":"enchant"},{"id":"enchant.stat_2412561418","text":"Wave of Conviction has #% increased Duration","type":"enchant"},{"id":"enchant.stat_2048678824","text":"Consecrated Path has #% increased teleport range","type":"enchant"},{"id":"enchant.stat_2380598805","text":"#% increased Frost Bomb Damage","type":"enchant"},{"id":"enchant.stat_4189505564","text":"Devouring Totem has #% Chance to Consume an additional corpse","type":"enchant"},{"id":"enchant.stat_1783696476","text":"#% increased Frostbite Duration","type":"enchant"},{"id":"enchant.stat_2836937264","text":"# to maximum number of Sentinels of Purity","type":"enchant"},{"id":"enchant.stat_3850775143","text":"#% increased Leap Slam Damage","type":"enchant"},{"id":"enchant.stat_1660758870","text":"#% increased Kinetic Blast Area of Effect","type":"enchant"},{"id":"enchant.stat_1924239636","text":"#% increased Punishment Duration","type":"enchant"},{"id":"enchant.stat_1934891174","text":"#% increased Abyssal Cry Duration","type":"enchant"},{"id":"enchant.stat_2094281311","text":"#% to Animated Guardian Elemental Resistances","type":"enchant"},{"id":"enchant.stat_3449510470","text":"#% increased Frost Blades Damage","type":"enchant"},{"id":"enchant.stat_4264622444","text":"Ethereal Knives Pierces an additional Target ","type":"enchant"},{"id":"enchant.stat_4082863126","text":"Holy Flame Totem has #% increased Projectile Speed","type":"enchant"},{"id":"enchant.stat_4210927948","text":"#% increased Lightning Trap Shock Effect","type":"enchant"},{"id":"enchant.stat_2983274404","text":"#% increased Blink Arrow Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_3766479096","text":"#% increased Warlord\u0027s Mark Duration","type":"enchant"},{"id":"enchant.stat_2231403318","text":"#% increased Fireball Cast Speed","type":"enchant"},{"id":"enchant.stat_4199670252","text":"#% increased Rallying Cry Duration","type":"enchant"},{"id":"enchant.delirium_reward_uniques","text":"Delirium Reward Type: Unique Items (\u00D7#)","type":"enchant"},{"id":"enchant.stat_1347575155","text":"#% increased Lightning Warp Cast Speed","type":"enchant"},{"id":"enchant.stat_3162144587","text":"Icicle Mine has #% increased Throwing Speed","type":"enchant"},{"id":"enchant.delirium_reward_trinkets","text":"Delirium Reward Type: Jewellery (\u00D7#)","type":"enchant"},{"id":"enchant.stat_4227497218","text":"#% increased Poacher\u0027s Mark Duration","type":"enchant"},{"id":"enchant.stat_2906742892","text":"#% increased Static Strike Duration","type":"enchant"},{"id":"enchant.stat_1954529734","text":"Purifying Flame has #% increased Area of Effect if targeting Consecrated Ground","type":"enchant"},{"id":"enchant.stat_341054435","text":"#% increased Bodyswap Damage","type":"enchant"},{"id":"enchant.delirium_reward_weapon","text":"Delirium Reward Type: Weapons (\u00D7#)","type":"enchant"},{"id":"enchant.stat_3367298564","text":"#% increased Ice Trap Area of Effect","type":"enchant"},{"id":"enchant.stat_3295914630","text":"Ice Spear travels #% reduced distance before changing forms","type":"enchant"},{"id":"enchant.stat_1781106044","text":"#% increased Mirror Arrow Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_1230050013","text":"#% increased Lightning Tendrils Area of Effect","type":"enchant"},{"id":"enchant.stat_1153159301","text":"#% increased Shockwave Totem Area of Effect","type":"enchant"},{"id":"enchant.stat_3772643988","text":"#% increased Sentinel of Dominance Duration","type":"enchant"},{"id":"enchant.stat_131320052","text":"Converted Enemies have #% increased Damage","type":"enchant"},{"id":"enchant.stat_3719728947","text":"#% increased Smoke Mine Duration","type":"enchant"},{"id":"enchant.stat_2432759583","text":"Pyroclast Mine has #% increased Throwing Speed","type":"enchant"},{"id":"enchant.stat_889695873","text":"#% chance to Trigger Decree of Spite when Hit","type":"enchant"},{"id":"enchant.stat_2206071316","text":"Bane deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3503624267","text":"Cremation can have up to # additional Geyser at a time","type":"enchant"},{"id":"enchant.stat_2834109076","text":"Your Freezebolt Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_343849491","text":"#% increased Heavy Strike Attack Speed","type":"enchant"},{"id":"enchant.stat_2166622264","text":"#% increased Flammability Duration","type":"enchant"},{"id":"enchant.stat_2287986752","text":"#% increased Riposte Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_3823033989","text":"Stormbind has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_1293597434","text":"Adds # to # Lightning Damage if you haven\u0027t Killed Recently","type":"enchant"},{"id":"enchant.stat_3070497632","text":"Frostblink has #% increased maximum travel distance","type":"enchant"},{"id":"enchant.stat_1698558866","text":"Galvanic Arrow has #% increased Projectile Speed","type":"enchant"},{"id":"enchant.stat_3061969105","text":"#% increased Ground Slam Area of Effect","type":"enchant"},{"id":"enchant.stat_105839441","text":"Infernal Blow Debuff deals an additional #% of Damage per Charge","type":"enchant"},{"id":"enchant.stat_3801130154","text":"Ice Spear fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_2387717928","text":"#% increased Unearth Cast Speed","type":"enchant"},{"id":"enchant.stat_3816022821","text":"#% increased Arctic Breath Area of Effect","type":"enchant"},{"id":"enchant.stat_1819243251","text":"Your Meteor Towers always Stun","type":"enchant"},{"id":"enchant.stat_3536566359","text":"Perforate has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_1601558321","text":"#% to Stone Golem Elemental Resistances","type":"enchant"},{"id":"enchant.stat_1694915226","text":"Explosive Trap has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_775034903","text":"#% increased Frost Wall Duration","type":"enchant"},{"id":"enchant.stat_2143519574","text":"#% increased Conversion Trap Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_2938856716","text":"#% increased Cremation Cast Speed","type":"enchant"},{"id":"enchant.stat_3519675720","text":"Blast Rain fires an additional Arrow","type":"enchant"},{"id":"enchant.stat_3367800526","text":"#% increased Leap Slam Area of Effect","type":"enchant"},{"id":"enchant.stat_289027663","text":"Chain Hook deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2833259811","text":"Shattering Steel fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_2685860927","text":"#% increased Static Strike Area of Effect","type":"enchant"},{"id":"enchant.stat_3738339949","text":"Burning Arrow has #% increased Debuff Effect","type":"enchant"},{"id":"enchant.stat_708179348","text":"#% increased Searing Bond Totem Placement Speed","type":"enchant"},{"id":"enchant.stat_1631824124","text":"#% increased Decoy Totem Life","type":"enchant"},{"id":"enchant.stat_1106926438","text":"#% chance to Trigger Decree of War on Kill","type":"enchant"},{"id":"enchant.stat_2718657160","text":"Stormblast Mine has #% increased Aura Effect","type":"enchant"},{"id":"enchant.stat_1877863115","text":"#% increased Bear Trap Damage","type":"enchant"},{"id":"enchant.stat_3317752680","text":"#% increased Devouring Totem Leech per second","type":"enchant"},{"id":"enchant.stat_2259906777","text":"#% increased Shockwave Totem Cast Speed","type":"enchant"},{"id":"enchant.stat_2588242810","text":"Chain Hook has a #% chance to grant \u002B1 Rage if it Hits Enemies","type":"enchant"},{"id":"enchant.stat_3787328468","text":"Pestilent Strike has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_1298820272","text":"#% to increased Flame Golem Elemental Resistances","type":"enchant"},{"id":"enchant.stat_2791271819","text":"Ensnaring Arrow has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_1056655244","text":"Your Glacial Cage Towers have #% increased Duration","type":"enchant"},{"id":"enchant.stat_592861938","text":"#% increased Ancestral Protector Totem Placement Speed","type":"enchant"},{"id":"enchant.stat_1451372148","text":"#% increased Frost Bomb Area of Effect","type":"enchant"},{"id":"enchant.stat_2740567252","text":"#% increased Arc Damage","type":"enchant"},{"id":"enchant.stat_3524326896","text":"#% increased Frost Bomb Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_1452255482","text":"Flamethrower Trap has an additional Flame","type":"enchant"},{"id":"enchant.stat_1220207954","text":"#% to Ancestral Protector Totem Elemental Resistances","type":"enchant"},{"id":"enchant.stat_1405738574","text":"Ensnaring Arrow has #% increased Debuff Effect","type":"enchant"},{"id":"enchant.stat_59544006","text":"Summoned Carrion Golems have #% to all Elemental Resistances","type":"enchant"},{"id":"enchant.stat_2520825974","text":"#% to Ice Golem Elemental Resistances","type":"enchant"},{"id":"enchant.stat_397438226","text":"#% increased Bodyswap Cast Speed","type":"enchant"},{"id":"enchant.stat_644285691","text":"Chills from Ice Nova Hits always reduce Action Speed by at least #%","type":"enchant"},{"id":"enchant.stat_1588572574","text":"#% increased Rejuvenation Totem Aura Effect","type":"enchant"},{"id":"enchant.stat_2898302567","text":"Charged Dash has # to Radius of each Wave\u0027s last damage Area","type":"enchant"},{"id":"enchant.stat_3026109282","text":"Your Fireball Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_2338484156","text":"#% to Lightning Golem Elemental Resistances","type":"enchant"},{"id":"enchant.stat_815588902","text":"Frostblink has #% reduced Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_2479762395","text":"#% increased Frost Wall Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_2337005967","text":"Dominating Blow can summon an additional Rare Sentinel of Dominance","type":"enchant"},{"id":"enchant.stat_918308703","text":"#% increased Bear Trap Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_1734517294","text":"Artillery Ballista Damage Penetrates #% Fire Resistance","type":"enchant"},{"id":"enchant.stat_1213017413","text":"Shrapnel Ballista has #% increased Projectile Speed","type":"enchant"},{"id":"enchant.stat_64670441","text":"Pestilent Strike has #% increased Duration","type":"enchant"},{"id":"enchant.stat_611022108","text":"Shattering Steel grants Fortify on Hitting an Enemy at Close Range","type":"enchant"},{"id":"enchant.stat_2519689029","text":"#% increased Searing Bond Totem Elemental Resistances","type":"enchant"},{"id":"enchant.stat_1175282728","text":"Seismic Trap deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1686675991","text":"#% increased Decoy Totem Area of Effect","type":"enchant"},{"id":"enchant.stat_3013068851","text":"#% increased Flame Dash Damage","type":"enchant"},{"id":"enchant.stat_1678345858","text":"Enemies affected by Bear Trap take #% increased Damage from Trap or Mine Hits","type":"enchant"},{"id":"enchant.stat_1007135105","text":"#% increased Kinetic Blast Damage","type":"enchant"},{"id":"enchant.stat_2109176627","text":"Frost Bomb has #% increased Debuff Duration","type":"enchant"},{"id":"enchant.stat_2807947","text":"Consecrated Ground from Holy Flame Totem applies #% increased Damage taken to Enemies","type":"enchant"},{"id":"enchant.stat_797408710","text":"Charged Dash has #% more Movement Speed","type":"enchant"},{"id":"enchant.stat_3606492882","text":"Arcane Cloak grants Life Regeneration equal to #% of Mana Spent per Second","type":"enchant"},{"id":"enchant.stat_3825617457","text":"#% increased Rain of Arrows Attack Speed","type":"enchant"},{"id":"enchant.stat_982975385","text":"Lightning Spire Trap deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_4162139595","text":"Flamethrower Trap deals #% increased Damage","type":"enchant"},{"id":"enchant.delirium_reward_currency","text":"Delirium Reward Type: Currency (\u00D7#)","type":"enchant"},{"id":"enchant.stat_1615912303","text":"Seismic Trap has #% increased Skill Effect Duration","type":"enchant"},{"id":"enchant.stat_3686368306","text":"Siphoning Trap deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2563177940","text":"Venom Gyre has a #% chance to keep caught Projectiles fired by using Whirling Blades","type":"enchant"},{"id":"enchant.stat_4151555126","text":"#% increased Incinerate Damage for each stage","type":"enchant"},{"id":"enchant.stat_4059221381","text":"Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1 second","type":"enchant"},{"id":"enchant.stat_3618430531","text":"Seismic Trap has #% increased Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_297308603","text":"Blast Rain has a #% chance to fire an additional Arrow","type":"enchant"},{"id":"enchant.stat_1151217691","text":"#% increased Elemental Hit Attack Speed","type":"enchant"},{"id":"enchant.delirium_reward_prophecies","text":"Delirium Reward Type: Prophecy Items (\u00D7#)","type":"enchant"},{"id":"enchant.stat_3348324479","text":"#% increased Elemental Weakness Curse Effect","type":"enchant"},{"id":"enchant.stat_2207890291","text":"Lightning Spire Trap has #% increased Skill Effect Duration","type":"enchant"},{"id":"enchant.stat_959534996","text":"Shrapnel Ballista fires an additional Arrow","type":"enchant"},{"id":"enchant.stat_2056176052","text":"Artillery Ballista Projectiles fall in two perpendicular lines instead","type":"enchant"},{"id":"enchant.delirium_reward_abyss","text":"Delirium Reward Type: Abyss Items (\u00D7#)","type":"enchant"},{"id":"enchant.delirium_reward_essences","text":"Delirium Reward Type: Essences (\u00D7#)","type":"enchant"},{"id":"enchant.stat_4166695945","text":"Siphoning Trap has #% increased Skill Effect Duration","type":"enchant"},{"id":"enchant.stat_155429578","text":"Summoned Agony Crawler fires # additional Projectile","type":"enchant"},{"id":"enchant.stat_1819674879","text":"Animated Weapons deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_242209782","text":"Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1.5 seconds","type":"enchant"},{"id":"enchant.stat_1570047087","text":"Lightning Spire Trap has #% increased Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_3279786746","text":"#% increased Fire Trap Burning Ground Duration","type":"enchant"},{"id":"enchant.stat_3229261553","text":"Spirit Offering grants #% of Physical Damage as Extra Chaos Damage","type":"enchant"},{"id":"enchant.stat_535507671","text":"Lightning Spire Trap has #% increased Cast Speed","type":"enchant"},{"id":"enchant.stat_38715141","text":"Summon Raging Spirit has #% increased Duration","type":"enchant"},{"id":"enchant.stat_525771896","text":"Flamethrower Trap has #% increased Skill Effect Duration","type":"enchant"},{"id":"enchant.stat_2530563277","text":"Siphoning Trap has #% increased Chill Effect","type":"enchant"},{"id":"enchant.stat_2962501808","text":"Flamethrower Trap has #% increased Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_3269147016","text":"Chain Hook has \u002B# Radius per 12 Rage","type":"enchant"},{"id":"enchant.stat_1104507216","text":"Lightning Spire Trap strikes an additional area","type":"enchant"},{"id":"enchant.stat_3072232736","text":"Determination has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.delirium_reward_maps","text":"Delirium Reward Type: Map Items (\u00D7#)","type":"enchant"},{"id":"enchant.delirium_reward_fossils","text":"Delirium Reward Type: Fossils (\u00D7#)","type":"enchant"},{"id":"enchant.stat_1389191919","text":"Seismic Trap releases an additional Wave","type":"enchant"},{"id":"enchant.stat_2931005730","text":"Flamethrower Trap has #% increased Cast Speed","type":"enchant"},{"id":"enchant.stat_609916976","text":"Sweep has a #% chance to grant an Endurance Charge on Hit","type":"enchant"},{"id":"enchant.stat_27499777","text":"Your Chilling Towers have #% increased Range","type":"enchant"},{"id":"enchant.delirium_reward_fragments","text":"Delirium Reward Type: Fragments (\u00D7#)","type":"enchant"},{"id":"enchant.delirium_reward_scarabs","text":"Delirium Reward Type: Scarabs (\u00D7#)","type":"enchant"},{"id":"enchant.stat_1270423035","text":"Your Meteor Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_888039248","text":"#% increased Temporal Chains Duration","type":"enchant"},{"id":"enchant.stat_2013536039","text":"Minions summoned by Your Sentinel Towers have #% increased Damage","type":"enchant"},{"id":"enchant.delirium_reward_harbinger","text":"Delirium Reward Type: Harbinger Items (\u00D7#)","type":"enchant"},{"id":"enchant.delirium_reward_labyrinth","text":"Delirium Reward Type: Labyrinth Items (\u00D7#)","type":"enchant"},{"id":"enchant.stat_2121581717","text":"#% increased Tempest Shield Damage","type":"enchant"},{"id":"enchant.stat_2306522833","text":"#% increased Monster Movement Speed","type":"enchant"},{"id":"enchant.stat_1557531966","text":"Lightning Trap Damage Penetrates #% Lightning Resistance","type":"enchant"},{"id":"enchant.stat_2078691497","text":"#% increased Cost of Building and Upgrading Towers","type":"enchant"},{"id":"enchant.stat_2781179464","text":"Arctic Breath\u0027s Chilling Area has #% increased Movement Speed","type":"enchant"},{"id":"enchant.stat_1654191578","text":"#% increased Projectile Weakness Duration","type":"enchant"},{"id":"enchant.stat_2774873427","text":"Frostbolt has #% chance to Freeze","type":"enchant"},{"id":"enchant.stat_3893420071","text":"Normal Maps contain # additional packs of Normal Monsters","type":"enchant"},{"id":"enchant.stat_3672378181","text":"Rare Maps contain # additional Rare Monster packs","type":"enchant"},{"id":"enchant.stat_839907382","text":"Magic Maps contain # additional packs of Magic Monsters","type":"enchant"},{"id":"enchant.stat_3003096493","text":"Delirium Reward Type: #","type":"enchant"},{"id":"enchant.stat_804983774","text":"#% increased Reckoning Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_1803063132","text":"Gain #% of Rejuvenation Totem Life Regeneration as extra Mana Regeneration","type":"enchant"},{"id":"enchant.stat_209345940","text":"#% increased Lightning Warp Damage","type":"enchant"},{"id":"enchant.stat_3346280197","text":"Your Imbuing Towers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_2098790581","text":"Fireball Always Ignites","type":"enchant"},{"id":"enchant.stat_354556858","text":"#% increased Galvanic Arrow Area of Effect","type":"enchant"},{"id":"enchant.stat_2673745094","text":"Siphoning Trap\u0027s beam to you grants #% reduced Damage taken for each other beam","type":"enchant"},{"id":"enchant.stat_1946386823","text":"#% to Chaos Golem Elemental Resistances","type":"enchant"},{"id":"enchant.stat_3917881666","text":"#% reduced Earthquake Duration","type":"enchant"},{"id":"enchant.stat_2882048906","text":"Your Shock Nova Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_2614099660","text":"Fire Nova Mine repeats an additional # times","type":"enchant"},{"id":"enchant.stat_21993405","text":"Area contains # additional Packs with Mirrored Rare Monsters","type":"enchant"},{"id":"enchant.stat_2690620076","text":"#% increased Elemental Weakness Duration","type":"enchant"},{"id":"enchant.stat_1260718722","text":"#% chance for Blight Chests to drop an additional Reward","type":"enchant"},{"id":"enchant.stat_2454791895","text":"Your Glacial Cage Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_4031295671","text":"#% increased Infernal Blow Area of Effect","type":"enchant"},{"id":"enchant.stat_2363866815","text":"Icicle Mine deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1867024035","text":"Area contains # additional pack of Corrupted Vaal Monsters","type":"enchant"},{"id":"enchant.stat_2109921176","text":"Your Temporal Towers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_3151377452","text":"Players and their Minions cannot take Reflected Damage","type":"enchant"},{"id":"enchant.delirium_reward_blight","text":"Delirium Reward Type: Incubators (\u00D7#)","type":"enchant"},{"id":"enchant.stat_1494168614","text":"Shrapnel Ballista Pierces an additional Target","type":"enchant"},{"id":"enchant.stat_2562208244","text":"Incinerate has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_495713612","text":"#% increased Duration of Shrine Effects on Players","type":"enchant"},{"id":"enchant.stat_1330754855","text":"Towers deal #% more Damage","type":"enchant"},{"id":"enchant.stat_3240183538","text":"Area contains an extra Strongbox","type":"enchant"},{"id":"enchant.stat_2600949388","text":"#% increased Ice Shot Duration","type":"enchant"},{"id":"enchant.stat_1960580674","text":"Your Lightning Storm Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_3187151138","text":"Area contains # (Master)","type":"enchant","option":{"options":[{"id":"2","value":"2","text":"Einhar"},{"id":"3","value":"3","text":"Alva"},{"id":"5","value":"5","text":"Niko"},{"id":"6","value":"6","text":"Jun"},{"id":"7","value":"7","text":"Zana"}]}},{"id":"enchant.stat_1572544406","text":"Your Arc Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_2732675053","text":"#% increased Glacial Hammer Damage","type":"enchant"},{"id":"enchant.stat_558298545","text":"#% increased Herald of Thunder Damage","type":"enchant"},{"id":"enchant.stat_1035680542","text":"Your Glacial Cage Towers have #% increased Cooldown Recovery","type":"enchant"},{"id":"enchant.stat_2575601188","text":"#% increased Fire Nova Mine Damage","type":"enchant"},{"id":"enchant.stat_2423221070","text":"#% increased Ice Spear Damage","type":"enchant"},{"id":"enchant.stat_545950479","text":"Area contains # additional packs of Monsters that deal Lightning Damage","type":"enchant"},{"id":"enchant.delirium_reward_talismans","text":"Delirium Reward Type: Talismans (\u00D7#)","type":"enchant"},{"id":"enchant.delirium_reward_breach","text":"Delirium Reward Type: Breach Items (\u00D7#)","type":"enchant"},{"id":"enchant.stat_2097223452","text":"Your Empowering Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_4118537428","text":"#% Sweep Knockback Chance","type":"enchant"},{"id":"enchant.delirium_reward_metamorphosis","text":"Delirium Reward Type: Blight Items (\u00D7#)","type":"enchant"},{"id":"enchant.stat_3687716368","text":"Your Flamethrower Towers deal full damage to Fire Enemies","type":"enchant"},{"id":"enchant.stat_665179774","text":"Your Flamethrower Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_2187439577","text":"Players and Monsters take #% increased Fire Damage","type":"enchant"},{"id":"enchant.stat_2366645974","text":"Area contains # additional packs of Monsters that deal Fire Damage","type":"enchant"},{"id":"enchant.stat_3211417111","text":"#% increased Fire Nova Cast Speed","type":"enchant"},{"id":"enchant.stat_1730614496","text":"#% increased Vortex Area of Effect","type":"enchant"},{"id":"enchant.stat_1243906675","text":"#% reduced Ball Lightning Projectile Speed","type":"enchant"},{"id":"enchant.stat_740609357","text":"#% increased Desecrate Cooldown Recovery Speed","type":"enchant"},{"id":"enchant.stat_1554597333","text":"Blink Arrow and Blink Arrow Clones have #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_2550660356","text":"Your Summoning Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_1953644681","text":"#% chance for Immortal Call to increase Duration without removing Endurance Charges","type":"enchant"},{"id":"enchant.stat_2933995134","text":"Freeze Mine causes Enemies to lose an additional #% Cold Resistance while Frozen","type":"enchant"},{"id":"enchant.stat_4008016019","text":"Beyond Portals have a #% chance to spawn an additional Beyond Demon","type":"enchant"},{"id":"enchant.stat_1556508042","text":"Sand Bladestorms move with #% increased speed","type":"enchant"},{"id":"enchant.stat_3207852985","text":"Players and Monsters take #% increased Cold Damage","type":"enchant"},{"id":"enchant.stat_3194736016","text":"Area contains # additional packs of Monsters that deal Cold Damage","type":"enchant"},{"id":"enchant.stat_1797913614","text":"Your Freezebolt Towers fire an additional Projectile","type":"enchant"},{"id":"enchant.stat_3459808765","text":"Allocates # (Additional)","type":"enchant","option":{"options":[{"id":32345,"value":32345,"text":"Alacrity"},{"id":15027,"value":15027,"text":"Beef"},{"id":56029,"value":56029,"text":"Agility"},{"id":36874,"value":36874,"text":"Wisdom of the Glade"},{"id":32245,"value":32245,"text":"Expertise"},{"id":60180,"value":60180,"text":"Thief\u0027s Craft"},{"id":52714,"value":52714,"text":"Prowess"},{"id":34601,"value":34601,"text":"Proficiency"},{"id":50197,"value":50197,"text":"Ancestral Knowledge"},{"id":5456,"value":5456,"text":"Might"},{"id":30160,"value":30160,"text":"Fending"},{"id":18025,"value":18025,"text":"Hard Knocks"},{"id":10153,"value":10153,"text":"Physique"},{"id":23690,"value":23690,"text":"Arcane Vision"},{"id":10542,"value":10542,"text":"Diamond Skin"},{"id":37078,"value":37078,"text":"Path of the Savant"},{"id":12702,"value":12702,"text":"Path of the Warrior"},{"id":19506,"value":19506,"text":"Path of the Hunter"},{"id":38516,"value":38516,"text":"Righteous Decree"},{"id":63150,"value":63150,"text":"Ironwood"},{"id":16243,"value":16243,"text":"Fusillade"},{"id":2715,"value":2715,"text":"Quickstep"},{"id":52230,"value":52230,"text":"Weathered Hunter"},{"id":21435,"value":21435,"text":"Cloth and Chain"},{"id":31033,"value":31033,"text":"Solidity"},{"id":65224,"value":65224,"text":"Aspect of the Eagle"},{"id":24256,"value":24256,"text":"Dynamo"},{"id":21973,"value":21973,"text":"Decay Ward"},{"id":45067,"value":45067,"text":"Thrill Seeker"},{"id":38246,"value":38246,"text":"Aspect of the Panther"},{"id":1382,"value":1382,"text":"Spirit Void"},{"id":529,"value":529,"text":"Poisonous Fangs"},{"id":46965,"value":46965,"text":"Saboteur"},{"id":47484,"value":47484,"text":"Depth Perception"},{"id":42686,"value":42686,"text":"Elemental Focus"},{"id":27929,"value":27929,"text":"Deep Wisdom"},{"id":27301,"value":27301,"text":"Martial Experience"},{"id":60002,"value":60002,"text":"Fury Bolts"},{"id":5289,"value":5289,"text":"Battle Rouse"},{"id":27190,"value":27190,"text":"Hasty Reconstruction"},{"id":20832,"value":20832,"text":"Sanctuary"},{"id":8135,"value":8135,"text":"Practical Application"},{"id":31257,"value":31257,"text":"Words of Glory"},{"id":10016,"value":10016,"text":"Executioner"},{"id":42804,"value":42804,"text":"Mind Drinker"},{"id":15344,"value":15344,"text":"Freedom of Movement"},{"id":10835,"value":10835,"text":"Dreamer"},{"id":44788,"value":44788,"text":"Aligned Spirits"},{"id":2550,"value":2550,"text":"Arsonist"},{"id":7085,"value":7085,"text":"Weapon Artistry"},{"id":2959,"value":2959,"text":"Unpredictable Offensive"},{"id":18174,"value":18174,"text":"Mystic Bulwark"},{"id":53757,"value":53757,"text":"Shamanistic Fury"},{"id":24362,"value":24362,"text":"Deep Thoughts"},{"id":10115,"value":10115,"text":"Prodigal Perfection"},{"id":19144,"value":19144,"text":"Sentinel"},{"id":42720,"value":42720,"text":"Heavy Draw"},{"id":54791,"value":54791,"text":"Claws of the Magpie"},{"id":60031,"value":60031,"text":"Harvester of Foes"},{"id":26023,"value":26023,"text":"Splitting Strikes"},{"id":17608,"value":17608,"text":"Silent Steps"},{"id":29861,"value":29861,"text":"Explosive Runes"},{"id":36859,"value":36859,"text":"Steelwood Stance"},{"id":44102,"value":44102,"text":"Efficient Explosives"},{"id":63933,"value":63933,"text":"Totemic Zeal"},{"id":40645,"value":40645,"text":"Bone Breaker"},{"id":11784,"value":11784,"text":"Gemini"},{"id":59556,"value":59556,"text":"Expeditious Munitions"},{"id":33082,"value":33082,"text":"Razor\u0027s Edge"},{"id":56359,"value":56359,"text":"Red Storm"},{"id":59866,"value":59866,"text":"Honed Edge"},{"id":35436,"value":35436,"text":"Kinetic Impacts"},{"id":41476,"value":41476,"text":"Elder Power"},{"id":45608,"value":45608,"text":"Successive Detonations"},{"id":33582,"value":33582,"text":"Forceful Skewering"},{"id":23038,"value":23038,"text":"Slaughter"},{"id":60619,"value":60619,"text":"Galvanic Hammer"},{"id":5430,"value":5430,"text":"Magmatic Strikes"},{"id":16236,"value":16236,"text":"Toxic Strikes"},{"id":39657,"value":39657,"text":"Pain Forger"},{"id":36915,"value":36915,"text":"Sacrifice"},{"id":51212,"value":51212,"text":"Entropy"},{"id":61982,"value":61982,"text":"Grave Intentions"},{"id":6233,"value":6233,"text":"Blast Waves"},{"id":51881,"value":51881,"text":"Master Fletcher"},{"id":65093,"value":65093,"text":"Bladedancer"},{"id":37504,"value":37504,"text":"Claws of the Pride"},{"id":64077,"value":64077,"text":"Ophidian Aim"},{"id":63635,"value":63635,"text":"Primal Manifestation"},{"id":5126,"value":5126,"text":"Spinecruncher"},{"id":51559,"value":51559,"text":"Smashing Strikes"},{"id":63921,"value":63921,"text":"Utmost Swiftness"},{"id":47743,"value":47743,"text":"Farsight"},{"id":42917,"value":42917,"text":"Whirling Barrier"},{"id":59605,"value":59605,"text":"Unstable Munitions"},{"id":1405,"value":1405,"text":"From the Shadows"},{"id":26096,"value":26096,"text":"Hatchet Master"},{"id":55380,"value":55380,"text":"Clever Construction"},{"id":49772,"value":49772,"text":"Utmost Might"},{"id":22972,"value":22972,"text":"Wandslinger"},{"id":49969,"value":49969,"text":"Bludgeon Blitz"},{"id":17171,"value":17171,"text":"Flash Freeze"},{"id":36490,"value":36490,"text":"Flaying"},{"id":35685,"value":35685,"text":"Fearsome Force"},{"id":15046,"value":15046,"text":"Redemption"},{"id":55114,"value":55114,"text":"Utmost Intellect"},{"id":7918,"value":7918,"text":"Enigmatic Defence"},{"id":14606,"value":14606,"text":"Butchery"},{"id":33435,"value":33435,"text":"Holy Dominion"},{"id":26557,"value":26557,"text":"Static Blows"},{"id":9567,"value":9567,"text":"Light Eater"},{"id":63976,"value":63976,"text":"Shaper"},{"id":53493,"value":53493,"text":"Annihilation"},{"id":45317,"value":45317,"text":"Ash, Frost and Storm"},{"id":44207,"value":44207,"text":"Testudo"},{"id":30225,"value":30225,"text":"Lightning Walker"},{"id":9788,"value":9788,"text":"Nimbleness"},{"id":31508,"value":31508,"text":"Aspect of the Lynx"},{"id":53042,"value":53042,"text":"Exceptional Performance"},{"id":4940,"value":4940,"text":"Cleaving"},{"id":42795,"value":42795,"text":"Arcane Focus"},{"id":21413,"value":21413,"text":"Combat Stamina"},{"id":33903,"value":33903,"text":"Will of Blades"},{"id":44347,"value":44347,"text":"Divine Fury"},{"id":65502,"value":65502,"text":"Heartseeker"},{"id":6770,"value":6770,"text":"Arcane Guarding"},{"id":44103,"value":44103,"text":"Reflexes"},{"id":13164,"value":13164,"text":"Divine Judgement"},{"id":35894,"value":35894,"text":"Trickery"},{"id":49538,"value":49538,"text":"Defiance"},{"id":33545,"value":33545,"text":"Harrier"},{"id":6,"value":6,"text":"Twin Terrors"},{"id":65273,"value":65273,"text":"Enigmatic Reach"},{"id":42649,"value":42649,"text":"Snowforged"},{"id":15085,"value":15085,"text":"Ambidexterity"},{"id":24383,"value":24383,"text":"Warrior\u0027s Blood"},{"id":6967,"value":6967,"text":"Command of the Elements"},{"id":54694,"value":54694,"text":"Light of Divinity"},{"id":49621,"value":49621,"text":"Acuity"},{"id":54142,"value":54142,"text":"Finesse"},{"id":9432,"value":9432,"text":"Mental Rapidity"},{"id":14813,"value":14813,"text":"Revelry"},{"id":861,"value":861,"text":"Aggressive Bastion"},{"id":26866,"value":26866,"text":"Sanctity"},{"id":65053,"value":65053,"text":"Essence Sap"},{"id":49416,"value":49416,"text":"Adamant"},{"id":24050,"value":24050,"text":"Coldhearted Calculation"},{"id":11420,"value":11420,"text":"Arcanist\u0027s Dominion"},{"id":2225,"value":2225,"text":"Eagle Eye"},{"id":32455,"value":32455,"text":"Storm Weaver"},{"id":12809,"value":12809,"text":"Berserking"},{"id":1006,"value":1006,"text":"Potency of Will"},{"id":5823,"value":5823,"text":"Coordination"},{"id":18703,"value":18703,"text":"Graceful Assault"},{"id":20835,"value":20835,"text":"Brinkmanship"},{"id":3309,"value":3309,"text":"Fleetfoot"},{"id":15842,"value":15842,"text":"Precise Interception"},{"id":15711,"value":15711,"text":"Blast Radius"},{"id":34666,"value":34666,"text":"Destroyer"},{"id":14665,"value":14665,"text":"Divine Wrath"},{"id":30471,"value":30471,"text":"True Strike"},{"id":49318,"value":49318,"text":"Wrecking Ball"},{"id":32059,"value":32059,"text":"Titanic Impacts"},{"id":65308,"value":65308,"text":"Deflection"},{"id":12795,"value":12795,"text":"Versatility"},{"id":33287,"value":33287,"text":"Juggernaut"},{"id":25456,"value":25456,"text":"Dervish"},{"id":35663,"value":35663,"text":"Strong Arm"},{"id":60737,"value":60737,"text":"Sleight of Hand"},{"id":50858,"value":50858,"text":"Battle Cry"},{"id":61308,"value":61308,"text":"Amplify"},{"id":570,"value":570,"text":"Dazzling Strikes"},{"id":24324,"value":24324,"text":"Explosive Impact"},{"id":34661,"value":34661,"text":"Fire Walker"},{"id":54268,"value":54268,"text":"Blade Barrier"},{"id":44824,"value":44824,"text":"Dark Arts"},{"id":18865,"value":18865,"text":"Melding"},{"id":47306,"value":47306,"text":"Throatseeker"},{"id":44955,"value":44955,"text":"Frost Walker"},{"id":13922,"value":13922,"text":"Steadfast"},{"id":39743,"value":39743,"text":"Mysticism"},{"id":50338,"value":50338,"text":"Ballistic Mastery"},{"id":53802,"value":53802,"text":"Essence Extraction"},{"id":49254,"value":49254,"text":"Retribution"},{"id":8001,"value":8001,"text":"Lethal Assault"},{"id":32176,"value":32176,"text":"Soul Thief"},{"id":27137,"value":27137,"text":"Sanctum of Thought"},{"id":57900,"value":57900,"text":"Command of Steel"},{"id":6237,"value":6237,"text":"Precision"},{"id":49379,"value":49379,"text":"Hired Killer"},{"id":12878,"value":12878,"text":"Retaliation"},{"id":19103,"value":19103,"text":"Righteous Army"},{"id":8458,"value":8458,"text":"Longshot"},{"id":24721,"value":24721,"text":"Ribcage Crusher"},{"id":9015,"value":9015,"text":"Dire Torment"},{"id":27308,"value":27308,"text":"Gravepact"},{"id":6615,"value":6615,"text":"Arcing Blows"},{"id":64882,"value":64882,"text":"Disciple of the Unyielding"},{"id":52031,"value":52031,"text":"Disintegration"},{"id":25367,"value":25367,"text":"Blade Master"},{"id":57199,"value":57199,"text":"Fangs of Frost"},{"id":39761,"value":39761,"text":"Counterweight"},{"id":21602,"value":21602,"text":"Destructive Apparatus"},{"id":9535,"value":9535,"text":"Hunter\u0027s Gambit"},{"id":28503,"value":28503,"text":"Soul Raker"},{"id":59766,"value":59766,"text":"Dirty Techniques"},{"id":8920,"value":8920,"text":"Backstabbing"},{"id":63207,"value":63207,"text":"Tempest Blast"},{"id":43385,"value":43385,"text":"Winter Spirit"},{"id":21297,"value":21297,"text":"High Explosives"},{"id":29049,"value":29049,"text":"Holy Fire"},{"id":44562,"value":44562,"text":"Shaman\u0027s Dominion"},{"id":18707,"value":18707,"text":"Method to the Madness"},{"id":57839,"value":57839,"text":"Blade of Cunning"},{"id":38849,"value":38849,"text":"Searing Heat"},{"id":33777,"value":33777,"text":"Devastating Devices"},{"id":4481,"value":4481,"text":"Forces of Nature"},{"id":10511,"value":10511,"text":"Singular Focus"},{"id":26620,"value":26620,"text":"Corruption"},{"id":16703,"value":16703,"text":"Skull Cracking"},{"id":32227,"value":32227,"text":"Adder\u0027s Touch"},{"id":31359,"value":31359,"text":"Fatal Toxins"},{"id":63727,"value":63727,"text":"Gladiator\u0027s Perseverance"},{"id":41119,"value":41119,"text":"Lethality"},{"id":52090,"value":52090,"text":"Feller of Foes"},{"id":62094,"value":62094,"text":"Lucidity"},{"id":55772,"value":55772,"text":"Blacksmith\u0027s Clout"},{"id":49459,"value":49459,"text":"King of the Hill"},{"id":26294,"value":26294,"text":"Bloodletting"},{"id":7136,"value":7136,"text":"Master Sapper"},{"id":63251,"value":63251,"text":"Charging Offensive"},{"id":22702,"value":22702,"text":"Serpent Stance"},{"id":36281,"value":36281,"text":"Primeval Force"},{"id":19897,"value":19897,"text":"Death Attunement"},{"id":48823,"value":48823,"text":"Deadly Draw"},{"id":15614,"value":15614,"text":"Claws of the Hawk"},{"id":61689,"value":61689,"text":"Blast Cascade"},{"id":9194,"value":9194,"text":"Swift Skewering"},{"id":27611,"value":27611,"text":"Lord of the Dead"},{"id":64395,"value":64395,"text":"Blunt Trauma"},{"id":21389,"value":21389,"text":"Runesmith"},{"id":39986,"value":39986,"text":"Hex Master"},{"id":9261,"value":9261,"text":"Disciple of the Forbidden"},{"id":36687,"value":36687,"text":"Avatar of the Hunt"},{"id":63944,"value":63944,"text":"Prism Weave"},{"id":25409,"value":25409,"text":"Indomitable Army"},{"id":1568,"value":1568,"text":"Fatal Blade"},{"id":30439,"value":30439,"text":"Lava Lash"},{"id":53013,"value":53013,"text":"Atrophy"},{"id":29381,"value":29381,"text":"Ravenous Horde"},{"id":43689,"value":43689,"text":"Spiritual Command"},{"id":7263,"value":7263,"text":"Swift Venoms"},{"id":38922,"value":38922,"text":"Stun Mastery"},{"id":56094,"value":56094,"text":"One with the River"},{"id":7688,"value":7688,"text":"Enduring Bond"},{"id":59151,"value":59151,"text":"Brutal Blade"},{"id":56648,"value":56648,"text":"Claws of the Falcon"},{"id":9864,"value":9864,"text":"Growth and Decay"},{"id":58921,"value":58921,"text":"Disciple of the Slaughter"},{"id":56276,"value":56276,"text":"Nightstalker"},{"id":9055,"value":9055,"text":"Volatile Mines"},{"id":48298,"value":48298,"text":"Insightfulness"},{"id":21634,"value":21634,"text":"Arcane Chemistry"},{"id":53759,"value":53759,"text":"Cleansed Thoughts"},{"id":12143,"value":12143,"text":"Influence"},{"id":56716,"value":56716,"text":"Heart of Thunder"},{"id":36949,"value":36949,"text":"Devotion"},{"id":58218,"value":58218,"text":"Purity of Flesh"},{"id":61981,"value":61981,"text":"Doom Cast"},{"id":21330,"value":21330,"text":"Quick Recovery"},{"id":40743,"value":40743,"text":"Crystal Skin"},{"id":48438,"value":48438,"text":"Bravery"},{"id":11924,"value":11924,"text":"Breath of Flames"},{"id":48614,"value":48614,"text":"Fervour"},{"id":40849,"value":40849,"text":"Transcendence"},{"id":42041,"value":42041,"text":"Profane Chemistry"},{"id":60501,"value":60501,"text":"Heart of Flame"},{"id":18769,"value":18769,"text":"Written in Blood"},{"id":41137,"value":41137,"text":"Aqueous Accelerant"},{"id":21958,"value":21958,"text":"Cruel Preparation"},{"id":58831,"value":58831,"text":"Disemboweling"},{"id":51748,"value":51748,"text":"Cursed Concoction"},{"id":52157,"value":52157,"text":"Soul Siphon"},{"id":46842,"value":46842,"text":"Arcane Potency"},{"id":11645,"value":11645,"text":"Breath of Lightning"},{"id":4833,"value":4833,"text":"Vigour"},{"id":47065,"value":47065,"text":"Master of Force"},{"id":22356,"value":22356,"text":"Hematophagy"},{"id":51440,"value":51440,"text":"Druidic Rite"},{"id":27203,"value":27203,"text":"Heart and Soul"},{"id":6289,"value":6289,"text":"Bloodless"},{"id":58449,"value":58449,"text":"Born to Fight"},{"id":65210,"value":65210,"text":"Heart of Oak"},{"id":33718,"value":33718,"text":"Champion of the Cause"},{"id":24133,"value":24133,"text":"Survivalist"},{"id":34173,"value":34173,"text":"Overcharge"},{"id":47471,"value":47471,"text":"Overcharged"},{"id":34009,"value":34009,"text":"Master of the Arena"},{"id":62596,"value":62596,"text":"Mystic Talents"},{"id":58198,"value":58198,"text":"Fingers of Frost"},{"id":30693,"value":30693,"text":"Divine Fervour"},{"id":19858,"value":19858,"text":"Herbalism"},{"id":25058,"value":25058,"text":"Blood Siphon"},{"id":7555,"value":7555,"text":"Crackling Speed"},{"id":65097,"value":65097,"text":"Leadership"},{"id":53573,"value":53573,"text":"Arcane Expanse"},{"id":11730,"value":11730,"text":"Endurance"},{"id":35958,"value":35958,"text":"Faith and Steel"},{"id":38706,"value":38706,"text":"Way of the Warrior"},{"id":41307,"value":41307,"text":"Deadly Inclinations"},{"id":56207,"value":56207,"text":"Hardened Scars"},{"id":1340,"value":1340,"text":"Rampart"},{"id":54629,"value":54629,"text":"Inexorable"},{"id":37326,"value":37326,"text":"Stamina"},{"id":51108,"value":51108,"text":"Arcane Capacitor"},{"id":65108,"value":65108,"text":"Tireless"},{"id":46904,"value":46904,"text":"Arcane Swiftness"},{"id":44988,"value":44988,"text":"Stabbing Thirst"},{"id":23066,"value":23066,"text":"Savagery"},{"id":54776,"value":54776,"text":"Mana Flows"},{"id":25178,"value":25178,"text":"Primal Spirit"},{"id":48807,"value":48807,"text":"Art of the Gladiator"},{"id":20528,"value":20528,"text":"Instability"},{"id":27163,"value":27163,"text":"Arcane Will"},{"id":3452,"value":3452,"text":"Foresight"},{"id":21460,"value":21460,"text":"Breath of Rime"},{"id":63422,"value":63422,"text":"Lust for Carnage"},{"id":42443,"value":42443,"text":"Frenetic"},{"id":54713,"value":54713,"text":"Force Shaper"},{"id":21228,"value":21228,"text":"Piercing Shots"},{"id":19069,"value":19069,"text":"Thick Skin"},{"id":37647,"value":37647,"text":"Dismembering"},{"id":25411,"value":25411,"text":"Infused"},{"id":8833,"value":8833,"text":"Heart of Ice"},{"id":33725,"value":33725,"text":"Swagger"},{"id":27788,"value":27788,"text":"Blood Drinker"},{"id":39530,"value":39530,"text":"Vitality Void"},{"id":46408,"value":46408,"text":"Fangs of the Viper"},{"id":15852,"value":15852,"text":"Ethereal Feast"},{"id":41989,"value":41989,"text":"Resourcefulness"},{"id":62577,"value":62577,"text":"Essence Surge"},{"id":34506,"value":34506,"text":"Golem Commander"},{"id":41472,"value":41472,"text":"Discipline and Training"},{"id":28754,"value":28754,"text":"Assassination"},{"id":61198,"value":61198,"text":"Heart of the Warrior"},{"id":48698,"value":48698,"text":"Void Barrier"},{"id":15400,"value":15400,"text":"Skittering Runes"},{"id":53118,"value":53118,"text":"Barbarism"},{"id":5624,"value":5624,"text":"Crusader"},{"id":48556,"value":48556,"text":"Thunderous Salvos"},{"id":57006,"value":57006,"text":"Vengeant Cascade"},{"id":50029,"value":50029,"text":"Unnatural Calm"},{"id":1325,"value":1325,"text":"Golem\u0027s Blood"},{"id":16246,"value":16246,"text":"Tranquility"},{"id":53114,"value":53114,"text":"Revenge of the Hunted"},{"id":64217,"value":64217,"text":"Aspect of Stone"},{"id":52282,"value":52282,"text":"Tenacity"},{"id":32932,"value":32932,"text":"Sovereignty"},{"id":27119,"value":27119,"text":"Tribal Fury"},{"id":22535,"value":22535,"text":"Whispers of Doom"},{"id":4177,"value":4177,"text":"Spiritual Aid"},{"id":6799,"value":6799,"text":"Charisma"},{"id":55485,"value":55485,"text":"Constitution"},{"id":42009,"value":42009,"text":"Soul of Steel"}]}},{"id":"enchant.stat_4048897123","text":"Your Scout Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_1520798835","text":"Players deal #% increased Damage for each Poison on them","type":"enchant"},{"id":"enchant.stat_169405468","text":"#% increased Flameblast Damage","type":"enchant"},{"id":"enchant.stat_815390778","text":"#% increased Molten Shell Damage","type":"enchant"},{"id":"enchant.stat_3728052911","text":"Area contains # additional packs of Monsters that deal Chaos Damage","type":"enchant"},{"id":"enchant.stat_1984484581","text":"Players and Monsters take #% increased Chaos Damage","type":"enchant"},{"id":"enchant.stat_2035168499","text":"#% increased Freeze Mine Area of Effect","type":"enchant"},{"id":"enchant.stat_2202161594","text":"Slaying Enemies close together has a #% chance to attract monsters from Beyond","type":"enchant"},{"id":"enchant.stat_3496292484","text":"#% increased Puncture Damage","type":"enchant"},{"id":"enchant.stat_453789911","text":"Players have #% increased Movement Speed for each Poison on them","type":"enchant"},{"id":"enchant.stat_4040760803","text":"Summoned Sentinels of Dominance deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_1727791743","text":"Delirium Reward Type: #","type":"enchant"},{"id":"enchant.stat_3094365680","text":"Area contains # additional packs of Poisonous Monsters","type":"enchant"},{"id":"enchant.stat_1714706956","text":"#% increased Magic Pack Size","type":"enchant"},{"id":"enchant.stat_2413715772","text":"#% increased Bladefall Area of Effect","type":"enchant"},{"id":"enchant.stat_2400448724","text":"Players and Monsters take #% increased Lightning Damage","type":"enchant"},{"id":"enchant.stat_3541635261","text":"Players and Monsters take #% increased Physical Damage","type":"enchant"},{"id":"enchant.delirium_reward_gems","text":"Delirium Reward Type: Gems (\u00D7#)","type":"enchant"},{"id":"enchant.stat_2661979205","text":"#% increased Dominating Blow Damage","type":"enchant"},{"id":"enchant.stat_1582085030","text":"Your Seismic Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_1008350423","text":"Your Fireball Towers fire an additional Projectile","type":"enchant"},{"id":"enchant.stat_2681419531","text":"Strongboxes in Area are Corrupted","type":"enchant"},{"id":"enchant.stat_249139784","text":"Area contains # additional packs of Monsters that Convert when Killed","type":"enchant"},{"id":"enchant.stat_3522828354","text":"Strongboxes in Area are at least Magic Rarity","type":"enchant"},{"id":"enchant.stat_3059368202","text":"Area contains # additional packs of Monsters that Heal","type":"enchant"},{"id":"enchant.stat_1525452114","text":"Delirium Reward Type: #","type":"enchant"},{"id":"enchant.stat_2541263647","text":"Your Freezebolt Tower deal full damage to Cold Enemies","type":"enchant"},{"id":"enchant.stat_2020183023","text":"#% chance to create a Charged Slam","type":"enchant"},{"id":"enchant.stat_1274634881","text":"Area contains an extra Resonating Shrine","type":"enchant"},{"id":"enchant.stat_1906144841","text":"#% chance to Trigger Word of War on Kill","type":"enchant"},{"id":"enchant.stat_2693668441","text":"Delirium Reward Type: #","type":"enchant"},{"id":"enchant.stat_726779274","text":"Your Smothering Towers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_3137138073","text":"Player\u0027s Life and Mana Recovery from Flasks are instant","type":"enchant"},{"id":"enchant.stat_3897451709","text":"Area contains an additional Legion Encounter","type":"enchant"},{"id":"enchant.delirium_reward_divinationcards","text":"Delirium Reward Type: Divination Cards (\u00D7#)","type":"enchant"},{"id":"enchant.stat_3989543665","text":"Area contains # additional packs of Monsters that deal Physical Damage","type":"enchant"},{"id":"enchant.stat_1539846779","text":"Detonate Dead has a #% chance to detonate an additional corpse","type":"enchant"},{"id":"enchant.stat_1508220097","text":"Unique Boss drops additional Currency Shards","type":"enchant"},{"id":"enchant.stat_906446422","text":"Harbingers drop additional Currency Shards","type":"enchant"},{"id":"enchant.stat_397012377","text":"Unique Boss is accompanied by a mysterious Harbinger","type":"enchant"},{"id":"enchant.stat_3434272371","text":"Your Freezebolt Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_573352991","text":"Your Stone Gaze Towers have #% increased Duration","type":"enchant"},{"id":"enchant.stat_3044601282","text":"Your Imbuing Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_1992047981","text":"Area contains an extra Gloom Shrine","type":"enchant"},{"id":"enchant.stat_2166020726","text":"Your Empowering Towers also grant #% increased Damage","type":"enchant"},{"id":"enchant.stat_244125450","text":"#% Chance for Puncture to Maim on hit","type":"enchant"},{"id":"enchant.stat_2244550200","text":"Delirium Reward Type: #","type":"enchant"},{"id":"enchant.stat_57434274","text":"#% increased Experience gain (Maps)","type":"enchant"},{"id":"enchant.stat_4089551985","text":"Your Temporal Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_4173465567","text":"Your Arc Towers repeats # additional Times","type":"enchant"},{"id":"enchant.stat_2329255938","text":"Nemesis Monsters drop # additional Currency Item","type":"enchant"},{"id":"enchant.stat_1854137416","text":"Strongbox Monsters have #% increased Item Quantity","type":"enchant"},{"id":"enchant.stat_3123392503","text":"Strongbox Monsters are Enraged","type":"enchant"},{"id":"enchant.stat_691673624","text":"Immortal Call has #% increased Buff Duration per Endurance Charge removed","type":"enchant"},{"id":"enchant.stat_2180286756","text":"Area can contain Breaches","type":"enchant"},{"id":"enchant.stat_2410280305","text":"Your Fireball Towers have #% increased Cast Speed","type":"enchant"},{"id":"enchant.stat_2679945072","text":"#% increased Desecrate Duration","type":"enchant"},{"id":"enchant.stat_117905700","text":"Your Fireball Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_3804575865","text":"#% increased Arctic Breath Duration","type":"enchant"},{"id":"enchant.stat_3747734818","text":"Area contains hunted traitors","type":"enchant"},{"id":"enchant.stat_75100665","text":"Found Items drop Identified in Identified Maps","type":"enchant"},{"id":"enchant.stat_2130041903","text":"#% increased Pack Size in Unidentified Maps","type":"enchant"},{"id":"enchant.stat_339673147","text":"Storm Burst has a 15% chance to create an additional Orb","type":"enchant"},{"id":"enchant.stat_3224819794","text":"Area contains an additional Breach","type":"enchant"},{"id":"enchant.stat_3976295500","text":"#% increased Icicle Mine Throwing Speed","type":"enchant"},{"id":"enchant.stat_2005440071","text":"Pyroclast Mine has #% increased Throwing Speed","type":"enchant"},{"id":"enchant.stat_2505115650","text":"Chaos Golems deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_122106412","text":"Arcane Cloak Spends an additional #% of current Mana","type":"enchant"},{"id":"enchant.stat_1959522666","text":"All Towers in range of your Empowering Towers have #% chance to deal Double Damage","type":"enchant"},{"id":"enchant.stat_1468737867","text":"Area contains an extra Shrine","type":"enchant"},{"id":"enchant.stat_3416709884","text":"Players gain an additional Vaal Soul on Kill","type":"enchant"},{"id":"enchant.stat_1357120250","text":"Your Chilling Towers freeze enemies for # seconds while they are affected by chilling beams","type":"enchant"},{"id":"enchant.stat_98212089","text":"#% increased Quantity of Items found in Unidentified Maps","type":"enchant"},{"id":"enchant.stat_1988467615","text":"#% chance to Trigger Commandment of Thunder on Kill","type":"enchant"},{"id":"enchant.stat_728267040","text":"Found Items have a #% chance to drop Corrupted in Area","type":"enchant"},{"id":"enchant.stat_804187877","text":"Unique Monsters drop Corrupted Items","type":"enchant"},{"id":"enchant.stat_634375806","text":"20% chance to Summon an additional Skeleton Warrior with Summon Skeleton","type":"enchant"},{"id":"enchant.stat_889454763","text":"Your Chilling Towers have #% increased Duration","type":"enchant"},{"id":"enchant.stat_884220218","text":"#% chance to Avoid interruption from Stuns while Casting Storm Burst","type":"enchant"},{"id":"enchant.stat_2649372092","text":"Area has #% chance to contain Gifts of the Sacrificed per Sacrifice Fragment used","type":"enchant"},{"id":"enchant.stat_3384161880","text":"Enemies inside Glacial Cage take #% increased Damage","type":"enchant"},{"id":"enchant.stat_3481854423","text":"Unique Boss is accompanied by Bodyguards","type":"enchant"},{"id":"enchant.stat_2747603858","text":"Unique Bosses of Corrupted Maps drop an additional Vaal Item","type":"enchant"},{"id":"enchant.stat_504023787","text":"Area contains an additional Tormented Betrayer","type":"enchant"},{"id":"enchant.stat_977063976","text":"Players\u0027 Vaal Skills do not apply Soul Gain Prevention","type":"enchant"},{"id":"enchant.stat_2410117075","text":"Your Seismic Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_3564826949","text":"Areas can contain Abysses","type":"enchant"},{"id":"enchant.stat_1843683045","text":"Your Sentinel Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_2685482716","text":"Your Fireball Towers Projectiles fire in a circle","type":"enchant"},{"id":"enchant.stat_1480568810","text":"The First 3 Possessed Monsters have a #% chance to drop an additional Gilded Scarab","type":"enchant"},{"id":"enchant.stat_1261917923","text":"Your Summoning Towers summon # additional Minions","type":"enchant"},{"id":"enchant.stat_639766324","text":"Your Imbuing Towers also grant #% increased Damage","type":"enchant"},{"id":"enchant.stat_3340686967","text":"The First 3 Possessed Monsters have a #% chance to drop an additional Map","type":"enchant"},{"id":"enchant.stat_1697080607","text":"#% increased Earthquake Damage","type":"enchant"},{"id":"enchant.stat_1789548201","text":"Your Lightning Storm Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_3930497977","text":"#% increased Ice Crash Area of Effect","type":"enchant"},{"id":"enchant.stat_3640837971","text":"Minions summoned by Your Sentinel Towers have #% increased Life","type":"enchant"},{"id":"enchant.stat_4157143640","text":"Animated Guardians deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_2731937118","text":"Your Shock Nova Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_2911217910","text":"Your Stone Gaze Cage Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_4039396512","text":"Your Flamethrower Towers have #% increased Cast Speed","type":"enchant"},{"id":"enchant.stat_1669553893","text":"Area contains # additional Clusters of Mysterious Barrels","type":"enchant"},{"id":"enchant.stat_4019701925","text":"Area contains # additional Clusters of Mysterious Barrels","type":"enchant"},{"id":"enchant.stat_373209496","text":"Area contains an additional Tormented Heretic","type":"enchant"},{"id":"enchant.stat_1070816711","text":"Area contains an additional Abyss","type":"enchant"},{"id":"enchant.stat_3798342608","text":"Area contains # additional Clusters of Mysterious Barrels","type":"enchant"},{"id":"enchant.stat_1561141582","text":"#% increased Spectral Shield Throw Projectile Speed","type":"enchant"},{"id":"enchant.stat_1994562755","text":"Area contains Metamorph Monsters","type":"enchant"},{"id":"enchant.stat_118036057","text":"Your Smothering Towers also grant #% increased Movement Speed","type":"enchant"},{"id":"enchant.stat_1207515735","text":"Area contains # additional Clusters of Mysterious Barrels","type":"enchant"},{"id":"enchant.stat_197351228","text":"Your Lightning Storm Towers have #% increased Impact Delay","type":"enchant"},{"id":"enchant.stat_3564606017","text":"Your Empowering Towers also grant #% increased Cast Speed","type":"enchant"},{"id":"enchant.stat_3901016205","text":"Smite deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2242331554","text":"Your Shock Nova Towers deal full damage to Lightning Enemies","type":"enchant"},{"id":"enchant.stat_1877374369","text":"#% chance to Trigger Commandment of Frost on Kill","type":"enchant"},{"id":"enchant.stat_1378482149","text":"Minions summoned by Your Summoning Towers have #% increased Movement Speed","type":"enchant"},{"id":"enchant.stat_3198887051","text":"Your Temporal Towers also grant you #% reduced action speed","type":"enchant"},{"id":"enchant.stat_3045497140","text":"Items dropped by Corrupted Vaal Monsters have #% chance to be Corrupted","type":"enchant"},{"id":"enchant.stat_4024383498","text":"Your Temporal Towers effects decay #% faster","type":"enchant"},{"id":"enchant.stat_1619284089","text":"Your Stone Gaze Towers have #% increased Cooldown Recovery","type":"enchant"},{"id":"enchant.stat_3006815533","text":"Your Seismic Towers have #% increased Stun Duration","type":"enchant"},{"id":"enchant.stat_3891165938","text":"Your Imbuing Towers also grant #% increased Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_971955285","text":"Minions summoned by Your Scout Towers have #% increased Movement Speed","type":"enchant"},{"id":"enchant.stat_3651039490","text":"Minions summoned by Your Summoning Towers have #% increased Life","type":"enchant"},{"id":"enchant.stat_4006050359","text":"Volatile Dead Consumes up to 1 additional corpse","type":"enchant"},{"id":"enchant.stat_321894708","text":"Stormblast Mine has #% increased Throwing Speed","type":"enchant"},{"id":"enchant.stat_3760667977","text":"Unique Boss drops # additional Unique Item","type":"enchant"},{"id":"enchant.stat_1959158336","text":"Unique Boss has #% increased Life","type":"enchant"},{"id":"enchant.stat_4265846487","text":"This Map\u0027s Quality also applies to Rarity of Items found","type":"enchant"},{"id":"enchant.stat_1282857477","text":"Minions summoned by Your Scout Towers have #% increased Life","type":"enchant"},{"id":"enchant.stat_1076056376","text":"Area has #% chance to contain Gifts of the Red Queen per Mortal Fragment used","type":"enchant"},{"id":"enchant.stat_1971866993","text":"Minions summoned by Your Sentinel Towers have #% increased Movement Speed","type":"enchant"},{"id":"enchant.stat_425606182","text":"Map has #% Quality","type":"enchant"},{"id":"enchant.stat_21144785","text":"Your Shock Nova Towers have #% increased area of effect per repeat","type":"enchant"},{"id":"enchant.stat_3830917556","text":"Your Seismic Towers have #% increased length and range of Cascades","type":"enchant"},{"id":"enchant.stat_279246355","text":"Area is inhabited by an additional Invasion Boss","type":"enchant"},{"id":"enchant.stat_124877078","text":"Unique Boss deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_395808938","text":"Area contains an additional Essence","type":"enchant"},{"id":"enchant.stat_2953109663","text":"#% chance to Dodge Attack Hits if you have finished Channelling Charged Dash Recently","type":"enchant"},{"id":"enchant.stat_1080470148","text":"Area contains # additional Clusters of Mysterious Barrels","type":"enchant"},{"id":"enchant.stat_4143730600","text":"Rogue Exiles drop an additional Jewel","type":"enchant"},{"id":"enchant.stat_1080855680","text":"Rogue Exiles deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_471027242","text":"Rogue Exiles have #% increased Maximum Life","type":"enchant"},{"id":"enchant.stat_1439991839","text":"Monsters Imprisoned by Essences have a #% chance to contain a Remnant of Corruption","type":"enchant"},{"id":"enchant.stat_6032025","text":"Your Arc Towers have # additional chains","type":"enchant"},{"id":"enchant.stat_1317250154","text":"The First 3 Possessed Monsters have a #% chance to drop an additional Polished Scarab","type":"enchant"},{"id":"enchant.stat_1265055278","text":"#% increased Charged Dash Damage","type":"enchant"},{"id":"enchant.stat_3789079511","text":"The First 3 Possessed Monsters have a #% chance to drop an additional Rusted Scarab","type":"enchant"},{"id":"enchant.stat_3208939528","text":"#% increased Shield Charge Damage per Enemy Hit","type":"enchant"},{"id":"enchant.stat_3550168289","text":"Area is inhabited by # additional Rogue Exile","type":"enchant"},{"id":"enchant.stat_2862290356","text":"Area is Alluring","type":"enchant"},{"id":"enchant.stat_1463704577","text":"Area contains an additional Tormented Graverobber","type":"enchant"},{"id":"enchant.stat_307092526","text":"Your Shock Nova Towers repeats # additional Times","type":"enchant"},{"id":"enchant.stat_2563159607","text":"Your Smothering Towers also grant #% increased Damage","type":"enchant"},{"id":"enchant.stat_3352207460","text":"Your Stone Gaze Towers have #% increased Petrification Delay","type":"enchant"},{"id":"enchant.stat_3094610721","text":"Your Seismic Towers have an additional Cascade","type":"enchant"},{"id":"enchant.stat_2833482311","text":"#% increased Bladefall Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_439316158","text":"Your Shock Nova Towers have #% increased effect of Shock","type":"enchant"},{"id":"enchant.stat_3672666316","text":"Plague Bearer deals Damage based on an additional #% of Plague Value","type":"enchant"},{"id":"enchant.stat_3849821286","text":"Your Lightning Storm Towers have #% increased explosion Area of Effect","type":"enchant"},{"id":"enchant.stat_4166834934","text":"#% increased Ancestral Blademaster Totem Damage","type":"enchant"},{"id":"enchant.stat_696413077","text":"An additional Map drops on Completing Area","type":"enchant"},{"id":"enchant.stat_2392278281","text":"The First 3 Possessed Monsters have a #% chance to drop an additional Unique Item","type":"enchant"},{"id":"enchant.stat_2764047332","text":"Your Smothering Towers have #% increased Range","type":"enchant"},{"id":"enchant.delirium_reward_perandus","text":"Delirium Reward Type: Perandus Items (\u00D7#)","type":"enchant"},{"id":"enchant.stat_1139911029","text":"Your Chilling Towers have #% increased effect of Chill","type":"enchant"}]},{"label":"Crafted","entries":[{"id":"crafted.stat_3299347043","text":"# to maximum Life","type":"crafted"},{"id":"crafted.stat_1671376347","text":"#% to Lightning Resistance","type":"crafted"},{"id":"crafted.stat_3372524247","text":"#% to Fire Resistance","type":"crafted"},{"id":"crafted.stat_387439868","text":"#% increased Elemental Damage with Attack Skills","type":"crafted"},{"id":"crafted.stat_4220027924","text":"#% to Cold Resistance","type":"crafted"},{"id":"crafted.stat_2250533757","text":"#% increased Movement Speed","type":"crafted"},{"id":"crafted.stat_4015621042","text":"#% increased Energy Shield (Local)","type":"crafted"},{"id":"crafted.stat_3489782002","text":"# to maximum Energy Shield","type":"crafted"},{"id":"crafted.stat_2915988346","text":"#% to Fire and Cold Resistances","type":"crafted"},{"id":"crafted.stat_1509134228","text":"#% increased Physical Damage","type":"crafted"},{"id":"crafted.stat_4277795662","text":"#% to Cold and Lightning Resistances","type":"crafted"},{"id":"crafted.stat_2901986750","text":"#% to all Elemental Resistances","type":"crafted"},{"id":"crafted.stat_1859333175","text":"Can have up to 3 Crafted Modifiers","type":"crafted"},{"id":"crafted.stat_4052037485","text":"# to maximum Energy Shield (Local)","type":"crafted"},{"id":"crafted.stat_3441501978","text":"#% to Fire and Lightning Resistances","type":"crafted"},{"id":"crafted.stat_2154246560","text":"#% increased Damage","type":"crafted"},{"id":"crafted.stat_2016708976","text":"#% to Quality","type":"crafted"},{"id":"crafted.stat_210067635","text":"#% increased Attack Speed (Local)","type":"crafted"},{"id":"crafted.stat_1940865751","text":"Adds # to # Physical Damage (Local)","type":"crafted"},{"id":"crafted.stat_3032590688","text":"Adds # to # Physical Damage to Attacks","type":"crafted"},{"id":"crafted.stat_1050105434","text":"# to maximum Mana","type":"crafted"},{"id":"crafted.stat_587431675","text":"#% increased Global Critical Strike Chance","type":"crafted"},{"id":"crafted.stat_2482852589","text":"#% increased maximum Energy Shield","type":"crafted"},{"id":"crafted.stat_1062208444","text":"#% increased Armour (Local)","type":"crafted"},{"id":"crafted.stat_4080418644","text":"# to Strength","type":"crafted"},{"id":"crafted.stat_2375316951","text":"#% increased Critical Strike Chance","type":"crafted"},{"id":"crafted.stat_328541901","text":"# to Intelligence","type":"crafted"},{"id":"crafted.stat_3261801346","text":"# to Dexterity","type":"crafted"},{"id":"crafted.stat_3465022881","text":"#% to Lightning and Chaos Resistances","type":"crafted"},{"id":"crafted.stat_378817135","text":"#% to Fire and Chaos Resistances","type":"crafted"},{"id":"crafted.stat_280731498","text":"#% increased Area of Effect","type":"crafted"},{"id":"crafted.stat_3393628375","text":"#% to Cold and Chaos Resistances","type":"crafted"},{"id":"crafted.stat_681332047","text":"#% increased Attack Speed","type":"crafted"},{"id":"crafted.stat_983749596","text":"#% increased maximum Life","type":"crafted"},{"id":"crafted.stat_2748665614","text":"#% increased maximum Mana","type":"crafted"},{"id":"crafted.stat_1754445556","text":"Adds # to # Lightning Damage to Attacks","type":"crafted"},{"id":"crafted.stat_2264295449","text":"# to Melee Strike Range","type":"crafted"},{"id":"crafted.stat_2891184298","text":"#% increased Cast Speed","type":"crafted"},{"id":"crafted.stat_124859000","text":"#% increased Evasion Rating (Local)","type":"crafted"},{"id":"crafted.stat_2063695047","text":"Gain #% of Non-Chaos Damage as extra Chaos Damage","type":"crafted"},{"id":"crafted.stat_3556824919","text":"#% to Global Critical Strike Multiplier","type":"crafted"},{"id":"crafted.stat_2451402625","text":"#% increased Armour and Evasion (Local)","type":"crafted"},{"id":"crafted.stat_2387423236","text":"Adds # to # Cold Damage","type":"crafted"},{"id":"crafted.stat_2231156303","text":"#% increased Lightning Damage","type":"crafted"},{"id":"crafted.stat_1334060246","text":"Adds # to # Lightning Damage","type":"crafted"},{"id":"crafted.stat_3079007202","text":"#% chance to Trigger a Socketed Spell when you Use a Skill","type":"crafted"},{"id":"crafted.stat_4251717817","text":"#% increased Area Damage","type":"crafted"},{"id":"crafted.stat_1782086450","text":"#% faster start of Energy Shield Recharge","type":"crafted"},{"id":"crafted.stat_725880290","text":"#% chance to Impale Enemies on Hit with Attacks","type":"crafted"},{"id":"crafted.stat_4291461939","text":"Regenerate # Mana per second","type":"crafted"},{"id":"crafted.stat_321077055","text":"Adds # to # Fire Damage","type":"crafted"},{"id":"crafted.stat_677564538","text":"Non-Channelling Skills have # to Total Mana Cost","type":"crafted"},{"id":"crafted.stat_1999113824","text":"#% increased Evasion and Energy Shield (Local)","type":"crafted"},{"id":"crafted.stat_3321629045","text":"#% increased Armour and Energy Shield (Local)","type":"crafted"},{"id":"crafted.stat_737908626","text":"#% increased Critical Strike Chance for Spells","type":"crafted"},{"id":"crafted.stat_1002362373","text":"#% increased Melee Damage","type":"crafted"},{"id":"crafted.stat_3962278098","text":"#% increased Fire Damage","type":"crafted"},{"id":"crafted.stat_3023957681","text":"#% chance to gain Onslaught for 4 seconds on Kill","type":"crafted"},{"id":"crafted.stat_1519615863","text":"#% chance to cause Bleeding on Hit","type":"crafted"},{"id":"crafted.stat_2421446548","text":"Channelling Skills have # to Total Mana Cost","type":"crafted"},{"id":"crafted.stat_1589917703","text":"Minions deal #% increased Damage","type":"crafted"},{"id":"crafted.stat_809229260","text":"# to Armour","type":"crafted"},{"id":"crafted.stat_2551600084","text":"# to Level of Socketed AoE Gems","type":"crafted"},{"id":"crafted.stat_4064396395","text":"Attacks with this Weapon Penetrate #% Elemental Resistances","type":"crafted"},{"id":"crafted.stat_3291658075","text":"#% increased Cold Damage","type":"crafted"},{"id":"crafted.stat_2301191210","text":"#% chance to Blind Enemies on hit","type":"crafted"},{"id":"crafted.stat_538848803","text":"# to Strength and Dexterity","type":"crafted"},{"id":"crafted.stat_1535626285","text":"# to Strength and Intelligence","type":"crafted"},{"id":"crafted.stat_2831165374","text":"Adds # to # Lightning Damage to Spells","type":"crafted"},{"id":"crafted.stat_3483999943","text":"#% chance to Avoid being Chilled","type":"crafted"},{"id":"crafted.stat_3885634897","text":"#% chance to Poison on Hit (Local)","type":"crafted"},{"id":"crafted.stat_1573130764","text":"Adds # to # Fire Damage to Attacks","type":"crafted"},{"id":"crafted.stat_1172810729","text":"#% chance to deal Double Damage","type":"crafted"},{"id":"crafted.stat_2144192055","text":"# to Evasion Rating","type":"crafted"},{"id":"crafted.stat_3736589033","text":"# to Total Mana Cost of Skills","type":"crafted"},{"id":"crafted.stat_829382474","text":"# to Level of Socketed Melee Gems","type":"crafted"},{"id":"crafted.stat_2300185227","text":"# to Dexterity and Intelligence","type":"crafted"},{"id":"crafted.stat_1839076647","text":"#% increased Projectile Damage","type":"crafted"},{"id":"crafted.stat_310246444","text":"#% increased Damage while Leeching","type":"crafted"},{"id":"crafted.stat_1652515349","text":"# to maximum number of Raised Zombies","type":"crafted"},{"id":"crafted.stat_2428829184","text":"# to maximum number of Skeletons","type":"crafted"},{"id":"crafted.stat_1379411836","text":"# to all Attributes","type":"crafted"},{"id":"crafted.stat_3523867985","text":"#% increased Armour, Evasion and Energy Shield (Local)","type":"crafted"},{"id":"crafted.stat_472520716","text":"#% of Damage taken gained as Mana over 4 seconds when Hit","type":"crafted"},{"id":"crafted.stat_658456881","text":"# to Minimum Frenzy Charges","type":"crafted"},{"id":"crafted.stat_114734841","text":"Flasks applied to you have #% increased Effect","type":"crafted"},{"id":"crafted.stat_536929014","text":"#% to Critical Strike Multiplier if you\u0027ve Shattered an Enemy Recently","type":"crafted"},{"id":"crafted.stat_3325883026","text":"Regenerate # Life per second","type":"crafted"},{"id":"crafted.stat_674553446","text":"Adds # to # Chaos Damage to Attacks","type":"crafted"},{"id":"crafted.stat_4154259475","text":"# to Level of Socketed Support Gems","type":"crafted"},{"id":"crafted.stat_4055307827","text":"#% to Chaos Damage over Time Multiplier","type":"crafted"},{"id":"crafted.stat_4067062424","text":"Adds # to # Cold Damage to Attacks","type":"crafted"},{"id":"crafted.stat_789117908","text":"#% increased Mana Regeneration Rate","type":"crafted"},{"id":"crafted.stat_573223427","text":"#% chance to gain Arcane Surge when you Kill an Enemy","type":"crafted"},{"id":"crafted.stat_3484657501","text":"# to Armour (Local)","type":"crafted"},{"id":"crafted.stat_691932474","text":"# to Accuracy Rating (Local)","type":"crafted"},{"id":"crafted.stat_3706959521","text":"# to Minimum Endurance Charges","type":"crafted"},{"id":"crafted.stat_474294393","text":"#% reduced Mana Cost of Skills","type":"crafted"},{"id":"crafted.stat_3375935924","text":"Minions have #% increased Attack Speed","type":"crafted"},{"id":"crafted.stat_4000101551","text":"Minions have #% increased Cast Speed","type":"crafted"},{"id":"crafted.stat_2947215268","text":"#% increased Damage during any Flask Effect","type":"crafted"},{"id":"crafted.stat_736967255","text":"#% increased Chaos Damage","type":"crafted"},{"id":"crafted.stat_1999711879","text":"# to Minimum Power Charges","type":"crafted"},{"id":"crafted.stat_1177358866","text":"#% increased Movement Speed if you haven\u0027t been Hit Recently","type":"crafted"},{"id":"crafted.stat_967627487","text":"#% increased Damage over Time","type":"crafted"},{"id":"crafted.stat_2672805335","text":"#% increased Attack and Cast Speed","type":"crafted"},{"id":"crafted.stat_53045048","text":"# to Evasion Rating (Local)","type":"crafted"},{"id":"crafted.stat_2008255263","text":"#% increased Critical Strike Chance during Flask Effect","type":"crafted"},{"id":"crafted.stat_2379781920","text":"#% increased Elemental Damage if you\u0027ve dealt a Critical Strike Recently","type":"crafted"},{"id":"crafted.stat_3992439283","text":"#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby","type":"crafted"},{"id":"crafted.stat_770672621","text":"Minions have #% increased maximum Life","type":"crafted"},{"id":"crafted.stat_2469416729","text":"Adds # to # Cold Damage to Spells","type":"crafted"},{"id":"crafted.stat_2176571093","text":"# to Level of Socketed Projectile Gems","type":"crafted"},{"id":"crafted.stat_2067062068","text":"Projectiles Pierce # additional Targets","type":"crafted"},{"id":"crafted.stat_2974417149","text":"#% increased Spell Damage","type":"crafted"},{"id":"crafted.stat_3031766858","text":"Shock nearby Enemies for # Seconds when you Focus","type":"crafted"},{"id":"crafted.stat_3336890334","text":"Adds # to # Lightning Damage (Local)","type":"crafted"},{"id":"crafted.stat_2908886986","text":"#% chance to deal Double Damage while Focussed","type":"crafted"},{"id":"crafted.stat_2316658489","text":"# to Armour and Evasion Rating","type":"crafted"},{"id":"crafted.stat_2238019079","text":"Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby","type":"crafted"},{"id":"crafted.stat_3593843976","text":"#% of Physical Attack Damage Leeched as Life","type":"crafted"},{"id":"crafted.stat_2309614417","text":"#% chance to Freeze","type":"crafted"},{"id":"crafted.stat_1037193709","text":"Adds # to # Cold Damage (Local)","type":"crafted"},{"id":"crafted.stat_314741699","text":"#% increased Attack Speed while a Rare or Unique Enemy is Nearby","type":"crafted"},{"id":"crafted.stat_1538773178","text":"#% chance to Shock","type":"crafted"},{"id":"crafted.stat_51994685","text":"#% increased Flask Life Recovery rate","type":"crafted"},{"id":"crafted.stat_2133341901","text":"#% of Physical Damage Converted to Cold Damage","type":"crafted"},{"id":"crafted.stat_1896971621","text":"#% increased Mine Throwing Speed","type":"crafted"},{"id":"crafted.stat_1004011302","text":"#% increased Cooldown Recovery Speed","type":"crafted"},{"id":"crafted.stat_1452809865","text":"#% increased Flask Charges gained","type":"crafted"},{"id":"crafted.stat_3917489142","text":"#% increased Rarity of Items found","type":"crafted"},{"id":"crafted.stat_1335054179","text":"#% chance to Ignite","type":"crafted"},{"id":"crafted.stat_3741323227","text":"#% increased Flask Effect Duration","type":"crafted"},{"id":"crafted.stat_289885185","text":"Chaos Skills have #% increased Skill Effect Duration","type":"crafted"},{"id":"crafted.stat_696707743","text":"#% chance to Dodge Spell Hits","type":"crafted"},{"id":"crafted.stat_174664100","text":"Minions have #% increased Movement Speed","type":"crafted"},{"id":"crafted.stat_2062792091","text":"#% chance to Trigger Socketed Spells when you Focus","type":"crafted"},{"id":"crafted.stat_2523334466","text":"Adds # to # Chaos Damage if you\u0027ve dealt a Critical Strike Recently","type":"crafted"},{"id":"crafted.stat_709508406","text":"Adds # to # Fire Damage (Local)","type":"crafted"},{"id":"crafted.stat_3828613551","text":"#% to Quality of Socketed Gems","type":"crafted"},{"id":"crafted.stat_803737631","text":"# to Accuracy Rating","type":"crafted"},{"id":"crafted.stat_311641062","text":"#% chance for Flasks you use to not consume Charges","type":"crafted"},{"id":"crafted.stat_3005472710","text":"#% chance to Avoid Elemental Ailments","type":"crafted"},{"id":"crafted.stat_782230869","text":"#% increased Effect of Non-Damaging Ailments","type":"crafted"},{"id":"crafted.stat_3762412853","text":"Attacks with this Weapon Penetrate #% Chaos Resistance","type":"crafted"},{"id":"crafted.stat_205619502","text":"#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy","type":"crafted"},{"id":"crafted.stat_3500911418","text":"Regenerate #% of Life per second during any Flask Effect","type":"crafted"},{"id":"crafted.stat_3240769289","text":"#% of Physical Damage Converted to Lightning Damage","type":"crafted"},{"id":"crafted.stat_4122424929","text":"Cannot roll Attack Modifiers","type":"crafted"},{"id":"crafted.stat_2022851697","text":"You have Vaal Pact while Focussed","type":"crafted"},{"id":"crafted.stat_2034658008","text":"#% increased Damage per Power Charge","type":"crafted"},{"id":"crafted.stat_1533563525","text":"#% of Physical Damage Converted to Fire Damage","type":"crafted"},{"id":"crafted.stat_1840751341","text":"#% increased Duration of Ailments you inflict while Focussed","type":"crafted"},{"id":"crafted.stat_1539825365","text":"# to Armour during Soul Gain Prevention","type":"crafted"},{"id":"crafted.stat_30642521","text":"You can apply an additional Curse","type":"crafted"},{"id":"crafted.stat_4262448838","text":"#% chance to Avoid being Stunned","type":"crafted"},{"id":"crafted.stat_2866361420","text":"#% increased Armour","type":"crafted"},{"id":"crafted.stat_1950806024","text":"#% to Cold Damage over Time Multiplier","type":"crafted"},{"id":"crafted.stat_1583385065","text":"Non-Vaal Skills deal #% increased Damage during Soul Gain Prevention","type":"crafted"},{"id":"crafted.stat_3374165039","text":"#% increased Totem Placement speed","type":"crafted"},{"id":"crafted.stat_836936635","text":"Regenerate #% of Life per second","type":"crafted"},{"id":"crafted.stat_1133016593","text":"Adds # to # Fire Damage to Spells","type":"crafted"},{"id":"crafted.stat_4126210832","text":"Hits can\u0027t be Evaded","type":"crafted"},{"id":"crafted.stat_2402136583","text":"Gain #% of Lightning Damage as Extra Chaos Damage","type":"crafted"},{"id":"crafted.stat_118398748","text":"#% increased Trap Throwing Speed","type":"crafted"},{"id":"crafted.stat_2312652600","text":"#% Chance to avoid being Stunned during Flask Effect","type":"crafted"},{"id":"crafted.stat_3515686789","text":"#% increased Damage per Endurance Charge","type":"crafted"},{"id":"crafted.stat_871270154","text":"Regenerate #% of Life per second during Flask Effect","type":"crafted"},{"id":"crafted.stat_902747843","text":"#% increased Damage per Frenzy Charge","type":"crafted"},{"id":"crafted.stat_849152640","text":"Skills Cost no Mana while Focussed","type":"crafted"},{"id":"crafted.stat_2590156965","text":"#% chance to Dodge Attack Hits while Focussed","type":"crafted"},{"id":"crafted.stat_1149326139","text":"Cannot roll Caster Modifiers","type":"crafted"},{"id":"crafted.stat_1785942004","text":"#% Chance to Trigger Level 18 Summon Spectral Wolf on Kill","type":"crafted"},{"id":"crafted.stat_4223377453","text":"#% increased Brand Attachment range","type":"crafted"},{"id":"crafted.stat_2628163981","text":"#% increased Attack and Cast Speed while Focussed","type":"crafted"},{"id":"crafted.stat_3753650187","text":"#% additional Physical Damage Reduction while Focussed","type":"crafted"},{"id":"crafted.stat_2530372417","text":"#% Chance to Block Attack Damage","type":"crafted"},{"id":"crafted.stat_3237948413","text":"#% of Physical Attack Damage Leeched as Mana","type":"crafted"},{"id":"crafted.stat_3824033729","text":"#% of Damage Taken from Hits is Leeched as Life during Flask Effect","type":"crafted"},{"id":"crafted.stat_3342989455","text":"#% of Physical Damage from Hits taken as Fire Damage","type":"crafted"},{"id":"crafted.stat_2106365538","text":"#% increased Evasion Rating","type":"crafted"},{"id":"crafted.stat_3324747104","text":"#% of Damage Leeched as Life while Focussed","type":"crafted"},{"id":"crafted.stat_3319896421","text":"Gain #% of Physical Damage as Extra Chaos Damage","type":"crafted"},{"id":"crafted.stat_1572897579","text":"You have Onslaught during Soul Gain Prevention","type":"crafted"},{"id":"crafted.stat_3267282390","text":"#% increased Effect of Fortify on you while Focussed","type":"crafted"},{"id":"crafted.stat_720398262","text":"#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention","type":"crafted"},{"id":"crafted.stat_2992263716","text":"Recover #% of Mana and Energy Shield when you Focus","type":"crafted"},{"id":"crafted.stat_3032585258","text":"#% chance to gain a Frenzy Charge on Critical Strike","type":"crafted"},{"id":"crafted.stat_3182498570","text":"#% increased Movement Speed during Flask effect","type":"crafted"},{"id":"crafted.stat_1349659520","text":"Your Critical Strike Chance is Lucky while Focussed","type":"crafted"},{"id":"crafted.stat_2161689853","text":"#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies","type":"crafted"},{"id":"crafted.stat_67280387","text":"Gain #% of Maximum Life as Extra Maximum Energy Shield","type":"crafted"},{"id":"crafted.stat_1599775597","text":"Gain #% of Fire Damage as Extra Chaos Damage","type":"crafted"},{"id":"crafted.stat_1101403182","text":"#% reduced Damage taken from Damage Over Time","type":"crafted"},{"id":"crafted.stat_1423639565","text":"Minions have #% to all Elemental Resistances","type":"crafted"},{"id":"crafted.stat_2137912951","text":"#% increased Mine Damage","type":"crafted"},{"id":"crafted.stat_3251705960","text":"#% increased Rarity of Items found during Flask Effect","type":"crafted"},{"id":"crafted.stat_1588539856","text":"#% of Damage is taken from Mana before Life while Focussed","type":"crafted"},{"id":"crafted.stat_2941585404","text":"#% increased Trap Damage","type":"crafted"},{"id":"crafted.stat_683273571","text":"#% increased Mana Cost of Skills during Flask Effect","type":"crafted"},{"id":"crafted.stat_3922006600","text":"Socketed Gems are Supported by Level # Blood Magic","type":"crafted"},{"id":"crafted.stat_2353576063","text":"#% increased Effect of your Curses","type":"crafted"},{"id":"crafted.stat_1766730250","text":"You are Immune to Ailments while Focussed","type":"crafted"},{"id":"crafted.stat_1412217137","text":"#% increased Flask Mana Recovery rate","type":"crafted"},{"id":"crafted.stat_1653010703","text":"#% to Non-Ailment Chaos Damage over Time Multiplier","type":"crafted"},{"id":"crafted.stat_3382807662","text":"#% to Fire Damage over Time Multiplier","type":"crafted"},{"id":"crafted.stat_4253454700","text":"#% Chance to Block (Shields)","type":"crafted"},{"id":"crafted.stat_3244118730","text":"#% of Evasion Rating is Regenerated as Life per second while Focussed","type":"crafted"},{"id":"crafted.stat_3500359417","text":"Minions Recover #% of their Life when you Focus","type":"crafted"},{"id":"crafted.stat_561307714","text":"#% Chance to Block Spell Damage","type":"crafted"},{"id":"crafted.stat_80079005","text":"#% of Lightning Damage Leeched as Life","type":"crafted"},{"id":"crafted.stat_350598685","text":"# to Weapon Range","type":"crafted"},{"id":"crafted.stat_3848282610","text":"#% of Fire Damage Leeched as Life","type":"crafted"},{"id":"crafted.stat_3999401129","text":"#% of Cold Damage Leeched as Life","type":"crafted"},{"id":"crafted.stat_1514829491","text":"#% chance to Avoid being Frozen","type":"crafted"},{"id":"crafted.stat_2797971005","text":"# Life gained for each Enemy hit by your Attacks","type":"crafted"},{"id":"crafted.stat_429867172","text":"# to maximum number of Summoned Totems","type":"crafted"},{"id":"crafted.stat_2477381238","text":"#% reduced Enemy Block Chance","type":"crafted"},{"id":"crafted.stat_301104070","text":"Flasks gain a Charge when you take a Critical Strike","type":"crafted"},{"id":"crafted.stat_1310194496","text":"#% increased Global Physical Damage","type":"crafted"},{"id":"crafted.stat_3464137628","text":"Suffixes Cannot Be Changed","type":"crafted"},{"id":"crafted.stat_1435748744","text":"Curse Skills have #% increased Skill Effect Duration","type":"crafted"},{"id":"crafted.stat_2879723104","text":"Prefixes Cannot Be Changed","type":"crafted"},{"id":"crafted.stat_3767873853","text":"Reflects # Physical Damage to Melee Attackers","type":"crafted"},{"id":"crafted.stat_1578737937","text":"Attack Projectiles Return to you from final Target","type":"crafted"},{"id":"crafted.stat_3909846940","text":"Item drops on Death if Equipped by an Animated Guardian","type":"crafted"},{"id":"crafted.stat_3759663284","text":"#% increased Projectile Speed","type":"crafted"},{"id":"crafted.stat_2166444903","text":"#% Chance to Block Attack Damage while Dual Wielding","type":"crafted"},{"id":"crafted.stat_1702195217","text":"#% Chance to Block Attack Damage","type":"crafted"},{"id":"crafted.stat_832404842","text":"#% reduced Enemy Stun Threshold with this Weapon","type":"crafted"},{"id":"crafted.stat_1445684883","text":"Reflects # to # Physical Damage to Attackers on Block","type":"crafted"},{"id":"crafted.stat_2517001139","text":"#% increased Stun Duration on Enemies","type":"crafted"},{"id":"crafted.stat_3485067555","text":"#% increased Chill Duration on Enemies","type":"crafted"},{"id":"crafted.stat_1073942215","text":"#% increased Freeze Duration on Enemies","type":"crafted"},{"id":"crafted.stat_3143208761","text":"#% increased Attributes","type":"crafted"},{"id":"crafted.stat_3668351662","text":"#% increased Shock Duration on Enemies","type":"crafted"},{"id":"crafted.stat_1086147743","text":"#% increased Ignite Duration on Enemies","type":"crafted"},{"id":"crafted.stat_2915373966","text":"Gain #% of Cold Damage as Extra Chaos Damage","type":"crafted"},{"id":"crafted.stat_1871765599","text":"#% chance to Avoid being Shocked","type":"crafted"},{"id":"crafted.stat_1783006896","text":"#% chance to Avoid being Ignited","type":"crafted"},{"id":"crafted.stat_238314698","text":"Cannot roll Modifiers with Required Level above #","type":"crafted"},{"id":"crafted.stat_2362265695","text":"#% chance to Avoid being Knocked Back","type":"crafted"}]},{"label":"Veiled","entries":[{"id":"veiled.mod_63099","text":"of the Veil","type":"veiled"},{"id":"veiled.mod_65000","text":"Veiled","type":"veiled"},{"id":"veiled.mod_65163","text":"of Cameria\u0027s Veil","type":"veiled"},{"id":"veiled.mod_3258","text":"Leo\u0027s Veiled","type":"veiled"},{"id":"veiled.mod_48007","text":"of Aisling\u0027s Veil","type":"veiled"},{"id":"veiled.mod_63772","text":"Catarina\u0027s Veiled","type":"veiled"},{"id":"veiled.mod_62955","text":"of Jorgin\u0027s Veil","type":"veiled"},{"id":"veiled.mod_5769","text":"Elreon\u0027s Veiled","type":"veiled"},{"id":"veiled.mod_48408","text":"of Riker\u0027s Veil","type":"veiled"},{"id":"veiled.mod_44855","text":"Korell\u0027s Veiled","type":"veiled"},{"id":"veiled.mod_47933","text":"Vorici\u0027s Veiled","type":"veiled"},{"id":"veiled.mod_14269","text":"Vagan\u0027s Veiled","type":"veiled"},{"id":"veiled.mod_55787","text":"It That Fled\u0027s Veiled","type":"veiled"},{"id":"veiled.mod_3975","text":"of Hillock\u0027s Veil","type":"veiled"},{"id":"veiled.mod_8541","text":"Tora\u0027s Veiled","type":"veiled"},{"id":"veiled.mod_6779","text":"Guff\u0027s Veiled","type":"veiled"},{"id":"veiled.mod_39023","text":"Haku\u0027s Veiled","type":"veiled"},{"id":"veiled.mod_38872","text":"Gravicius\u0027 Veiled","type":"veiled"},{"id":"veiled.mod_6131","text":"Rin\u0027s Veiled","type":"veiled"},{"id":"veiled.mod_11536","text":"of Janus\u0027 Veil","type":"veiled"}]},{"label":"Monster","entries":[{"id":"monster.metamorph_reward_currency","text":"Drops additional Currency Items (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_rare_armour","text":"Drops additional Rare Armour (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_rare_jewellery","text":"Drops additional Rare Jewellery (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_rare_weapons","text":"Drops additional Rare Weapons (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_rare_weapon","text":"Drops a Rare Weapon (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_essences","text":"Drops additional Essences (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_map","text":"Drops a Map Item (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_divination_cards","text":"Drops additional Divination Cards (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_rare_talismans","text":"Drops additional Rare Talismans (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_veiled_weapon","text":"Drops a Veiled Weapon (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_maps","text":"Drops additional Maps (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_unique","text":"Drops a Unique Item (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_perandus_coins","text":"Drops additional Perandus Coins (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_jewels","text":"Drops additional Jewels (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_fossils","text":"Drops additional Fossils (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_map_fragments","text":"Drops additional Map Fragments (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_incursion_weapon","text":"Drops an Incursion Weapon (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_incursion_armour","text":"Drops additional Incursion Armour (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_catalysts","text":"Drops additional Catalysts (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_uniques","text":"Drops additional Unique Items (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_abyssal_jewel","text":"Drops an Abyssal Jewel (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_quality_gems","text":"Drops additional Quality Gems (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_silver_coins","text":"Drops additional Silver Coins (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_currency_shards","text":"Drops additional Currency Shards (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_enchanted_helmet","text":"Drops an Enchanted Helmet (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_legion_incubators","text":"Drops additional Legion Incubators (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_prophecies","text":"Drops Itemised Prophecies (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_shaper_armour","text":"Drops additional Shaper Armour (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_shaper_weapon","text":"Drops a Shaper Weapon (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_elder_armour","text":"Drops additional Elder Armour (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_elder_weapon","text":"Drops an Elder Weapon (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_abyssal_jewels","text":"Drops additional Abyssal Jewels (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_unique_weapon","text":"Drops a Unique Weapon (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_valuable_currency_shards","text":"Drops additional valuable Currency Shards (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_unique_jewellery","text":"Drops additional Unique Jewellery (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_veiled_armour","text":"Drops additional Veiled Armour (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_rusted_scarabs","text":"Drops additional Rusted Scarabs (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_veiled_jewellery","text":"Drops additional Veiled Jewellery (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_breach_splinters","text":"Drops additional Breach Splinters (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_shaper_or_elder_jewellery","text":"Drops additional Shaper or Elder Jewellery (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_harbinger_currency","text":"Drops additional Harbinger Currency (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_prophecy","text":"Drops an Itemised Prophecy (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_incursion_jewellery","text":"Drops additional Incursion Jewellery (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_enchanted_boots","text":"Drops Enchanted Boots (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_atlas_jewellery","text":"Drops additional Atlas Jewellery (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_polished_scarabs","text":"Drops additional Polished Scarabs (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_stygian_vise","text":"Drops a Stygian Vise (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_blight_oils","text":"Drops additional Blight Oils (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_enchanted_gloves","text":"Drops Enchanted Gloves (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_blighted_map","text":"Drops a Blighted Map (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_offering_to_the_goddess","text":"Drops an Offering to the Goddess (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_breachstone","text":"Drops a Breachstone (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_valuable_gem","text":"Drops a valuable Gem (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_league_unique","text":"Drops a League-specific Unique Item (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_gilded_scarabs","text":"Drops additional Gilded Scarabs (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_30_quality_weapon","text":"Drops a 30% Quality Weapon (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_beachhead_unique_map","text":"Drops a Beachhead Unique Map (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_6_linked_weapon","text":"Drops a 6-linked Weapon (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_breach_blessing","text":"Drops a Breach Blessing (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_6_linked_unique_body_armour","text":"Drops a 6-linked Unique Body Armour (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_resonator","text":"Drops a Resonator (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_talisman_unique","text":"Drops a Talisman Unique Item (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_abyss_unique","text":"Drops an Abyss Unique Item (\u00D7#)","type":"monster"},{"id":"monster.metamorph_reward_unique_armour","text":"Drops additional Unique Armour (\u00D7#)","type":"monster"}]},{"label":"Delve","entries":[{"id":"delve.delve_scorched_fossil","text":"More Fire modifiers; No Cold modifiers (Scorched Fossil)","type":"delve"},{"id":"delve.delve_frigid_fossil","text":"More Cold modifiers; No Fire modifiers (Frigid Fossil)","type":"delve"},{"id":"delve.delve_metallic_fossil","text":"More Lightning modifiers; No Physical modifiers (Metallic Fossil)","type":"delve"},{"id":"delve.delve_jagged_fossil","text":"More Physical modifiers; No Chaos modifiers (Jagged Fossil)","type":"delve"},{"id":"delve.delve_aberrant_fossil","text":"More Chaos modifiers; No Lightning modifiers (Aberrant Fossil)","type":"delve"},{"id":"delve.delve_pristine_fossil","text":"More Life modifiers; No Armour, Energy Shield or Evasion modifiers (Pristine Fossil)","type":"delve"},{"id":"delve.delve_dense_fossil","text":"More Armour, Energy Shield or Evasion modifiers; No Life modifiers (Dense Fossil)","type":"delve"},{"id":"delve.delve_corroded_fossil","text":"More Poison or Bleeding modifiers; No Elemental modifiers (Corroded Fossil)","type":"delve"},{"id":"delve.delve_prismatic_fossil","text":"More Elemental modifiers; No Poison or Bleeding modifiers (Prismatic Fossil)","type":"delve"},{"id":"delve.delve_aetheric_fossil","text":"More Caster modifiers; Fewer Attack modifiers (Aetheric Fossil)","type":"delve"},{"id":"delve.delve_serrated_fossil","text":"More Attack modifiers; Fewer Caster modifiers (Serrated Fossil)","type":"delve"},{"id":"delve.delve_lucent_fossil","text":"More Mana modifiers; No Speed modifiers (Lucent Fossil)","type":"delve"},{"id":"delve.delve_shuddering_fossil","text":"More Speed modifiers; No Mana modifiers (Shuddering Fossil)","type":"delve"},{"id":"delve.delve_bound_fossil","text":"More Minion and Aura modifiers (Bound Fossil)","type":"delve"},{"id":"delve.delve_perfect_fossil","text":"Improved Quality (Perfect Fossil)","type":"delve"},{"id":"delve.delve_enchanted_fossil","text":"Has a Labyrinth Enchantment (Enchanted Fossil)","type":"delve"},{"id":"delve.delve_encrusted_fossil","text":"More sockets; Can have white sockets (Encrusted Fossil)","type":"delve"},{"id":"delve.delve_faceted_fossil","text":"More Socketed Gem Level modifiers (Faceted Fossil)","type":"delve"},{"id":"delve.delve_bloodstained_fossil","text":"Has a Vaal modifier (Bloodstained Fossil)","type":"delve"},{"id":"delve.delve_hollow_fossil","text":"Has an Abyssal socket (Hollow Fossil)","type":"delve"},{"id":"delve.delve_fractured_fossil","text":"Creates a mirrored copy (Fractured Fossil)","type":"delve"},{"id":"delve.delve_glyphic_fossil","text":"Has a Corrupt Essence modifier (Glyphic Fossil)","type":"delve"},{"id":"delve.delve_tangled_fossil","text":"Can have any Fossil modifiers (Tangled Fossil)","type":"delve"},{"id":"delve.delve_sanctified_fossil","text":"Numeric modifier values are lucky; High Level modifiers are more common (Sanctified Fossil)","type":"delve"},{"id":"delve.delve_gilded_fossil","text":"Item is overvalued by vendors (Gilded Fossil)","type":"delve"}]}] \ No newline at end of file +[{"label":"Pseudo","entries":[{"id":"pseudo.pseudo_total_cold_resistance","text":"+#% total to Cold Resistance","type":"pseudo"},{"id":"pseudo.pseudo_total_fire_resistance","text":"+#% total to Fire Resistance","type":"pseudo"},{"id":"pseudo.pseudo_total_lightning_resistance","text":"+#% total to Lightning Resistance","type":"pseudo"},{"id":"pseudo.pseudo_total_elemental_resistance","text":"+#% total Elemental Resistance","type":"pseudo"},{"id":"pseudo.pseudo_total_chaos_resistance","text":"+#% total to Chaos Resistance","type":"pseudo"},{"id":"pseudo.pseudo_total_resistance","text":"+#% total Resistance","type":"pseudo"},{"id":"pseudo.pseudo_count_resistances","text":"# total Resistances","type":"pseudo"},{"id":"pseudo.pseudo_count_elemental_resistances","text":"# total Elemental Resistances","type":"pseudo"},{"id":"pseudo.pseudo_total_all_elemental_resistances","text":"+#% total to all Elemental Resistances","type":"pseudo"},{"id":"pseudo.pseudo_total_strength","text":"+# total to Strength","type":"pseudo"},{"id":"pseudo.pseudo_total_dexterity","text":"+# total to Dexterity","type":"pseudo"},{"id":"pseudo.pseudo_total_intelligence","text":"+# total to Intelligence","type":"pseudo"},{"id":"pseudo.pseudo_total_all_attributes","text":"+# total to all Attributes","type":"pseudo"},{"id":"pseudo.pseudo_total_life","text":"+# total maximum Life","type":"pseudo"},{"id":"pseudo.pseudo_total_mana","text":"+# total maximum Mana","type":"pseudo"},{"id":"pseudo.pseudo_total_energy_shield","text":"+# total maximum Energy Shield","type":"pseudo"},{"id":"pseudo.pseudo_increased_energy_shield","text":"#% total increased maximum Energy Shield","type":"pseudo"},{"id":"pseudo.pseudo_total_attack_speed","text":"+#% total Attack Speed","type":"pseudo"},{"id":"pseudo.pseudo_total_cast_speed","text":"+#% total Cast Speed","type":"pseudo"},{"id":"pseudo.pseudo_increased_movement_speed","text":"#% increased Movement Speed","type":"pseudo"},{"id":"pseudo.pseudo_increased_physical_damage","text":"#% total increased Physical Damage","type":"pseudo"},{"id":"pseudo.pseudo_global_critical_strike_chance","text":"+#% Global Critical Strike Chance","type":"pseudo"},{"id":"pseudo.pseudo_critical_strike_chance_for_spells","text":"+#% total Critical Strike Chance for Spells","type":"pseudo"},{"id":"pseudo.pseudo_global_critical_strike_multiplier","text":"+#% Global Critical Strike Multiplier","type":"pseudo"},{"id":"pseudo.pseudo_adds_physical_damage","text":"Adds # to # Physical Damage","type":"pseudo"},{"id":"pseudo.pseudo_adds_lightning_damage","text":"Adds # to # Lightning Damage","type":"pseudo"},{"id":"pseudo.pseudo_adds_cold_damage","text":"Adds # to # Cold Damage","type":"pseudo"},{"id":"pseudo.pseudo_adds_fire_damage","text":"Adds # to # Fire Damage","type":"pseudo"},{"id":"pseudo.pseudo_adds_elemental_damage","text":"Adds # to # Elemental Damage","type":"pseudo"},{"id":"pseudo.pseudo_adds_chaos_damage","text":"Adds # to # Chaos Damage","type":"pseudo"},{"id":"pseudo.pseudo_adds_damage","text":"Adds # to # Damage","type":"pseudo"},{"id":"pseudo.pseudo_adds_physical_damage_to_attacks","text":"Adds # to # Physical Damage to Attacks","type":"pseudo"},{"id":"pseudo.pseudo_adds_lightning_damage_to_attacks","text":"Adds # to # Lightning Damage to Attacks","type":"pseudo"},{"id":"pseudo.pseudo_adds_cold_damage_to_attacks","text":"Adds # to # Cold Damage to Attacks","type":"pseudo"},{"id":"pseudo.pseudo_adds_fire_damage_to_attacks","text":"Adds # to # Fire Damage to Attacks","type":"pseudo"},{"id":"pseudo.pseudo_adds_elemental_damage_to_attacks","text":"Adds # to # Elemental Damage to Attacks","type":"pseudo"},{"id":"pseudo.pseudo_adds_chaos_damage_to_attacks","text":"Adds # to # Chaos Damage to Attacks","type":"pseudo"},{"id":"pseudo.pseudo_adds_damage_to_attacks","text":"Adds # to # Damage to Attacks","type":"pseudo"},{"id":"pseudo.pseudo_adds_physical_damage_to_spells","text":"Adds # to # Physical Damage to Spells","type":"pseudo"},{"id":"pseudo.pseudo_adds_lightning_damage_to_spells","text":"Adds # to # Lightning Damage to Spells","type":"pseudo"},{"id":"pseudo.pseudo_adds_cold_damage_to_spells","text":"Adds # to # Cold Damage to Spells","type":"pseudo"},{"id":"pseudo.pseudo_adds_fire_damage_to_spells","text":"Adds # to # Fire Damage to Spells","type":"pseudo"},{"id":"pseudo.pseudo_adds_elemental_damage_to_spells","text":"Adds # to # Elemental Damage to Spells","type":"pseudo"},{"id":"pseudo.pseudo_adds_chaos_damage_to_spells","text":"Adds # to # Chaos Damage to Spells","type":"pseudo"},{"id":"pseudo.pseudo_adds_damage_to_spells","text":"Adds # to # Damage to Spells","type":"pseudo"},{"id":"pseudo.pseudo_increased_elemental_damage","text":"#% increased Elemental Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_lightning_damage","text":"#% increased Lightning Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_cold_damage","text":"#% increased Cold Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_fire_damage","text":"#% increased Fire Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_spell_damage","text":"#% increased Spell Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_lightning_spell_damage","text":"#% increased Lightning Spell Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_cold_spell_damage","text":"#% increased Cold Spell Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_fire_spell_damage","text":"#% increased Fire Spell Damage","type":"pseudo"},{"id":"pseudo.pseudo_increased_lightning_damage_with_attack_skills","text":"#% increased Lightning Damage with Attack Skills","type":"pseudo"},{"id":"pseudo.pseudo_increased_cold_damage_with_attack_skills","text":"#% increased Cold Damage with Attack Skills","type":"pseudo"},{"id":"pseudo.pseudo_increased_fire_damage_with_attack_skills","text":"#% increased Fire Damage with Attack Skills","type":"pseudo"},{"id":"pseudo.pseudo_increased_elemental_damage_with_attack_skills","text":"#% increased Elemental Damage with Attack Skills","type":"pseudo"},{"id":"pseudo.pseudo_increased_rarity","text":"#% increased Rarity of Items found","type":"pseudo"},{"id":"pseudo.pseudo_increased_burning_damage","text":"#% increased Burning Damage","type":"pseudo"},{"id":"pseudo.pseudo_total_life_regen","text":"# Life Regenerated per Second","type":"pseudo"},{"id":"pseudo.pseudo_percent_life_regen","text":"#% of Life Regenerated per Second","type":"pseudo"},{"id":"pseudo.pseudo_physical_attack_damage_leeched_as_life","text":"#% of Physical Attack Damage Leeched as Life","type":"pseudo"},{"id":"pseudo.pseudo_physical_attack_damage_leeched_as_mana","text":"#% of Physical Attack Damage Leeched as Mana","type":"pseudo"},{"id":"pseudo.pseudo_increased_mana_regen","text":"#% increased Mana Regeneration Rate","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_gem_levels","text":"+# total to Level of Socketed Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_elemental_gem_levels","text":"+# total to Level of Socketed Elemental Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_fire_gem_levels","text":"+# total to Level of Socketed Fire Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_cold_gem_levels","text":"+# total to Level of Socketed Cold Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_lightning_gem_levels","text":"+# total to Level of Socketed Lightning Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_chaos_gem_levels","text":"+# total to Level of Socketed Chaos Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_spell_gem_levels","text":"+# total to Level of Socketed Spell Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_projectile_gem_levels","text":"+# total to Level of Socketed Projectile Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_bow_gem_levels","text":"+# total to Level of Socketed Bow Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_melee_gem_levels","text":"+# total to Level of Socketed Melee Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_minion_gem_levels","text":"+# total to Level of Socketed Minion Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_strength_gem_levels","text":"+# total to Level of Socketed Strength Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_dexterity_gem_levels","text":"+# total to Level of Socketed Dexterity Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_intelligence_gem_levels","text":"+# total to Level of Socketed Intelligence Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_aura_gem_levels","text":"+# total to Level of Socketed Aura Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_movement_gem_levels","text":"+# total to Level of Socketed Movement Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_curse_gem_levels","text":"+# total to Level of Socketed Curse Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_vaal_gem_levels","text":"+# total to Level of Socketed Vaal Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_support_gem_levels","text":"+# total to Level of Socketed Support Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_skill_gem_levels","text":"+# total to Level of Socketed Skill Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_warcry_gem_levels","text":"+# total to Level of Socketed Warcry Gems","type":"pseudo"},{"id":"pseudo.pseudo_total_additional_golem_gem_levels","text":"+# total to Level of Socketed Golem Gems","type":"pseudo"},{"id":"pseudo.pseudo_number_of_implicit_mods","text":"# Implicit Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_prefix_mods","text":"# Prefix Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_suffix_mods","text":"# Suffix Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_affix_mods","text":"# Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_crafted_prefix_mods","text":"# Crafted Prefix Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_crafted_suffix_mods","text":"# Crafted Suffix Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_crafted_mods","text":"# Crafted Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_empty_prefix_mods","text":"# Empty Prefix Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_empty_suffix_mods","text":"# Empty Suffix Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_empty_affix_mods","text":"# Empty Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_whispering_incubator_kills","text":"# Incubator Kills (Whispering)","type":"pseudo"},{"id":"pseudo.pseudo_fine_incubator_kills","text":"# Incubator Kills (Fine)","type":"pseudo"},{"id":"pseudo.pseudo_singular_incubator_kills","text":"# Incubator Kills (Singular)","type":"pseudo"},{"id":"pseudo.pseudo_cartographers_incubator_kills","text":"# Incubator Kills (Cartographer's)","type":"pseudo"},{"id":"pseudo.pseudo_otherworldly_incubator_kills","text":"# Incubator Kills (Otherwordly)","type":"pseudo"},{"id":"pseudo.pseudo_abyssal_incubator_kills","text":"# Incubator Kills (Abyssal)","type":"pseudo"},{"id":"pseudo.pseudo_fragmented_incubator_kills","text":"# Incubator Kills (Fragmented)","type":"pseudo"},{"id":"pseudo.pseudo_skittering_incubator_kills","text":"# Incubator Kills (Skittering)","type":"pseudo"},{"id":"pseudo.pseudo_infused_incubator_kills","text":"# Incubator Kills (Infused)","type":"pseudo"},{"id":"pseudo.pseudo_fossilised_incubator_kills","text":"# Incubator Kills (Fossilised)","type":"pseudo"},{"id":"pseudo.pseudo_decadent_incubator_kills","text":"# Incubator Kills (Decadent)","type":"pseudo"},{"id":"pseudo.pseudo_diviners_incubator_kills","text":"# Incubator Kills (Diviner's)","type":"pseudo"},{"id":"pseudo.pseudo_primal_incubator_kills","text":"# Incubator Kills (Primal)","type":"pseudo"},{"id":"pseudo.pseudo_enchanted_incubator_kills","text":"# Incubator Kills (Enchanted)","type":"pseudo"},{"id":"pseudo.pseudo_geomancers_incubator_kills","text":"# Incubator Kills (Geomancer's)","type":"pseudo"},{"id":"pseudo.pseudo_ornate_incubator_kills","text":"# Incubator Kills (Ornate)","type":"pseudo"},{"id":"pseudo.pseudo_timelost_incubator_kills","text":"# Incubator Kills (Time-Lost)","type":"pseudo"},{"id":"pseudo.pseudo_celestial_armoursmiths_incubator_kills","text":"# Incubator Kills (Celestial Armoursmith's)","type":"pseudo"},{"id":"pseudo.pseudo_celestial_blacksmiths_incubator_kills","text":"# Incubator Kills (Celestial Blacksmith's)","type":"pseudo"},{"id":"pseudo.pseudo_celestial_jewellers_incubator_kills","text":"# Incubator Kills (Celestial Jeweller's)","type":"pseudo"},{"id":"pseudo.pseudo_eldritch_incubator_kills","text":"# Incubator Kills (Eldritch)","type":"pseudo"},{"id":"pseudo.pseudo_obscured_incubator_kills","text":"# Incubator Kills (Obscured)","type":"pseudo"},{"id":"pseudo.pseudo_foreboding_incubator_kills","text":"# Incubator Kills (Foreboding)","type":"pseudo"},{"id":"pseudo.pseudo_thaumaturges_incubator_kills","text":"# Incubator Kills (Thaumaturge's)","type":"pseudo"},{"id":"pseudo.pseudo_mysterious_incubator_kills","text":"# Incubator Kills (Mysterious)","type":"pseudo"},{"id":"pseudo.pseudo_gemcutters_incubator_kills","text":"# Incubator Kills (Gemcutter's)","type":"pseudo"},{"id":"pseudo.pseudo_feral_incubator_kills","text":"# Incubator Kills (Feral)","type":"pseudo"},{"id":"pseudo.pseudo_number_of_fractured_mods","text":"# Fractured Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_number_of_notable_passive_skills","text":"# Notable Passive Skills","type":"pseudo"},{"id":"pseudo.pseudo_jewellery_elemental_quality","text":"+#% Quality to Elemental Damage Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_jewellery_caster_quality","text":"+#% Quality to Caster Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_jewellery_attack_quality","text":"+#% Quality to Attack Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_jewellery_defense_quality","text":"+#% Quality to Defence Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_jewellery_resource_quality","text":"+#% Quality to Life and Mana Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_jewellery_resistance_quality","text":"+#% Quality to Resistance Modifiers","type":"pseudo"},{"id":"pseudo.pseudo_jewellery_attribute_quality","text":"+#% Quality to Attribute Modifiers","type":"pseudo"}]},{"label":"Explicit","entries":[{"id":"explicit.stat_3299347043","text":"# to maximum Life","type":"explicit"},{"id":"explicit.stat_4220027924","text":"#% to Cold Resistance","type":"explicit"},{"id":"explicit.stat_3372524247","text":"#% to Fire Resistance","type":"explicit"},{"id":"explicit.stat_1671376347","text":"#% to Lightning Resistance","type":"explicit"},{"id":"explicit.stat_1050105434","text":"# to maximum Mana","type":"explicit"},{"id":"explicit.stat_3261801346","text":"# to Dexterity","type":"explicit"},{"id":"explicit.stat_328541901","text":"# to Intelligence","type":"explicit"},{"id":"explicit.stat_3489782002","text":"# to maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_2901986750","text":"#% to all Elemental Resistances","type":"explicit"},{"id":"explicit.stat_1509134228","text":"#% increased Physical Damage","type":"explicit"},{"id":"explicit.stat_3032590688","text":"Adds # to # Physical Damage to Attacks","type":"explicit"},{"id":"explicit.stat_4080418644","text":"# to Strength","type":"explicit"},{"id":"explicit.stat_2250533757","text":"#% increased Movement Speed","type":"explicit"},{"id":"explicit.stat_210067635","text":"#% increased Attack Speed (Local)","type":"explicit"},{"id":"explicit.stat_789117908","text":"#% increased Mana Regeneration Rate","type":"explicit"},{"id":"explicit.stat_803737631","text":"# to Accuracy Rating","type":"explicit"},{"id":"explicit.stat_4052037485","text":"# to maximum Energy Shield (Local)","type":"explicit"},{"id":"explicit.stat_3556824919","text":"#% to Global Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_2511217560","text":"#% increased Stun and Block Recovery","type":"explicit"},{"id":"explicit.stat_983749596","text":"#% increased maximum Life","type":"explicit"},{"id":"explicit.stat_1940865751","text":"Adds # to # Physical Damage (Local)","type":"explicit"},{"id":"explicit.stat_2923486259","text":"#% to Chaos Resistance","type":"explicit"},{"id":"explicit.stat_681332047","text":"#% increased Attack Speed","type":"explicit"},{"id":"explicit.stat_2974417149","text":"#% increased Spell Damage","type":"explicit"},{"id":"explicit.stat_3917489142","text":"#% increased Rarity of Items found","type":"explicit"},{"id":"explicit.stat_2891184298","text":"#% increased Cast Speed","type":"explicit"},{"id":"explicit.stat_587431675","text":"#% increased Global Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_1754445556","text":"Adds # to # Lightning Damage to Attacks","type":"explicit"},{"id":"explicit.stat_3325883026","text":"Regenerate # Life per second","type":"explicit"},{"id":"explicit.stat_4015621042","text":"#% increased Energy Shield (Local)","type":"explicit"},{"id":"explicit.stat_3962278098","text":"#% increased Fire Damage","type":"explicit"},{"id":"explicit.stat_1379411836","text":"# to all Attributes","type":"explicit"},{"id":"explicit.stat_124859000","text":"#% increased Evasion Rating (Local)","type":"explicit"},{"id":"explicit.stat_4067062424","text":"Adds # to # Cold Damage to Attacks","type":"explicit"},{"id":"explicit.stat_387439868","text":"#% increased Elemental Damage with Attack Skills","type":"explicit"},{"id":"explicit.stat_2482852589","text":"#% increased maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_3291658075","text":"#% increased Cold Damage","type":"explicit"},{"id":"explicit.stat_2144192055","text":"# to Evasion Rating","type":"explicit"},{"id":"explicit.stat_1062208444","text":"#% increased Armour (Local)","type":"explicit"},{"id":"explicit.stat_2375316951","text":"#% increased Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_1263695895","text":"#% increased Light Radius","type":"explicit"},{"id":"explicit.stat_3593843976","text":"#% of Physical Attack Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_3321629045","text":"#% increased Armour and Energy Shield (Local)","type":"explicit"},{"id":"explicit.stat_3336890334","text":"Adds # to # Lightning Damage (Local)","type":"explicit"},{"id":"explicit.stat_2517001139","text":"#% increased Stun Duration on Enemies","type":"explicit"},{"id":"explicit.stat_3695891184","text":"# Life gained on Kill","type":"explicit"},{"id":"explicit.stat_3484657501","text":"# to Armour (Local)","type":"explicit"},{"id":"explicit.stat_1573130764","text":"Adds # to # Fire Damage to Attacks","type":"explicit"},{"id":"explicit.stat_53045048","text":"# to Evasion Rating (Local)","type":"explicit"},{"id":"explicit.stat_809229260","text":"# to Armour","type":"explicit"},{"id":"explicit.stat_709508406","text":"Adds # to # Fire Damage (Local)","type":"explicit"},{"id":"explicit.stat_2451402625","text":"#% increased Armour and Evasion (Local)","type":"explicit"},{"id":"explicit.stat_624954515","text":"#% increased Global Accuracy Rating","type":"explicit"},{"id":"explicit.stat_1310194496","text":"#% increased Global Physical Damage","type":"explicit"},{"id":"explicit.stat_2231156303","text":"#% increased Lightning Damage","type":"explicit"},{"id":"explicit.stat_2748665614","text":"#% increased maximum Mana","type":"explicit"},{"id":"explicit.stat_1999113824","text":"#% increased Evasion and Energy Shield (Local)","type":"explicit"},{"id":"explicit.stat_3759663284","text":"#% increased Projectile Speed","type":"explicit"},{"id":"explicit.stat_1839076647","text":"#% increased Projectile Damage","type":"explicit"},{"id":"explicit.stat_3767873853","text":"Reflects # Physical Damage to Melee Attackers","type":"explicit"},{"id":"explicit.stat_4251717817","text":"#% increased Area Damage","type":"explicit"},{"id":"explicit.stat_2797971005","text":"# Life gained for each Enemy hit by your Attacks","type":"explicit"},{"id":"explicit.stat_737908626","text":"#% increased Critical Strike Chance for Spells","type":"explicit"},{"id":"explicit.stat_2866361420","text":"#% increased Armour","type":"explicit"},{"id":"explicit.stat_691932474","text":"# to Accuracy Rating (Local)","type":"explicit"},{"id":"explicit.stat_95249895","text":"#% more Monster Life","type":"explicit"},{"id":"explicit.stat_1037193709","text":"Adds # to # Cold Damage (Local)","type":"explicit"},{"id":"explicit.stat_1368271171","text":"# Mana gained on Kill","type":"explicit"},{"id":"explicit.stat_2106365538","text":"#% increased Evasion Rating","type":"explicit"},{"id":"explicit.stat_967627487","text":"#% increased Damage over Time","type":"explicit"},{"id":"explicit.stat_2154246560","text":"#% increased Damage","type":"explicit"},{"id":"explicit.stat_3237948413","text":"#% of Physical Attack Damage Leeched as Mana","type":"explicit"},{"id":"explicit.stat_2831165374","text":"Adds # to # Lightning Damage to Spells","type":"explicit"},{"id":"explicit.stat_1335054179","text":"#% chance to Ignite","type":"explicit"},{"id":"explicit.stat_474294393","text":"#% reduced Mana Cost of Skills","type":"explicit"},{"id":"explicit.stat_1002362373","text":"#% increased Melee Damage","type":"explicit"},{"id":"explicit.stat_1294118672","text":"#% increased Damage with Bleeding","type":"explicit"},{"id":"explicit.stat_821021828","text":"# Life gained for each Enemy hit by Attacks","type":"explicit"},{"id":"explicit.stat_2672805335","text":"#% increased Attack and Cast Speed","type":"explicit"},{"id":"explicit.stat_3639275092","text":"#% increased Attribute Requirements","type":"explicit"},{"id":"explicit.stat_884586851","text":"#% increased Quantity of Items found","type":"explicit"},{"id":"explicit.stat_1290399200","text":"#% increased Damage with Poison","type":"explicit"},{"id":"explicit.stat_1443060084","text":"#% reduced Enemy Stun Threshold","type":"explicit"},{"id":"explicit.stat_1890519597","text":"#% increased Monster Damage","type":"explicit"},{"id":"explicit.stat_2469416729","text":"Adds # to # Cold Damage to Spells","type":"explicit"},{"id":"explicit.stat_280731498","text":"#% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_2843100721","text":"# to Level of Socketed Gems","type":"explicit"},{"id":"explicit.stat_3441501978","text":"#% to Fire and Lightning Resistances","type":"explicit"},{"id":"explicit.stat_1923879260","text":"Attacks cannot cause Bleeding","type":"explicit"},{"id":"explicit.stat_2915988346","text":"#% to Fire and Cold Resistances","type":"explicit"},{"id":"explicit.stat_3604946673","text":"# to Level of Socketed Minion Gems","type":"explicit"},{"id":"explicit.stat_2309614417","text":"#% chance to Freeze","type":"explicit"},{"id":"explicit.stat_4277795662","text":"#% to Cold and Lightning Resistances","type":"explicit"},{"id":"explicit.stat_3416853625","text":"Monsters deal #% extra Physical Damage as Lightning","type":"explicit"},{"id":"explicit.stat_1913583994","text":"#% increased Monster Attack Speed","type":"explicit"},{"id":"explicit.stat_4253454700","text":"#% Chance to Block (Shields)","type":"explicit"},{"id":"explicit.stat_2488361432","text":"#% increased Monster Cast Speed","type":"explicit"},{"id":"explicit.stat_1175385867","text":"#% increased Burning Damage","type":"explicit"},{"id":"explicit.stat_736967255","text":"#% increased Chaos Damage","type":"explicit"},{"id":"explicit.stat_4249220643","text":"#% increased Attack Speed while Dual Wielding","type":"explicit"},{"id":"explicit.stat_2166444903","text":"#% Chance to Block Attack Damage while Dual Wielding","type":"explicit"},{"id":"explicit.stat_2011656677","text":"#% increased Poison Duration","type":"explicit"},{"id":"explicit.stat_3403461239","text":"Extra gore","type":"explicit"},{"id":"explicit.stat_1589917703","text":"Minions deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_538848803","text":"# to Strength and Dexterity","type":"explicit"},{"id":"explicit.stat_1086147743","text":"#% increased Ignite Duration on Enemies","type":"explicit"},{"id":"explicit.stat_2300185227","text":"# to Dexterity and Intelligence","type":"explicit"},{"id":"explicit.stat_1497673356","text":"Monsters deal #% extra Physical Damage as Fire","type":"explicit"},{"id":"explicit.stat_4237442815","text":"#% to Melee Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_4079888060","text":"# Added Passive Skills are Jewel Sockets","type":"explicit"},{"id":"explicit.stat_1000591322","text":"Area contains many Totems","type":"explicit"},{"id":"explicit.stat_2391261970","text":"Rare Monsters each have a Nemesis Mod","type":"explicit"},{"id":"explicit.stat_795138349","text":"#% chance to Poison on Hit","type":"explicit"},{"id":"explicit.stat_3873704640","text":"#% more Magic Monsters","type":"explicit"},{"id":"explicit.stat_770672621","text":"Minions have #% increased maximum Life","type":"explicit"},{"id":"explicit.stat_674553446","text":"Adds # to # Chaos Damage to Attacks","type":"explicit"},{"id":"explicit.stat_836936635","text":"Regenerate #% of Life per second","type":"explicit"},{"id":"explicit.stat_1535626285","text":"# to Strength and Intelligence","type":"explicit"},{"id":"explicit.stat_1133016593","text":"Adds # to # Fire Damage to Spells","type":"explicit"},{"id":"explicit.stat_2339757871","text":"#% increased Energy Shield Recharge Rate","type":"explicit"},{"id":"explicit.stat_700317374","text":"#% increased Amount Recovered","type":"explicit"},{"id":"explicit.stat_1714180526","text":"Players have Elemental Equilibrium","type":"explicit"},{"id":"explicit.stat_51994685","text":"#% increased Flask Life Recovery rate","type":"explicit"},{"id":"explicit.stat_3141070085","text":"#% increased Elemental Damage","type":"explicit"},{"id":"explicit.stat_3350803563","text":"Monsters Poison on Hit","type":"explicit"},{"id":"explicit.stat_1459321413","text":"#% increased Bleeding Duration","type":"explicit"},{"id":"explicit.stat_1813451228","text":"#% increased Attack Speed with One Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_124877078","text":"Unique Boss deals #% increased Damage","type":"explicit"},{"id":"explicit.stat_2109106920","text":"Unique Boss has #% increased Attack and Cast Speed","type":"explicit"},{"id":"explicit.stat_3793155082","text":"#% more Rare Monsters","type":"explicit"},{"id":"explicit.stat_829382474","text":"# to Level of Socketed Melee Gems","type":"explicit"},{"id":"explicit.stat_1514829491","text":"#% chance to Avoid being Frozen","type":"explicit"},{"id":"explicit.stat_1040269876","text":"Adds # to # Lightning Damage to Bow Attacks","type":"explicit"},{"id":"explicit.stat_444174528","text":"#% increased Attack Damage while Dual Wielding","type":"explicit"},{"id":"explicit.stat_3314142259","text":"#% increased Damage with Axes","type":"explicit"},{"id":"explicit.stat_3851254963","text":"#% increased Totem Damage","type":"explicit"},{"id":"explicit.stat_561307714","text":"#% Chance to Block Spell Damage","type":"explicit"},{"id":"explicit.stat_2941585404","text":"#% increased Trap Damage","type":"explicit"},{"id":"explicit.stat_1010549321","text":"#% increased Damage with One Handed Weapons","type":"explicit"},{"id":"explicit.stat_1538773178","text":"#% chance to Shock","type":"explicit"},{"id":"explicit.stat_406353061","text":"Monsters have #% chance to gain a Power Charge on Hit","type":"explicit"},{"id":"explicit.stat_979246511","text":"Gain #% of Physical Damage as Extra Cold Damage","type":"explicit"},{"id":"explicit.stat_4181072906","text":"Players have #% less Recovery Rate of Life and Energy Shield","type":"explicit"},{"id":"explicit.stat_1836374041","text":"#% increased Damage with Two Handed Weapons","type":"explicit"},{"id":"explicit.stat_2137912951","text":"#% increased Mine Damage","type":"explicit"},{"id":"explicit.stat_4055307827","text":"#% to Chaos Damage over Time Multiplier","type":"explicit"},{"id":"explicit.stat_2306522833","text":"#% increased Monster Movement Speed","type":"explicit"},{"id":"explicit.stat_3441651621","text":"# Physical Damage taken from Attack Hits","type":"explicit"},{"id":"explicit.stat_2227180465","text":"#% increased Mana Reserved","type":"explicit"},{"id":"explicit.stat_4139681126","text":"#% increased Dexterity","type":"explicit"},{"id":"explicit.stat_3561450806","text":"Area has increased monster variety","type":"explicit"},{"id":"explicit.stat_3550168289","text":"Area is inhabited by # additional Rogue Exile","type":"explicit"},{"id":"explicit.stat_3448216135","text":"Monsters deal #% extra Physical Damage as Cold","type":"explicit"},{"id":"explicit.stat_1519615863","text":"#% chance to cause Bleeding on Hit","type":"explicit"},{"id":"explicit.stat_915908446","text":"#% to Critical Strike Multiplier with Cold Skills","type":"explicit"},{"id":"explicit.stat_1708461270","text":"Monsters have #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_57326096","text":"#% to Monster Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_2753083623","text":"Monsters have #% increased Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_2307547323","text":"#% to Critical Strike Multiplier with Fire Skills","type":"explicit"},{"id":"explicit.stat_3040667106","text":"Unique Boss has #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_1588049749","text":"Monsters have #% increased Accuracy Rating","type":"explicit"},{"id":"explicit.stat_1309819744","text":"Monsters fire # additional Projectiles","type":"explicit"},{"id":"explicit.stat_322206271","text":"Monsters have #% chance to Avoid Elemental Ailments","type":"explicit"},{"id":"explicit.stat_2441475928","text":"#% to Critical Strike Multiplier with Lightning Skills","type":"explicit"},{"id":"explicit.stat_734614379","text":"#% increased Strength","type":"explicit"},{"id":"explicit.stat_272758639","text":"Players have #% less Armour","type":"explicit"},{"id":"explicit.stat_2549889921","text":"Players gain #% reduced Flask Charges","type":"explicit"},{"id":"explicit.stat_3527617737","text":"Has # Abyssal Sockets","type":"explicit"},{"id":"explicit.stat_1513447578","text":"#% increased Damage when on Low Life","type":"explicit"},{"id":"explicit.stat_3805075944","text":"#% increased Attack Speed while holding a Shield","type":"explicit"},{"id":"explicit.stat_1742567045","text":"Monsters have #% chance to gain a Frenzy Charge on Hit","type":"explicit"},{"id":"explicit.stat_174664100","text":"Minions have #% increased Movement Speed","type":"explicit"},{"id":"explicit.stat_3729221884","text":"Players have #% reduced Chance to Block","type":"explicit"},{"id":"explicit.stat_687813731","text":"Monsters have #% chance to gain an Endurance Charge on Hit","type":"explicit"},{"id":"explicit.stat_3736589033","text":"# to Total Mana Cost of Skills","type":"explicit"},{"id":"explicit.stat_3483999943","text":"#% chance to Avoid being Chilled","type":"explicit"},{"id":"explicit.stat_337935900","text":"Monsters take #% reduced Extra Damage from Critical Strikes","type":"explicit"},{"id":"explicit.stat_2669029667","text":"Added Small Passive Skills also grant: #% to Elemental Resistance","type":"explicit"},{"id":"explicit.stat_649025131","text":"#% increased Movement Speed when on Low Life","type":"explicit"},{"id":"explicit.stat_57434274","text":"#% increased Experience gain (Maps)","type":"explicit"},{"id":"explicit.stat_2250780084","text":"Added Small Passive Skills also grant: #% to Lightning Resistance","type":"explicit"},{"id":"explicit.stat_1811604576","text":"Added Small Passive Skills also grant: #% to Chaos Resistance","type":"explicit"},{"id":"explicit.stat_2709692542","text":"Added Small Passive Skills also grant: #% to Cold Resistance","type":"explicit"},{"id":"explicit.stat_1950806024","text":"#% to Cold Damage over Time Multiplier","type":"explicit"},{"id":"explicit.stat_1790411851","text":"Added Small Passive Skills also grant: #% to Fire Resistance","type":"explicit"},{"id":"explicit.stat_2312028586","text":"Players have #% less Area of Effect","type":"explicit"},{"id":"explicit.stat_820939409","text":"# Mana gained for each Enemy hit by your Attacks","type":"explicit"},{"id":"explicit.stat_3721672021","text":"Added Small Passive Skills also grant: Regenerate #% of Life per Second","type":"explicit"},{"id":"explicit.stat_1452809865","text":"#% increased Flask Charges gained","type":"explicit"},{"id":"explicit.stat_97115311","text":"Magic Monster Packs each have a Bloodline Mod","type":"explicit"},{"id":"explicit.stat_656461285","text":"#% increased Intelligence","type":"explicit"},{"id":"explicit.stat_3258414199","text":"Added Small Passive Skills also grant: # to Strength","type":"explicit"},{"id":"explicit.stat_83050999","text":"#% increased Damage with Swords","type":"explicit"},{"id":"explicit.stat_1719521705","text":"Added Small Passive Skills also grant: #% increased Damage","type":"explicit"},{"id":"explicit.stat_3293699237","text":"#% increased Attack Speed with Swords","type":"explicit"},{"id":"explicit.stat_2643685329","text":"Added Small Passive Skills also grant: # to Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_3819827377","text":"Added Small Passive Skills also grant: # to Maximum Life","type":"explicit"},{"id":"explicit.stat_2764017512","text":"Monsters reflect #% of Elemental Damage","type":"explicit"},{"id":"explicit.stat_4291461939","text":"Regenerate # Mana per second","type":"explicit"},{"id":"explicit.stat_1104796138","text":"#% increased Critical Strike Chance with Fire Skills","type":"explicit"},{"id":"explicit.stat_1515657623","text":"# to Maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_173226756","text":"#% increased Recovery rate","type":"explicit"},{"id":"explicit.stat_839186746","text":"+#% Monster Physical Damage Reduction","type":"explicit"},{"id":"explicit.stat_4036575250","text":"Added Small Passive Skills also grant: # to All Attributes","type":"explicit"},{"id":"explicit.stat_2554466725","text":"Added Small Passive Skills also grant: # to Armour","type":"explicit"},{"id":"explicit.stat_724930776","text":"Added Small Passive Skills also grant: # to Intelligence","type":"explicit"},{"id":"explicit.stat_3668351662","text":"#% increased Shock Duration on Enemies","type":"explicit"},{"id":"explicit.stat_558910024","text":"Players are Cursed with Elemental Weakness, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_3382807662","text":"#% to Fire Damage over Time Multiplier","type":"explicit"},{"id":"explicit.stat_1760576992","text":"Adds # to # Physical Damage to Bow Attacks","type":"explicit"},{"id":"explicit.stat_1662717006","text":"Adds # to # Cold Damage to Spells and Attacks","type":"explicit"},{"id":"explicit.stat_2215002568","text":"Monsters have a #% chance to avoid Poison, Blind, and Bleeding","type":"explicit"},{"id":"explicit.stat_3120164895","text":"Adds # to # Fire Damage to Bow Attacks","type":"explicit"},{"id":"explicit.stat_3376488707","text":"#% maximum Player Resistances","type":"explicit"},{"id":"explicit.stat_138741818","text":"#% Chance to Block Spell Damage while Dual Wielding","type":"explicit"},{"id":"explicit.stat_3796523155","text":"#% less effect of Curses on Monsters","type":"explicit"},{"id":"explicit.stat_1186596295","text":"#% increased Critical Strike Chance with Lightning Skills","type":"explicit"},{"id":"explicit.stat_2474836297","text":"Added Small Passive Skills also grant: #% increased Mana Regeneration Rate","type":"explicit"},{"id":"explicit.stat_2835888248","text":"Players have Point Blank","type":"explicit"},{"id":"explicit.stat_3182498570","text":"#% increased Movement Speed during Flask effect","type":"explicit"},{"id":"explicit.stat_215124030","text":"Adds # to # Cold Damage to Bow Attacks","type":"explicit"},{"id":"explicit.stat_365540634","text":"+#% Monster Chaos Resistance","type":"explicit"},{"id":"explicit.stat_4100161067","text":"Added Small Passive Skills also grant: # to Evasion","type":"explicit"},{"id":"explicit.stat_2300399854","text":"Adds # to # Chaos Damage to Spells","type":"explicit"},{"id":"explicit.stat_3550868361","text":"#% increased Attack Speed with Axes","type":"explicit"},{"id":"explicit.stat_2749862839","text":"#% chance to Dodge Attack Hits","type":"explicit"},{"id":"explicit.stat_1782086450","text":"#% faster start of Energy Shield Recharge","type":"explicit"},{"id":"explicit.stat_2090413987","text":"Added Small Passive Skills also grant: # to Dexterity","type":"explicit"},{"id":"explicit.stat_670153687","text":"#% to Critical Strike Multiplier with One Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_4061558269","text":"#% Chance to Block Attack Damage while holding a Shield","type":"explicit"},{"id":"explicit.stat_3181974858","text":"#% chance to Cause Monsters to Flee","type":"explicit"},{"id":"explicit.stat_938645499","text":"#% Chance to Block Spell Damage while holding a Shield","type":"explicit"},{"id":"explicit.stat_1073942215","text":"#% increased Freeze Duration on Enemies","type":"explicit"},{"id":"explicit.stat_339179093","text":"# to Level of Socketed Fire Gems","type":"explicit"},{"id":"explicit.stat_227523295","text":"# to Maximum Power Charges","type":"explicit"},{"id":"explicit.stat_2452998583","text":"# to Level of Socketed Aura Gems","type":"explicit"},{"id":"explicit.stat_977908611","text":"#% chance to Knock Enemies Back on hit","type":"explicit"},{"id":"explicit.stat_1569407745","text":"#% to Critical Strike Multiplier with Elemental Skills","type":"explicit"},{"id":"explicit.stat_2546185479","text":"#% to Critical Strike Multiplier while Dual Wielding","type":"explicit"},{"id":"explicit.stat_1766142294","text":"#% increased Spell Damage while holding a Shield","type":"explicit"},{"id":"explicit.stat_3741323227","text":"#% increased Flask Effect Duration","type":"explicit"},{"id":"explicit.stat_3319896421","text":"Gain #% of Physical Damage as Extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_3738001379","text":"#% chance to gain a Flask Charge when you deal a Critical Strike","type":"explicit"},{"id":"explicit.stat_686254215","text":"#% increased Totem Life","type":"explicit"},{"id":"explicit.stat_1366534040","text":"Players are Cursed with Vulnerability, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_349586058","text":"Area has patches of Chilled Ground","type":"explicit"},{"id":"explicit.stat_1393393937","text":"#% increased Attack Damage while holding a Shield","type":"explicit"},{"id":"explicit.stat_1809006367","text":"Totems gain #% to all Elemental Resistances","type":"explicit"},{"id":"explicit.stat_1533563525","text":"#% of Physical Damage Converted to Fire Damage","type":"explicit"},{"id":"explicit.stat_696707743","text":"#% chance to Dodge Spell Hits","type":"explicit"},{"id":"explicit.stat_295075366","text":"#% increased Strength Requirement","type":"explicit"},{"id":"explicit.stat_3377888098","text":"#% increased Skill Effect Duration","type":"explicit"},{"id":"explicit.stat_1054098949","text":"+#% Monster Elemental Resistance","type":"explicit"},{"id":"explicit.stat_3591635592","text":"Immunity to Freeze and Chill during Flask effect\nRemoves Freeze and Chill on use","type":"explicit"},{"id":"explicit.stat_3183973644","text":"Monsters' skills Chain # additional times","type":"explicit"},{"id":"explicit.stat_799271621","text":"Area contains two Unique Bosses","type":"explicit"},{"id":"explicit.stat_2527686725","text":"#% increased Effect of Shock","type":"explicit"},{"id":"explicit.stat_211381198","text":"# Energy Shield gained for each Enemy hit by your Attacks","type":"explicit"},{"id":"explicit.stat_1041951480","text":"Monsters cannot be Stunned","type":"explicit"},{"id":"explicit.stat_274716455","text":"#% to Critical Strike Multiplier for Spells","type":"explicit"},{"id":"explicit.stat_1917910910","text":"#% increased Attack Speed with Two Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_1423639565","text":"Minions have #% to all Elemental Resistances","type":"explicit"},{"id":"explicit.stat_1959158336","text":"Unique Boss has #% increased Life","type":"explicit"},{"id":"explicit.stat_388617051","text":"#% increased Charges used","type":"explicit"},{"id":"explicit.stat_3023957681","text":"#% chance to gain Onslaught for 4 seconds on Kill","type":"explicit"},{"id":"explicit.stat_2223678961","text":"Adds # to # Chaos Damage (Local)","type":"explicit"},{"id":"explicit.stat_2435536961","text":"Adds # to # Physical Damage to Spells","type":"explicit"},{"id":"explicit.stat_1651847244","text":"Player chance to Dodge is Lucky","type":"explicit"},{"id":"explicit.stat_3577222856","text":"Area has patches of desecrated ground","type":"explicit"},{"id":"explicit.stat_928701213","text":"Socketed Gems are Supported by Level # Faster Attacks","type":"explicit"},{"id":"explicit.stat_816367946","text":"All Monster Damage from Hits always Ignites","type":"explicit"},{"id":"explicit.stat_3196823591","text":"#% increased Charge Recovery","type":"explicit"},{"id":"explicit.stat_2381842786","text":"#% increased Critical Strike Chance with One Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_1106651798","text":"Monsters cannot be Taunted","type":"explicit"},{"id":"explicit.stat_798009319","text":"Monsters' Action Speed cannot be modified to below base value","type":"explicit"},{"id":"explicit.stat_1678690824","text":"#% increased Spell Damage while Dual Wielding","type":"explicit"},{"id":"explicit.stat_133340941","text":"Area has patches of Burning Ground","type":"explicit"},{"id":"explicit.stat_1256719186","text":"#% increased Duration","type":"explicit"},{"id":"explicit.stat_2524254339","text":"Culling Strike","type":"explicit"},{"id":"explicit.stat_369494213","text":"Gain #% of Physical Damage as Extra Fire Damage","type":"explicit"},{"id":"explicit.stat_1880071428","text":"#% increased effect of Non-Curse Auras from your Skills","type":"explicit"},{"id":"explicit.stat_252507949","text":"#% to Critical Strike Multiplier with Two Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_122525378","text":"Immunity to Bleeding during Flask effect\nRemoves Bleeding on use","type":"explicit"},{"id":"explicit.stat_472520716","text":"#% of Damage taken gained as Mana over 4 seconds when Hit","type":"explicit"},{"id":"explicit.stat_379328644","text":"#% increased Damage with Wands","type":"explicit"},{"id":"explicit.stat_318953428","text":"#% chance to Blind Enemies on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_1314617696","text":"#% to Physical Damage over Time Multiplier","type":"explicit"},{"id":"explicit.stat_1199429645","text":"#% increased Melee Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_3720627346","text":"#% increased Attack Speed with Wands","type":"explicit"},{"id":"explicit.stat_3702513529","text":"#% increased Attack Critical Strike Chance while Dual Wielding","type":"explicit"},{"id":"explicit.stat_1476643878","text":"#% increased Cast Speed with Fire Skills","type":"explicit"},{"id":"explicit.stat_2023107756","text":"Recover #% of Life on Kill","type":"explicit"},{"id":"explicit.stat_1412217137","text":"#% increased Flask Mana Recovery rate","type":"explicit"},{"id":"explicit.stat_3496944181","text":"#% increased Spell Damage while wielding a Staff","type":"explicit"},{"id":"explicit.stat_1445684883","text":"Reflects # to # Physical Damage to Attackers on Block","type":"explicit"},{"id":"explicit.stat_3942946753","text":"Regenerate #% of Life per second while on Low Life","type":"explicit"},{"id":"explicit.stat_2122183138","text":"# Mana gained when you Block","type":"explicit"},{"id":"explicit.stat_1896971621","text":"#% increased Mine Throwing Speed","type":"explicit"},{"id":"explicit.stat_3562241510","text":"Gain #% of Elemental Damage as Extra Chaos Damage during effect","type":"explicit"},{"id":"explicit.stat_118398748","text":"#% increased Trap Throwing Speed","type":"explicit"},{"id":"explicit.stat_3152982863","text":"Minions deal # to # additional Cold Damage","type":"explicit"},{"id":"explicit.stat_587175996","text":"Area is a large Maze","type":"explicit"},{"id":"explicit.stat_2428829184","text":"# to maximum number of Skeletons","type":"explicit"},{"id":"explicit.stat_2695354435","text":"#% increased Global Evasion Rating when on Low Life","type":"explicit"},{"id":"explicit.stat_2818167778","text":"Gain #% of Physical Damage as Extra Chaos Damage during effect","type":"explicit"},{"id":"explicit.stat_1788635023","text":"#% increased Cast Speed with Lightning Skills","type":"explicit"},{"id":"explicit.stat_2633745731","text":"#% increased total Recovery per second from Life Leech","type":"explicit"},{"id":"explicit.stat_4126210832","text":"Hits can't be Evaded","type":"explicit"},{"id":"explicit.stat_581625445","text":"#% increased Movement Speed while Ignited","type":"explicit"},{"id":"explicit.stat_3375935924","text":"Minions have #% increased Attack Speed","type":"explicit"},{"id":"explicit.stat_3759735052","text":"#% increased Attack Speed with Bows","type":"explicit"},{"id":"explicit.stat_1172029298","text":"Minions deal # to # additional Physical Damage","type":"explicit"},{"id":"explicit.stat_2326202293","text":"Players are Cursed with Temporal Chains, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_2304729532","text":"Implicit Modifier magnitudes are doubled","type":"explicit"},{"id":"explicit.stat_2382196858","text":"#% increased Cast Speed while Dual Wielding","type":"explicit"},{"id":"explicit.stat_764295120","text":"#% increased Critical Strike Chance with Two Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_439950087","text":"#% increased Critical Strike Chance with Elemental Skills","type":"explicit"},{"id":"explicit.stat_2388360415","text":"Socketed Gems are Supported by Level # Concentrated Effect","type":"explicit"},{"id":"explicit.stat_2479683456","text":"Minions Regenerate #% of Life per second","type":"explicit"},{"id":"explicit.stat_3855016469","text":"You take #% reduced Extra Damage from Critical Strikes","type":"explicit"},{"id":"explicit.stat_1545858329","text":"# to Level of all Lightning Spell Skill Gems","type":"explicit"},{"id":"explicit.stat_2133341901","text":"#% of Physical Damage Converted to Cold Damage","type":"explicit"},{"id":"explicit.stat_1069260037","text":"#% increased Damage with Claws","type":"explicit"},{"id":"explicit.stat_3586984690","text":"#% increased Damage with Daggers","type":"explicit"},{"id":"explicit.stat_2538566497","text":"#% increased Attack Speed with Daggers","type":"explicit"},{"id":"explicit.stat_644456512","text":"#% reduced Flask Charges used","type":"explicit"},{"id":"explicit.stat_4103440490","text":"Players are Cursed with Enfeeble, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_2027269580","text":"# to Level of Socketed Bow Gems","type":"explicit"},{"id":"explicit.stat_1421645223","text":"#% increased Attack Speed with Claws","type":"explicit"},{"id":"explicit.stat_3393547195","text":"#% increased Movement Speed when on Full Life","type":"explicit"},{"id":"explicit.stat_2066542501","text":"#% increased Cast Speed while wielding a Staff","type":"explicit"},{"id":"explicit.stat_3691695237","text":"# to Level of Socketed Curse Gems","type":"explicit"},{"id":"explicit.stat_3464419871","text":"Monsters reflect #% of Physical Damage","type":"explicit"},{"id":"explicit.stat_3485067555","text":"#% increased Chill Duration on Enemies","type":"explicit"},{"id":"explicit.stat_3337344042","text":"#% increased Critical Strike Chance with Cold Skills","type":"explicit"},{"id":"explicit.stat_2223640518","text":"Socketed Gems are supported by Level # Blind","type":"explicit"},{"id":"explicit.stat_2120297997","text":"#% Chance to Block Spell Damage while wielding a Staff","type":"explicit"},{"id":"explicit.stat_490098963","text":"#% of Physical Damage Converted to Chaos Damage","type":"explicit"},{"id":"explicit.stat_2530372417","text":"#% Chance to Block Attack Damage","type":"explicit"},{"id":"explicit.stat_1585344030","text":"#% increased Attack Speed if you've dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_2397408229","text":"Rampage","type":"explicit"},{"id":"explicit.stat_1341148741","text":"#% of Chaos Damage Leeched as Life during Flask effect","type":"explicit"},{"id":"explicit.stat_3885634897","text":"#% chance to Poison on Hit (Local)","type":"explicit"},{"id":"explicit.stat_1478653032","text":"#% reduced Effect of Chill on you","type":"explicit"},{"id":"explicit.stat_3289633055","text":"Socketed Gems have #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_1783006896","text":"#% chance to Avoid being Ignited","type":"explicit"},{"id":"explicit.stat_3964634628","text":"Adds # to # Fire Damage to Spells and Attacks","type":"explicit"},{"id":"explicit.stat_3240769289","text":"#% of Physical Damage Converted to Lightning Damage","type":"explicit"},{"id":"explicit.stat_2202161594","text":"Slaying Enemies close together has a #% chance to attract monsters from Beyond","type":"explicit"},{"id":"explicit.stat_4078695","text":"# to Maximum Frenzy Charges","type":"explicit"},{"id":"explicit.stat_1826802197","text":"#% chance to gain a Frenzy Charge on Kill","type":"explicit"},{"id":"explicit.stat_1089165168","text":"Primordial","type":"explicit"},{"id":"explicit.stat_3531280422","text":"Adds # to # Chaos Damage","type":"explicit"},{"id":"explicit.stat_4000101551","text":"Minions have #% increased Cast Speed","type":"explicit"},{"id":"explicit.stat_4235886357","text":"Reflects # Cold Damage to Melee Attackers","type":"explicit"},{"id":"explicit.stat_4188894176","text":"#% increased Damage with Bows","type":"explicit"},{"id":"explicit.stat_2885144362","text":"Adds # to # Lightning Damage to Spells and Attacks","type":"explicit"},{"id":"explicit.stat_1394963553","text":"#% increased Attack Speed with Staves","type":"explicit"},{"id":"explicit.stat_2763429652","text":"#% chance to Maim on Hit","type":"explicit"},{"id":"explicit.stat_3814560373","text":"#% increased Physical Damage with Swords","type":"explicit"},{"id":"explicit.stat_3351784991","text":"Minions deal # to # additional Fire Damage","type":"explicit"},{"id":"explicit.stat_2101383955","text":"Damage Penetrates #% Elemental Resistances","type":"explicit"},{"id":"explicit.stat_818778753","text":"Damage Penetrates #% Lightning Resistance","type":"explicit"},{"id":"explicit.stat_3407849389","text":"#% increased Effect of Curses on you","type":"explicit"},{"id":"explicit.stat_219391121","text":"Gain #% of Physical Damage as Extra Lightning Damage","type":"explicit"},{"id":"explicit.stat_1334465904","text":"#% increased Physical Damage with One Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_513681673","text":"#% chance to Cause Bleeding on Critical Strike","type":"explicit"},{"id":"explicit.stat_2805714016","text":"#% increased Damage with Hits against Chilled Enemies","type":"explicit"},{"id":"explicit.stat_2999796964","text":"Curses have #% reduced effect on Monsters","type":"explicit"},{"id":"explicit.stat_3594640492","text":"Regenerate #% of Energy Shield per second","type":"explicit"},{"id":"explicit.stat_1871765599","text":"#% chance to Avoid being Shocked","type":"explicit"},{"id":"explicit.stat_4124805414","text":"#% to maximum Chance to Block Attack Damage","type":"explicit"},{"id":"explicit.stat_2930653471","text":"Minions deal # to # Added Lightning Damage","type":"explicit"},{"id":"explicit.stat_2889601781","text":"Minions deal # to # additional Chaos Damage","type":"explicit"},{"id":"explicit.stat_3720936304","text":"Socketed Gems are Supported by Level # Increased Area of Effect","type":"explicit"},{"id":"explicit.stat_742529963","text":"Bow Attacks fire an additional Arrow","type":"explicit"},{"id":"explicit.stat_1122134690","text":"Socketed Gems are Supported by Level # Trap","type":"explicit"},{"id":"explicit.stat_4154059009","text":"Monsters are Hexproof","type":"explicit"},{"id":"explicit.stat_1910157106","text":"Players cannot Regenerate Life, Mana or Energy Shield","type":"explicit"},{"id":"explicit.stat_30642521","text":"You can apply one fewer Curse","type":"explicit"},{"id":"explicit.stat_1526933524","text":"Instant Recovery","type":"explicit"},{"id":"explicit.stat_251342217","text":"Adds Knockback to Melee Attacks during Flask effect","type":"explicit"},{"id":"explicit.stat_1493091477","text":"Has no Sockets","type":"explicit"},{"id":"explicit.stat_3853018505","text":"#% increased Physical Damage taken","type":"explicit"},{"id":"explicit.stat_728267040","text":"Found Items have a #% chance to drop Corrupted in Area","type":"explicit"},{"id":"explicit.stat_446733281","text":"# to Level of Socketed Spell Gems","type":"explicit"},{"id":"explicit.stat_2355312681","text":"Monsters are Immune to randomly chosen Elemental Ailments or Stun","type":"explicit"},{"id":"explicit.stat_1341845920","text":"Monsters Reflect Hexes","type":"explicit"},{"id":"explicit.stat_2858921304","text":"#% chance to gain a Flask Charge when you deal a Critical Strike","type":"explicit"},{"id":"explicit.stat_41394014","text":"Monsters' Melee Attacks apply random Hexes on Hit","type":"explicit"},{"id":"explicit.stat_1072119541","text":"#% increased Damage if you've Killed Recently","type":"explicit"},{"id":"explicit.stat_3005472710","text":"#% chance to Avoid Elemental Ailments","type":"explicit"},{"id":"explicit.stat_655278200","text":"Unique Boss drops an additional Map","type":"explicit"},{"id":"explicit.stat_3666934677","text":"#% increased Experience gain","type":"explicit"},{"id":"explicit.stat_3660039923","text":"#% increased Cast Speed while Ignited","type":"explicit"},{"id":"explicit.stat_2047819517","text":"#% increased Attack Speed while Ignited","type":"explicit"},{"id":"explicit.stat_2018035324","text":"# Life gained for each Enemy hit by your Spells","type":"explicit"},{"id":"explicit.stat_3662336899","text":"Recharges # Charge when you take a Critical Strike","type":"explicit"},{"id":"explicit.stat_3970396418","text":"Mercury Footprints","type":"explicit"},{"id":"explicit.stat_4262448838","text":"#% chance to Avoid being Stunned","type":"explicit"},{"id":"explicit.stat_3501769159","text":"#% increased Melee Physical Damage while holding a Shield","type":"explicit"},{"id":"explicit.stat_1334060246","text":"Adds # to # Lightning Damage","type":"explicit"},{"id":"explicit.stat_1652515349","text":"# to maximum number of Raised Zombies","type":"explicit"},{"id":"explicit.stat_1645459191","text":"# to Level of Socketed Cold Gems","type":"explicit"},{"id":"explicit.stat_2501237765","text":"Socketed Gems are supported by Level # Multistrike","type":"explicit"},{"id":"explicit.stat_3470876581","text":"# to Evasion Rating while on Low Life","type":"explicit"},{"id":"explicit.stat_2056783069","text":"#% increased Physical Damage with Two Handed Melee Weapons","type":"explicit"},{"id":"explicit.stat_3166317791","text":"#% chance to Gain Unholy Might for 4 seconds on Melee Kill","type":"explicit"},{"id":"explicit.stat_172852114","text":"#% of Physical Attack Damage Leeched as Mana per Blue Socket","type":"explicit"},{"id":"explicit.stat_1181419800","text":"#% increased Damage with Maces or Sceptres","type":"explicit"},{"id":"explicit.stat_1195793677","text":"Immunity to Ignite during Flask effect\nRemoves Burning on use","type":"explicit"},{"id":"explicit.stat_2881111359","text":"#% Chance to Block Spell Damage (Legacy)","type":"explicit"},{"id":"explicit.stat_1479533453","text":"# uses remaining","type":"explicit"},{"id":"explicit.stat_2899095498","text":"Nearby Enemies are Intimidated","type":"explicit"},{"id":"explicit.stat_2553656203","text":"Monsters have a #% chance to cause Elemental Ailments on Hit","type":"explicit"},{"id":"explicit.stat_3811191316","text":"Minions have #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_2515515064","text":"#% increased Attack Speed with Maces or Sceptres","type":"explicit"},{"id":"explicit.stat_895264825","text":"#% increased Area of Effect of Aura Skills","type":"explicit"},{"id":"explicit.stat_734823525","text":"#% increased Evasion Rating while moving","type":"explicit"},{"id":"explicit.stat_3338298622","text":"#% increased Frenzy Charge Duration","type":"explicit"},{"id":"explicit.stat_591105508","text":"# to Level of all Fire Spell Skill Gems","type":"explicit"},{"id":"explicit.stat_1064331314","text":"#% to Cold Resistance when Socketed with a Green Gem","type":"explicit"},{"id":"explicit.stat_3051845758","text":"#% to Fire Resistance when Socketed with a Red Gem","type":"explicit"},{"id":"explicit.stat_1955882986","text":"Regenerate # Life over 1 second when you Cast a Spell","type":"explicit"},{"id":"explicit.stat_289814996","text":"#% to Lightning Resistance when Socketed with a Blue Gem","type":"explicit"},{"id":"explicit.stat_211836731","text":"All Sockets are White","type":"explicit"},{"id":"explicit.stat_3374054207","text":"Minions have #% Chance to Block Attack Damage","type":"explicit"},{"id":"explicit.stat_2378288719","text":"Area becomes fatal after some time","type":"explicit"},{"id":"explicit.stat_2387423236","text":"Adds # to # Cold Damage","type":"explicit"},{"id":"explicit.stat_1612163368","text":"#% increased Cast Speed while holding a Shield","type":"explicit"},{"id":"explicit.stat_4043416969","text":"# to Level of Socketed Lightning Gems","type":"explicit"},{"id":"explicit.stat_3268519799","text":"Transfiguration of Soul","type":"explicit"},{"id":"explicit.stat_1793666115","text":"Immunity to Shock during Flask effect\nRemoves Shock on use","type":"explicit"},{"id":"explicit.stat_3899352861","text":"#% increased maximum Life, Mana and Global Energy Shield","type":"explicit"},{"id":"explicit.stat_3457143479","text":"Chests have #% increased Item Rarity","type":"explicit"},{"id":"explicit.stat_928238845","text":"#% increased Cast Speed with Cold Skills","type":"explicit"},{"id":"explicit.stat_4016885052","text":"Socketed Gems fire an additional Projectile","type":"explicit"},{"id":"explicit.stat_2159994279","text":"Players have #% increased Cooldown Recovery Rate for Movement Skills","type":"explicit"},{"id":"explicit.stat_376585490","text":"Monsters have #% chance to Avoid Ailments","type":"explicit"},{"id":"explicit.stat_3854949926","text":"#% increased Movement Speed if you haven't taken Damage Recently","type":"explicit"},{"id":"explicit.stat_2169938251","text":"Socketed Gems are Supported by Level # Faster Casting","type":"explicit"},{"id":"explicit.stat_1618339429","text":"#% chance to be Ignited","type":"explicit"},{"id":"explicit.stat_350598685","text":"# to Weapon Range","type":"explicit"},{"id":"explicit.stat_2689259705","text":"Final Boss drops higher Level Items","type":"explicit"},{"id":"explicit.stat_455556407","text":"Damage Penetrates #% Elemental Resistance if you haven't Killed Recently","type":"explicit"},{"id":"explicit.stat_321077055","text":"Adds # to # Fire Damage","type":"explicit"},{"id":"explicit.stat_425242359","text":"#% of Physical Damage from Hits taken as Lightning Damage","type":"explicit"},{"id":"explicit.stat_2067062068","text":"Projectiles Pierce # additional Targets","type":"explicit"},{"id":"explicit.stat_2605850929","text":"Socketed Gems have Elemental Equilibrium","type":"explicit"},{"id":"explicit.stat_3303551725","text":"Restless Dead","type":"explicit"},{"id":"explicit.stat_1384864963","text":"Regenerate # Life per second per Level","type":"explicit"},{"id":"explicit.stat_2808735733","text":"Area contains a Large Chest","type":"explicit"},{"id":"explicit.stat_3278968597","text":"#% chance to Dodge Attack and Spell Hits if you've\nbeen Hit Recently","type":"explicit"},{"id":"explicit.stat_832404842","text":"#% reduced Enemy Stun Threshold with this Weapon","type":"explicit"},{"id":"explicit.stat_2484223218","text":"Unique Boss gives #% increased Experience","type":"explicit"},{"id":"explicit.stat_2787733863","text":"Adds # to # Lightning Damage to Wand Attacks","type":"explicit"},{"id":"explicit.stat_828179689","text":"#% increased Effect of Chill","type":"explicit"},{"id":"explicit.stat_1670623917","text":"Immune to Curses during Flask effect\nRemoves Curses on use","type":"explicit"},{"id":"explicit.stat_2918708827","text":"#% chance to gain Phasing for 4 seconds on Kill","type":"explicit"},{"id":"explicit.stat_2264295449","text":"# to Melee Strike Range","type":"explicit"},{"id":"explicit.stat_969865219","text":"#% increased Damage taken while on Full Energy Shield","type":"explicit"},{"id":"explicit.stat_45546355","text":"Area is inhabited by Skeletons","type":"explicit"},{"id":"explicit.stat_279227559","text":"#% increased Movement Speed if you've Killed Recently","type":"explicit"},{"id":"explicit.stat_2557943734","text":"Added Small Passive Skills grant Nothing","type":"explicit"},{"id":"explicit.stat_3246076198","text":"Area has patches of Shocked Ground which increase Damage taken by #%","type":"explicit"},{"id":"explicit.stat_2366940416","text":"#% to Chaos Resistance when on Low Life","type":"explicit"},{"id":"explicit.stat_3374165039","text":"#% increased Totem Placement speed","type":"explicit"},{"id":"explicit.stat_881645355","text":"Transfiguration of Body","type":"explicit"},{"id":"explicit.stat_4077035099","text":"Passives in Radius can be Allocated without being connected to your tree","type":"explicit"},{"id":"explicit.stat_2228279620","text":"Socketed Gems are Supported by Level # Poison","type":"explicit"},{"id":"explicit.stat_4095671657","text":"#% to maximum Fire Resistance","type":"explicit"},{"id":"explicit.stat_1152934561","text":"Temporal Chains has #% reduced Effect on you","type":"explicit"},{"id":"explicit.stat_3235814433","text":"# to Level of all Raise Spectre Gems","type":"explicit"},{"id":"explicit.stat_821241191","text":"#% increased Life Recovery from Flasks","type":"explicit"},{"id":"explicit.stat_2962840349","text":"Socketed Gems are Supported by Level # Spell Totem","type":"explicit"},{"id":"explicit.stat_567971948","text":"1 Added Passive Skill is Vicious Skewering","type":"explicit"},{"id":"explicit.stat_3603666270","text":"#% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently","type":"explicit"},{"id":"explicit.stat_2561836520","text":"Regenerate # Energy Shield per second","type":"explicit"},{"id":"explicit.stat_3676141501","text":"#% to maximum Cold Resistance","type":"explicit"},{"id":"explicit.stat_1174076861","text":"#% increased Cast Speed if you've dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_1541516339","text":"#% increased Movement Speed per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_665823128","text":"#% chance to gain Onslaught for 4 seconds on Kill","type":"explicit"},{"id":"explicit.stat_310246444","text":"#% increased Damage while Leeching","type":"explicit"},{"id":"explicit.stat_1101206134","text":"#% Chance to Block Spell Damage if you were Damaged by a Hit Recently","type":"explicit"},{"id":"explicit.stat_3398283493","text":"Attacks with this Weapon Penetrate #% Fire Resistance","type":"explicit"},{"id":"explicit.stat_3086156145","text":"Adds # Passive Skills","type":"explicit"},{"id":"explicit.stat_2731249891","text":"#% of Fire Damage Converted to Chaos Damage","type":"explicit"},{"id":"explicit.stat_2042405614","text":"# Life per 4 Dexterity","type":"explicit"},{"id":"explicit.stat_2571899044","text":"Transfiguration of Mind","type":"explicit"},{"id":"explicit.stat_852195286","text":"#% Chance to Block Attack Damage if you were Damaged by a Hit Recently","type":"explicit"},{"id":"explicit.stat_2911442053","text":"Minions have #% chance to Taunt on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_504850499","text":"Area contains an extra Harbinger","type":"explicit"},{"id":"explicit.stat_507075051","text":"# Mana per 4 Strength","type":"explicit"},{"id":"explicit.stat_125218179","text":"# to maximum number of Spectres","type":"explicit"},{"id":"explicit.stat_4087089130","text":"#% increased Damage with Staves","type":"explicit"},{"id":"explicit.stat_13669281","text":"Socketed Gems are Supported by Level # Hypothermia","type":"explicit"},{"id":"explicit.stat_2196657026","text":"# Accuracy Rating per 2 Intelligence","type":"explicit"},{"id":"explicit.stat_2383797932","text":"Adds # to # Cold Damage to Wand Attacks","type":"explicit"},{"id":"explicit.stat_284496119","text":"Monster Level: #","type":"explicit"},{"id":"explicit.stat_1740229525","text":"Attacks with this Weapon Penetrate #% Cold Resistance","type":"explicit"},{"id":"explicit.stat_2387539034","text":"Attacks with this Weapon Penetrate #% Lightning Resistance","type":"explicit"},{"id":"explicit.stat_962725504","text":"#% additional Elemental Resistances during Flask effect","type":"explicit"},{"id":"explicit.stat_1939202111","text":"#% increased Critical Strike Chance against Blinded Enemies","type":"explicit"},{"id":"explicit.stat_2422197812","text":"Left ring slot: You and your Minions take #% reduced Reflected Elemental Damage","type":"explicit"},{"id":"explicit.stat_1357244124","text":"Right ring slot: You and your Minions take #% reduced Reflected Physical Damage","type":"explicit"},{"id":"explicit.stat_1661151735","text":"Minions have # to Accuracy Rating","type":"explicit"},{"id":"explicit.stat_744082851","text":"#% of Chaos Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_2355151849","text":"#% increased Melee Physical Damage per 10 Dexterity","type":"explicit"},{"id":"explicit.stat_908516597","text":"Regenerate #% of Life per second while moving","type":"explicit"},{"id":"explicit.stat_988575597","text":"#% increased Energy Shield Recovery rate","type":"explicit"},{"id":"explicit.stat_3983981705","text":"#% chance to Blind Enemies on Critical Strike","type":"explicit"},{"id":"explicit.stat_2629106530","text":"Recover #% of Life on use","type":"explicit"},{"id":"explicit.stat_1778298516","text":"#% Chance to Block Attack Damage while wielding a Staff","type":"explicit"},{"id":"explicit.stat_827329571","text":"#% increased Spell Damage per Power Charge","type":"explicit"},{"id":"explicit.stat_1331384105","text":"#% increased Skeleton Duration","type":"explicit"},{"id":"explicit.stat_1683578560","text":"Unwavering Stance","type":"explicit"},{"id":"explicit.stat_2969128501","text":"#% reduced Mana Cost of Minion Skills","type":"explicit"},{"id":"explicit.stat_338121249","text":"Curse Enemies with Flammability on Hit, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_3944782785","text":"#% increased Attack Damage against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_141810208","text":"#% of Attack Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_3382957283","text":"Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy","type":"explicit"},{"id":"explicit.stat_4212255859","text":"Cannot be Knocked Back","type":"explicit"},{"id":"explicit.stat_1408638732","text":"#% increased Character Size","type":"explicit"},{"id":"explicit.stat_4226189338","text":"# to Level of all Chaos Spell Skill Gems","type":"explicit"},{"id":"explicit.stat_4058681894","text":"Your Critical Strikes do not deal extra Damage","type":"explicit"},{"id":"explicit.stat_3599340381","text":"1 Added Passive Skill is Fuel the Fight","type":"explicit"},{"id":"explicit.stat_2937483991","text":"#% to Critical Strike Multiplier if you've Killed Recently","type":"explicit"},{"id":"explicit.stat_1030153674","text":"Recover #% of Mana on Kill","type":"explicit"},{"id":"explicit.stat_2301696196","text":"You take #% of your maximum Life as Chaos Damage on use","type":"explicit"},{"id":"explicit.stat_4154259475","text":"# to Level of Socketed Support Gems","type":"explicit"},{"id":"explicit.stat_498214257","text":"#% chance to gain a Power, Frenzy or Endurance Charge on Kill","type":"explicit"},{"id":"explicit.stat_2222186378","text":"#% increased Mana Recovery from Flasks","type":"explicit"},{"id":"explicit.stat_87098247","text":"Adds # to # Fire Damage to Wand Attacks","type":"explicit"},{"id":"explicit.stat_412745376","text":"Minions deal #% increased Damage if you've used a Minion Skill Recently","type":"explicit"},{"id":"explicit.stat_2929101122","text":"Socketed Gems are Supported by Level # Elemental Proliferation","type":"explicit"},{"id":"explicit.stat_287491423","text":"#% additional Physical Damage Reduction against Abyssal Monsters","type":"explicit"},{"id":"explicit.stat_1776945532","text":"Enemies you Kill have a #% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage","type":"explicit"},{"id":"explicit.stat_2920970371","text":"#% increased Duration of Curses on you","type":"explicit"},{"id":"explicit.stat_1435748744","text":"Curse Skills have #% increased Skill Effect Duration","type":"explicit"},{"id":"explicit.stat_2856328513","text":"#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_1457911472","text":"#% chance to cause Enemies to Flee on use","type":"explicit"},{"id":"explicit.stat_3591397930","text":"Knocks Back Enemies in an Area when you use a Flask","type":"explicit"},{"id":"explicit.stat_1618589784","text":"#% chance to avoid Bleeding","type":"explicit"},{"id":"explicit.stat_1745710984","text":"#% chance to grant Unholy Might to nearby Enemies on Kill","type":"explicit"},{"id":"explicit.stat_3232201443","text":"#% of Maximum Life taken as Chaos Damage per second","type":"explicit"},{"id":"explicit.stat_350069479","text":"#% of Attack Damage Leeched as Mana","type":"explicit"},{"id":"explicit.stat_2259700079","text":"Socketed Gems are Supported by Level # Increased Critical Strikes","type":"explicit"},{"id":"explicit.stat_3991482957","text":"#% chance to gain Unholy Might for 10 seconds on Kill","type":"explicit"},{"id":"explicit.stat_3636096208","text":"#% more Melee Physical Damage during effect","type":"explicit"},{"id":"explicit.stat_1370753114","text":"Nearby Allies gain #% increased Mana Regeneration Rate","type":"explicit"},{"id":"explicit.stat_2353576063","text":"#% increased Effect of your Curses","type":"explicit"},{"id":"explicit.stat_2843214518","text":"#% increased Attack Damage","type":"explicit"},{"id":"explicit.stat_3848282610","text":"#% of Fire Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_1104246401","text":"Socketed Gems have Blood Magic","type":"explicit"},{"id":"explicit.stat_628716294","text":"Action Speed cannot be modified to below base value","type":"explicit"},{"id":"explicit.stat_1924591908","text":"#% chance to grant Onslaught to nearby Enemies on Kill","type":"explicit"},{"id":"explicit.stat_2162876159","text":"#% increased Projectile Attack Damage","type":"explicit"},{"id":"explicit.stat_2160417795","text":"You and your Minions take #% reduced Reflected Elemental Damage","type":"explicit"},{"id":"explicit.stat_3477714116","text":"Curse Enemies with Vulnerability on Block, with 20% increased Effect","type":"explicit"},{"id":"explicit.stat_2653955271","text":"Damage Penetrates #% Fire Resistance","type":"explicit"},{"id":"explicit.stat_2319448214","text":"Gore Footprints","type":"explicit"},{"id":"explicit.stat_2075199521","text":"Dexterity from Passives in Radius is Transformed to Intelligence","type":"explicit"},{"id":"explicit.stat_1119465199","text":"Chaos Damage does not bypass Energy Shield","type":"explicit"},{"id":"explicit.stat_2649720402","text":"#% more Physical Damage with Unarmed Attacks","type":"explicit"},{"id":"explicit.stat_723832351","text":"#% of Cold Damage Converted to Fire Damage","type":"explicit"},{"id":"explicit.stat_2343216207","text":"Unique Boss drops # additional Rare #","type":"explicit"},{"id":"explicit.stat_1869678332","text":"During Flask Effect, #% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest","type":"explicit"},{"id":"explicit.stat_3741956733","text":"Gains no Charges during Effect of any Overflowing Chalice Flask","type":"explicit"},{"id":"explicit.stat_436556261","text":"This Map's Modifiers to Quantity of Items found also apply to Rarity","type":"explicit"},{"id":"explicit.stat_299054775","text":"#% increased Evasion Rating during Flask effect","type":"explicit"},{"id":"explicit.stat_3173052379","text":"Ignited Enemies you hit are destroyed on Kill","type":"explicit"},{"id":"explicit.stat_392168009","text":"#% to Chaos Resistance during any Flask Effect","type":"explicit"},{"id":"explicit.stat_3762412853","text":"Attacks with this Weapon Penetrate #% Chaos Resistance","type":"explicit"},{"id":"explicit.stat_3814686091","text":"Herald of Thunder has #% increased Buff Effect","type":"explicit"},{"id":"explicit.stat_429867172","text":"# to maximum number of Summoned Totems","type":"explicit"},{"id":"explicit.stat_1871056256","text":"#% of Physical Damage from Hits taken as Cold Damage","type":"explicit"},{"id":"explicit.stat_1693613464","text":"#% increased Armour during Flask effect","type":"explicit"},{"id":"explicit.stat_169657426","text":"Adds # to # Fire Damage in Main Hand","type":"explicit"},{"id":"explicit.stat_2444301311","text":"During Flask Effect, Damage Penetrates #% Resistance of each Element for which your Uncapped Elemental Resistance is highest","type":"explicit"},{"id":"explicit.stat_2917449574","text":"Removes #% of your maximum Energy Shield on use","type":"explicit"},{"id":"explicit.stat_1686122637","text":"#% increased Damage while Ignited","type":"explicit"},{"id":"explicit.stat_1389153006","text":"#% increased Global Defences","type":"explicit"},{"id":"explicit.stat_2001530951","text":"#% increased Trap Duration","type":"explicit"},{"id":"explicit.stat_1694106311","text":"Cannot be Stunned","type":"explicit"},{"id":"explicit.stat_893903361","text":"# Life gained on Killing Ignited Enemies","type":"explicit"},{"id":"explicit.stat_2254480358","text":"# to Level of all Cold Spell Skill Gems","type":"explicit"},{"id":"explicit.stat_2063695047","text":"Gain #% of Non-Chaos Damage as extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_960081730","text":"Adds # to # Physical Damage","type":"explicit"},{"id":"explicit.stat_642457541","text":"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_762600725","text":"# Life gained when you Block","type":"explicit"},{"id":"explicit.stat_1811422871","text":"Socketed Gems are supported by Level # Melee Splash","type":"explicit"},{"id":"explicit.stat_1085359447","text":"#% increased Charges gained by Other Flasks during Flask Effect","type":"explicit"},{"id":"explicit.stat_80079005","text":"#% of Lightning Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_2697049014","text":"You gain a Power Charge on use","type":"explicit"},{"id":"explicit.stat_3986030307","text":"You gain an Endurance Charge on use","type":"explicit"},{"id":"explicit.stat_1237708713","text":"Adds # to # Lightning Damage to Sword Attacks","type":"explicit"},{"id":"explicit.stat_1152182658","text":"1 Added Passive Skill is Martial Prowess","type":"explicit"},{"id":"explicit.stat_2406605753","text":"Recover #% of Energy Shield on Kill","type":"explicit"},{"id":"explicit.stat_1164767410","text":"#% increased Armour while not Ignited, Frozen or Shocked","type":"explicit"},{"id":"explicit.stat_4231842891","text":"Adds # to # Lightning Damage to Claw Attacks","type":"explicit"},{"id":"explicit.stat_3495544060","text":"Gain #% of Elemental Damage as Extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_782323220","text":"#% increased Elemental Damage with Attack Skills during any Flask Effect","type":"explicit"},{"id":"explicit.stat_2181499453","text":"With at least 40 Intelligence in Radius, Blight has #% increased Hinder Duration","type":"explicit"},{"id":"explicit.stat_4227567885","text":"Minions have #% increased Attack and Cast Speed if you or your Minions have Killed Recently","type":"explicit"},{"id":"explicit.stat_3420284170","text":"#% reduced Spark Duration","type":"explicit"},{"id":"explicit.stat_2739830820","text":"# to Level of all Raise Zombie Gems","type":"explicit"},{"id":"explicit.stat_3457100218","text":"Gain Onslaught for # second per Frenzy Charge on use","type":"explicit"},{"id":"explicit.stat_808939569","text":"Socketed Gems are Supported by Level # Minion Damage","type":"explicit"},{"id":"explicit.stat_2605119037","text":"Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value","type":"explicit"},{"id":"explicit.stat_935386993","text":"With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle","type":"explicit"},{"id":"explicit.stat_129035625","text":"You and your Minions take #% reduced Reflected Physical Damage","type":"explicit"},{"id":"explicit.stat_156016608","text":"With at least 40 Strength in Radius, Ground Slam\nhas a #% increased angle","type":"explicit"},{"id":"explicit.stat_2727977666","text":"With at least 40 Intelligence in Radius, Frostbolt Projectiles gain #% increased Projectile Speed per second","type":"explicit"},{"id":"explicit.stat_860864690","text":"Area contains unbridged gaps to cross","type":"explicit"},{"id":"explicit.stat_570159344","text":"Consumes 1 Frenzy Charge on use","type":"explicit"},{"id":"explicit.stat_2323739383","text":"Minions have #% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed","type":"explicit"},{"id":"explicit.stat_1650632809","text":"With at least 40 Intelligence in Radius, Spark fires an additional Projectile","type":"explicit"},{"id":"explicit.stat_2591020064","text":"1% increased Movement Speed per # Evasion Rating, up to 75%","type":"explicit"},{"id":"explicit.stat_819529588","text":"#% increased Global Damage","type":"explicit"},{"id":"explicit.stat_2620267328","text":"1 Added Passive Skill is Vengeful Commander","type":"explicit"},{"id":"explicit.stat_1038949719","text":"Gain #% of Weapon Physical Damage as Extra Damage of a random Element","type":"explicit"},{"id":"explicit.stat_1911162866","text":"1 Added Passive Skill is Drive the Destruction","type":"explicit"},{"id":"explicit.stat_2511280084","text":"With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle","type":"explicit"},{"id":"explicit.stat_705686721","text":"#% increased Damage taken from Skeletons","type":"explicit"},{"id":"explicit.stat_570644802","text":"#% chance to gain a Spirit Charge on Kill","type":"explicit"},{"id":"explicit.stat_3230795453","text":"You gain a Frenzy Charge on use","type":"explicit"},{"id":"explicit.stat_2822821681","text":"With at least 40 Dexterity in Radius, Ethereal Knives fires an additional Projectile","type":"explicit"},{"id":"explicit.stat_952060721","text":"Socketed Gems are supported by Level # Chance to Flee","type":"explicit"},{"id":"explicit.stat_2519106214","text":"#% Chance to Block Attack Damage during Flask effect","type":"explicit"},{"id":"explicit.stat_64726306","text":"Can't use other Rings","type":"explicit"},{"id":"explicit.stat_1626998468","text":"Area contains no monsters","type":"explicit"},{"id":"explicit.stat_1992516007","text":"Trigger Level # Spirit Burst when you Use a Skill while you have a Spirit Charge","type":"explicit"},{"id":"explicit.stat_506942497","text":"#% increased Energy Shield per 10 Strength","type":"explicit"},{"id":"explicit.stat_972201717","text":"Adds # to # Cold Damage to Sword Attacks","type":"explicit"},{"id":"explicit.stat_2301191210","text":"#% chance to Blind Enemies on hit","type":"explicit"},{"id":"explicit.stat_640052854","text":"# Mana gained for each Enemy hit by Attacks","type":"explicit"},{"id":"explicit.stat_3700381193","text":"#% increased Accuracy Rating per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_156734303","text":"#% increased Evasion Rating during Onslaught","type":"explicit"},{"id":"explicit.stat_1108755349","text":"Socketed Gems are supported by Level # Increased Critical Damage","type":"explicit"},{"id":"explicit.stat_2848646243","text":"Adds # to # Cold Damage to Claw Attacks","type":"explicit"},{"id":"explicit.stat_2160282525","text":"#% reduced Freeze Duration on you","type":"explicit"},{"id":"explicit.stat_3410049114","text":"#% increased Movement Speed for you and nearby Allies","type":"explicit"},{"id":"explicit.stat_438778966","text":"Socketed Gems are Supported by Level # Spell Echo","type":"explicit"},{"id":"explicit.stat_1559361866","text":"With at least 40 Strength in Radius, Ground Slam has a #% chance\nto grant an Endurance Charge when you Stun an Enemy","type":"explicit"},{"id":"explicit.stat_696805682","text":"Socketed Gems are Supported by Level # Ancestral Call","type":"explicit"},{"id":"explicit.stat_3257279374","text":"#% increased Damage against Abyssal Monsters","type":"explicit"},{"id":"explicit.stat_3557561376","text":"#% increased Spell Damage taken when on Low Mana","type":"explicit"},{"id":"explicit.stat_1001829678","text":"#% Chance to Block Attack Damage while wielding a Staff (Staves)","type":"explicit"},{"id":"explicit.stat_3774831856","text":"#% increased Physical Damage with Maces or Sceptres","type":"explicit"},{"id":"explicit.stat_3442130499","text":"With at least 40 Dexterity in Radius, Ice Shot has #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_2810434465","text":"Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_1237038225","text":"Socketed Gems Reserve No Mana","type":"explicit"},{"id":"explicit.stat_1140739168","text":"#% increased Damage Over Time during Flask Effect","type":"explicit"},{"id":"explicit.stat_601249293","text":"Adds # to # Fire Damage to Sword Attacks","type":"explicit"},{"id":"explicit.stat_2080171093","text":"#% increased Spell Damage during any Flask Effect","type":"explicit"},{"id":"explicit.stat_2154290807","text":"Adds # to # Fire Damage to Claw Attacks","type":"explicit"},{"id":"explicit.stat_752930724","text":"Items and Gems have #% increased Attribute Requirements","type":"explicit"},{"id":"explicit.stat_3102860761","text":"30% increased Movement Speed for # seconds on Throwing a Trap","type":"explicit"},{"id":"explicit.stat_1582068183","text":"Adds # to # Lightning Damage to Axe Attacks","type":"explicit"},{"id":"explicit.stat_3621894381","text":"#% chance to Dodge Spell Hits while Phasing","type":"explicit"},{"id":"explicit.stat_1011772129","text":"Your Lightning Damage can Freeze but not Shock","type":"explicit"},{"id":"explicit.stat_38301299","text":"#% to Fire Resistance while on Low Life","type":"explicit"},{"id":"explicit.stat_1261612903","text":"Your Cold Damage can Ignite but not Freeze or Chill","type":"explicit"},{"id":"explicit.stat_1994392904","text":"Conduit","type":"explicit"},{"id":"explicit.stat_2528955616","text":"# Energy Shield gained on Kill","type":"explicit"},{"id":"explicit.stat_3882531569","text":"#% increased Physical Damage with Daggers","type":"explicit"},{"id":"explicit.stat_1025503586","text":"With at least 40 Strength in Radius, Heavy Strike has a \n#% chance to deal Double Damage","type":"explicit"},{"id":"explicit.stat_2198697797","text":"Cannot gain Mana during effect","type":"explicit"},{"id":"explicit.stat_3479987487","text":"#% increased Block and Stun Recovery during Flask effect","type":"explicit"},{"id":"explicit.stat_3342989455","text":"#% of Physical Damage from Hits taken as Fire Damage","type":"explicit"},{"id":"explicit.stat_810772344","text":"#% increased Evasion Rating per 10 Intelligence","type":"explicit"},{"id":"explicit.stat_1170174456","text":"#% increased Endurance Charge Duration","type":"explicit"},{"id":"explicit.stat_1592029809","text":"Gain a Power Charge on Non-Critical Strike","type":"explicit"},{"id":"explicit.stat_3143208761","text":"#% increased Attributes","type":"explicit"},{"id":"explicit.stat_1782176131","text":"Adds # to # Cold Damage to Axe Attacks","type":"explicit"},{"id":"explicit.stat_3837707023","text":"Minions have #% to Chaos Resistance","type":"explicit"},{"id":"explicit.stat_2949096603","text":"Your Fire Damage can Shock but not Ignite","type":"explicit"},{"id":"explicit.stat_630867098","text":"With at least 40 Dexterity in Radius, Barrage fires an additional projectile simultaneously on the first and final attacks","type":"explicit"},{"id":"explicit.stat_2483795307","text":"#% chance to gain a Power Charge on Kill","type":"explicit"},{"id":"explicit.stat_1004011302","text":"#% increased Cooldown Recovery Rate","type":"explicit"},{"id":"explicit.stat_2092708508","text":"With at least 40 Dexterity in Radius, Frost Blades has #% increased Projectile Speed","type":"explicit"},{"id":"explicit.stat_3228973398","text":"# Flask Charges recovered every 3 seconds","type":"explicit"},{"id":"explicit.stat_2098320128","text":"With at least 40 Intelligence in Radius, Freezing Pulse fires an additional Projectile","type":"explicit"},{"id":"explicit.stat_902947445","text":"Vaal Skills used during effect have #% reduced Soul Gain Prevention Duration","type":"explicit"},{"id":"explicit.stat_4067144129","text":"Vaal Skills deal #% increased Damage during effect","type":"explicit"},{"id":"explicit.stat_1718147982","text":"#% increased Minion Accuracy Rating","type":"explicit"},{"id":"explicit.stat_2392912145","text":"Immune to Poison during Flask Effect\nRemoves Poison on use","type":"explicit"},{"id":"explicit.stat_2503377690","text":"#% of Recovery applied Instantly","type":"explicit"},{"id":"explicit.stat_695031402","text":"With at least 40 Dexterity in Radius, Viper Strike deals #% increased Damage with Hits and Poison for each Poison on the Enemy","type":"explicit"},{"id":"explicit.stat_4167600809","text":"#% increased Fire Damage if you have used a Cold Skill Recently","type":"explicit"},{"id":"explicit.stat_1261982764","text":"#% increased Life Recovered","type":"explicit"},{"id":"explicit.stat_2825197711","text":"#% increased Movement Speed while on Full Energy Shield","type":"explicit"},{"id":"explicit.stat_3753748365","text":"Damage from Enemies Hitting you is Unlucky while you are on Low Life","type":"explicit"},{"id":"explicit.stat_2821079699","text":"# to maximum number of Golems","type":"explicit"},{"id":"explicit.stat_504366827","text":"# to Armour while Frozen","type":"explicit"},{"id":"explicit.stat_856021430","text":"#% increased Damage with Movement Skills","type":"explicit"},{"id":"explicit.stat_2412100590","text":"With at least 40 Dexterity in Radius, Melee Damage\ndealt by Frost Blades Penetrates #% Cold Resistance","type":"explicit"},{"id":"explicit.stat_2740359895","text":"Your Hits can only Kill Frozen Enemies","type":"explicit"},{"id":"explicit.stat_2929867083","text":"#% increased Rarity of Items found when on Low Life","type":"explicit"},{"id":"explicit.stat_569299859","text":"#% to all maximum Resistances","type":"explicit"},{"id":"explicit.stat_1881314095","text":"Share Endurance Charges with nearby party members","type":"explicit"},{"id":"explicit.stat_2224292784","text":"Can have up to # additional Trap placed at a time","type":"explicit"},{"id":"explicit.stat_402920808","text":"#% increased Physical Damage with Bows","type":"explicit"},{"id":"explicit.stat_1604995720","text":"Grants Level # Despair Curse Aura during Flask Effect","type":"explicit"},{"id":"explicit.stat_3612256591","text":"#% increased Cold Damage if you have used a Fire Skill Recently","type":"explicit"},{"id":"explicit.stat_3691641145","text":"#% increased Damage taken","type":"explicit"},{"id":"explicit.stat_677564538","text":"Non-Channelling Skills have # to Total Mana Cost","type":"explicit"},{"id":"explicit.stat_2096159630","text":"Adds # to # Lightning Damage to Mace or Sceptre Attacks","type":"explicit"},{"id":"explicit.stat_1787073323","text":"Skills Chain # times","type":"explicit"},{"id":"explicit.stat_2609824731","text":"Gain an Endurance Charge when you take a Critical Strike","type":"explicit"},{"id":"explicit.stat_90012347","text":"Adds # to # Lightning Damage against Shocked Enemies","type":"explicit"},{"id":"explicit.stat_3743301799","text":"#% increased Fire Damage taken","type":"explicit"},{"id":"explicit.stat_2156764291","text":"#% increased Damage taken from Ghosts","type":"explicit"},{"id":"explicit.stat_3790108551","text":"With at least 40 Intelligence in Radius, Frostbolt fires an additional Projectile","type":"explicit"},{"id":"explicit.stat_3062329212","text":"Minions Regenerate # Life per second","type":"explicit"},{"id":"explicit.stat_1327522346","text":"#% increased Mana Regeneration Rate while moving","type":"explicit"},{"id":"explicit.stat_2143990571","text":"#% chance to Trigger Level 20 Summon Volatile Anomaly on Kill","type":"explicit"},{"id":"explicit.stat_3192135716","text":"Traps and Mines have a #% chance to Poison on Hit","type":"explicit"},{"id":"explicit.stat_1437957544","text":"# to Maximum Charges","type":"explicit"},{"id":"explicit.stat_635761691","text":"#% increased Physical Damage with Claws","type":"explicit"},{"id":"explicit.stat_3442107889","text":"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy","type":"explicit"},{"id":"explicit.stat_2918129907","text":"Inflicts a random Hex on you when your Totems die, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_2769075491","text":"#% increased Physical Damage with Wands","type":"explicit"},{"id":"explicit.stat_3548561213","text":"#% increased Attack Speed per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_2921373173","text":"#% increased Spell Damage if your other Ring is an Elder Item","type":"explicit"},{"id":"explicit.stat_1248507170","text":"With at least 40 Strength in Radius, Cleave grants Fortify on Hit","type":"explicit"},{"id":"explicit.stat_3214518396","text":"Minions have #% chance to Dodge Attack Hits","type":"explicit"},{"id":"explicit.stat_3787436548","text":"Historic","type":"explicit"},{"id":"explicit.stat_2048970144","text":"Minions have # to Armour","type":"explicit"},{"id":"explicit.stat_2312817839","text":"Cannot be Stunned by Spells if your other Ring is a Shaper Item","type":"explicit"},{"id":"explicit.stat_1384629003","text":"Socketed Gems are Supported by Level # Ice Bite","type":"explicit"},{"id":"explicit.stat_2153364323","text":"# Intelligence Requirement","type":"explicit"},{"id":"explicit.stat_4159248054","text":"#% increased Warcry Cooldown Recovery Rate","type":"explicit"},{"id":"explicit.stat_1263342750","text":"Adds # to # Cold Damage to Dagger Attacks","type":"explicit"},{"id":"explicit.stat_782230869","text":"#% increased Effect of Non-Damaging Ailments","type":"explicit"},{"id":"explicit.stat_1910361436","text":"Adds # to # Fire Damage to Dagger Attacks","type":"explicit"},{"id":"explicit.stat_2461965653","text":"Adds # to # Fire Damage to Axe Attacks","type":"explicit"},{"id":"explicit.stat_3112863846","text":"An additional Curse can be applied to you","type":"explicit"},{"id":"explicit.stat_2572192375","text":"Socketed Gems are Supported by Level # Added Fire Damage","type":"explicit"},{"id":"explicit.stat_2543931078","text":"#% reduced Frenzy Charge Duration per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_160933750","text":"With at least 40 Intelligence in Radius, Magma Orb\nhas #% increased Area of Effect per Chain","type":"explicit"},{"id":"explicit.stat_3277537093","text":"# Physical Damage taken from Hits by Animals","type":"explicit"},{"id":"explicit.stat_3067409450","text":"#% of Attack Damage Leeched as Mana against Poisoned Enemies","type":"explicit"},{"id":"explicit.stat_1244360317","text":"#% increased Damage over Time while holding a Shield","type":"explicit"},{"id":"explicit.stat_3024242403","text":"Cannot be Shocked if Intelligence is higher than Strength","type":"explicit"},{"id":"explicit.stat_305634887","text":"Recover #% of Life when you lose a Spirit Charge","type":"explicit"},{"id":"explicit.stat_187418672","text":"Adds # to # Cold Damage to Mace or Sceptre Attacks","type":"explicit"},{"id":"explicit.stat_2745936267","text":"#% increased Light Radius during Flask effect","type":"explicit"},{"id":"explicit.stat_447636597","text":"#% of Attack Damage Leeched as Life against Maimed Enemies","type":"explicit"},{"id":"explicit.stat_3110907148","text":"#% increased Cast Speed if a Minion has been Killed Recently","type":"explicit"},{"id":"explicit.stat_4053097676","text":"# to Maximum Spirit Charges per Abyss Jewel affecting you","type":"explicit"},{"id":"explicit.stat_3565558422","text":"With at least 40 Strength in Radius, Glacial Hammer deals\nCold-only Splash Damage to surrounding targets","type":"explicit"},{"id":"explicit.stat_3881647885","text":"With at least 40 Intelligence in Radius, Blight inflicts Withered for # seconds","type":"explicit"},{"id":"explicit.stat_743992531","text":"#% of Damage you Reflect to Enemies when Hit is gained as Life","type":"explicit"},{"id":"explicit.stat_1710508327","text":"Socketed Gems are Supported by Level # Blastchain Mine","type":"explicit"},{"id":"explicit.stat_35476451","text":"#% increased Damage per 5 of your lowest Attribute","type":"explicit"},{"id":"explicit.stat_3736953565","text":"#% increased Quantity of Items found during Flask effect","type":"explicit"},{"id":"explicit.stat_2109043683","text":"#% increased Effect of Buffs granted by your Golems","type":"explicit"},{"id":"explicit.stat_2235163762","text":"Summoned Golems Regenerate #% of their Life per second","type":"explicit"},{"id":"explicit.stat_1991958615","text":"Socketed Gems are Supported by Level # Cold Penetration","type":"explicit"},{"id":"explicit.stat_2100196861","text":"#% of Attack Damage Leeched as Life on Critical Strike","type":"explicit"},{"id":"explicit.stat_3905661226","text":"#% increased Damage while you have no Frenzy Charges","type":"explicit"},{"id":"explicit.stat_2114157293","text":"#% increased Golem Damage for each Type of Golem you have Summoned","type":"explicit"},{"id":"explicit.stat_2771016039","text":"#% increased Projectile Attack Damage during any Flask Effect","type":"explicit"},{"id":"explicit.stat_1582728645","text":"Gain # Charge when you are Hit by an Enemy","type":"explicit"},{"id":"explicit.stat_172894060","text":"#% chance to Dodge Attack Hits per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_154272030","text":"#% increased Damage for each type of Abyss Jewel affecting you","type":"explicit"},{"id":"explicit.stat_916797432","text":"# to Level of Socketed Strength Gems","type":"explicit"},{"id":"explicit.stat_3751996449","text":"#% chance to Trigger Level 8 Summon Raging Spirit on Kill","type":"explicit"},{"id":"explicit.stat_860668586","text":"#% increased Cold Damage with Attack Skills","type":"explicit"},{"id":"explicit.stat_1019020209","text":"#% increased Damage per Curse on you","type":"explicit"},{"id":"explicit.stat_729180395","text":"Golem Skills have #% increased Cooldown Recovery Rate","type":"explicit"},{"id":"explicit.stat_651875072","text":"Triggers Level # Death Walk when Equipped","type":"explicit"},{"id":"explicit.stat_800141891","text":"#% chance to Freeze, Shock and Ignite","type":"explicit"},{"id":"explicit.stat_2735889191","text":"Lose all Power Charges on Critical Strike","type":"explicit"},{"id":"explicit.stat_1801889979","text":"Adds # to # Lightning Damage to Spells while holding a Shield","type":"explicit"},{"id":"explicit.stat_1787444936","text":"Contains waves of Monsters","type":"explicit"},{"id":"explicit.stat_47954913","text":"#% increased Critical Strike Chance against Enemies on Full Life","type":"explicit"},{"id":"explicit.stat_2671663397","text":"Adds # to # Cold Damage to Spells while holding a Shield","type":"explicit"},{"id":"explicit.stat_44182350","text":"Adds # to # Fire Damage to Spells while holding a Shield","type":"explicit"},{"id":"explicit.stat_4193088553","text":"#% increased Damage over Time while wielding a Two Handed Weapon","type":"explicit"},{"id":"explicit.stat_2138434718","text":"#% increased Rarity of Items Dropped by Frozen Enemies","type":"explicit"},{"id":"explicit.stat_228165595","text":"Socketed Gems are Supported by Level # Lesser Poison","type":"explicit"},{"id":"explicit.stat_3240073117","text":"#% increased Life Recovery rate","type":"explicit"},{"id":"explicit.stat_4041805509","text":"#% reduced maximum number of Raised Zombies","type":"explicit"},{"id":"explicit.stat_3852526385","text":"# to Level of Socketed Movement Gems","type":"explicit"},{"id":"explicit.stat_568070507","text":"Raised Zombies deal #% more Physical Damage","type":"explicit"},{"id":"explicit.stat_3563667308","text":"#% increased Raised Zombie Size","type":"explicit"},{"id":"explicit.stat_2464689927","text":"Adds # to # Cold Damage to Spells while wielding a Two Handed Weapon","type":"explicit"},{"id":"explicit.stat_474452755","text":"Cannot Evade Enemy Attacks","type":"explicit"},{"id":"explicit.stat_3738331820","text":"With at least 40 Strength in Radius, #% of Glacial\nHammer Physical Damage Converted to Cold Damage","type":"explicit"},{"id":"explicit.stat_235847153","text":"With at least 40 Dexterity in Radius, Viper Strike has a #% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit","type":"explicit"},{"id":"explicit.stat_4176970656","text":"# Physical Damage taken on Minion Death","type":"explicit"},{"id":"explicit.stat_4116579804","text":"Raised Zombies have # to maximum Life","type":"explicit"},{"id":"explicit.stat_276103140","text":"#% increased Critical Strike Chance against Shocked Enemies","type":"explicit"},{"id":"explicit.stat_1555962658","text":"#% increased Attack Damage if your other Ring is a Shaper Item","type":"explicit"},{"id":"explicit.stat_794830148","text":"Adds # to # Fire Damage against Ignited Enemies","type":"explicit"},{"id":"explicit.stat_2750004091","text":"With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_3191479793","text":"#% increased effect of Offerings","type":"explicit"},{"id":"explicit.stat_411460446","text":"Socketed Gems are Supported by Level # Added Chaos Damage","type":"explicit"},{"id":"explicit.stat_2857427872","text":"Enemies Killed by Zombies' Hits Explode, dealing #% of their Life as Fire Damage","type":"explicit"},{"id":"explicit.stat_3416410609","text":"#% Chance to Block Projectile Attack Damage","type":"explicit"},{"id":"explicit.stat_1731672673","text":"Hex Reflection","type":"explicit"},{"id":"explicit.stat_2402136583","text":"Gain #% of Lightning Damage as Extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_662691280","text":"Adds # to # Fire Damage to Spells while Dual Wielding","type":"explicit"},{"id":"explicit.stat_3954157711","text":"Adds # to # Physical Damage to Spells while holding a Shield","type":"explicit"},{"id":"explicit.stat_114734841","text":"Flasks applied to you have #% increased Effect","type":"explicit"},{"id":"explicit.stat_1106668565","text":"Socketed Gems are Supported by Level # Innervate","type":"explicit"},{"id":"explicit.stat_2985291457","text":"Socketed Gems are Supported by Level # Melee Physical Damage","type":"explicit"},{"id":"explicit.stat_1011760251","text":"#% to maximum Lightning Resistance","type":"explicit"},{"id":"explicit.stat_1818773442","text":"#% increased Damage with Hits and Ailments per Curse on Enemy","type":"explicit"},{"id":"explicit.stat_2806435316","text":"#% increased Accuracy Rating if you haven't Killed Recently","type":"explicit"},{"id":"explicit.stat_3915702459","text":"Gain # Life when you lose an Endurance Charge","type":"explicit"},{"id":"explicit.stat_766615564","text":"#% increased Physical Damage with Ranged Weapons","type":"explicit"},{"id":"explicit.stat_2801937280","text":"Blood Magic","type":"explicit"},{"id":"explicit.stat_133683091","text":"Adds # to # Physical Damage to Wand Attacks","type":"explicit"},{"id":"explicit.stat_3519268108","text":"Adds # to # Chaos Damage to Spells and Attacks during any Flask Effect","type":"explicit"},{"id":"explicit.stat_1172810729","text":"#% chance to deal Double Damage","type":"explicit"},{"id":"explicit.stat_1968038301","text":"Contains additional waves of Undead Monsters","type":"explicit"},{"id":"explicit.stat_398702949","text":"Gain a Frenzy Charge on Critical Strike","type":"explicit"},{"id":"explicit.stat_347697569","text":"#% increased Accuracy Rating when on Low Life","type":"explicit"},{"id":"explicit.stat_3762784591","text":"#% reduced Chaos Damage taken over time","type":"explicit"},{"id":"explicit.stat_2466604008","text":"Attacks Chain an additional time when in Main Hand","type":"explicit"},{"id":"explicit.stat_1081444608","text":"#% increased Claw Physical Damage when on Low Life","type":"explicit"},{"id":"explicit.stat_1921572790","text":"#% increased Attack Speed when on Low Life","type":"explicit"},{"id":"explicit.stat_3212481075","text":"Adds # to # Lightning Damage to Staff Attacks","type":"explicit"},{"id":"explicit.stat_3829706447","text":"Attacks with this Weapon deal #-# added Chaos Damage against\nEnemies affected by at least 5 Poisons","type":"explicit"},{"id":"explicit.stat_1350938937","text":"#% chance to Trigger Level 20 Tentacle Whip on Kill","type":"explicit"},{"id":"explicit.stat_3146788701","text":"Adds # to # Fire Damage to Mace or Sceptre Attacks","type":"explicit"},{"id":"explicit.stat_3579807004","text":"#% increased Melee Damage when on Full Life","type":"explicit"},{"id":"explicit.stat_3787670808","text":"Contains the Immortalised Grandmasters\nPvP damage scaling in effect","type":"explicit"},{"id":"explicit.stat_2420410470","text":"Socketed Gems are Supported by Level # Immolate","type":"explicit"},{"id":"explicit.stat_4077843608","text":"Has 1 Socket","type":"explicit"},{"id":"explicit.stat_1599775597","text":"Gain #% of Fire Damage as Extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_3418949024","text":"Attacks with this Weapon Maim on hit","type":"explicit"},{"id":"explicit.stat_2481358827","text":"#% increased Physical Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_4082111882","text":"# to Evasion Rating while on Full Life","type":"explicit"},{"id":"explicit.stat_4255924189","text":"Adds # to # Physical Damage to Spells while Dual Wielding","type":"explicit"},{"id":"explicit.stat_2431643207","text":"Minions have #% chance to Blind on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_323705912","text":"Skills fire an additional Projectile during Flask Effect","type":"explicit"},{"id":"explicit.stat_2453026567","text":"#% chance to gain Onslaught for 10 seconds on Kill","type":"explicit"},{"id":"explicit.stat_3818161429","text":"You gain Onslaught for # seconds on Culling Strike","type":"explicit"},{"id":"explicit.stat_2458598175","text":"Blind you inflict is Reflected to you","type":"explicit"},{"id":"explicit.stat_2872105818","text":"#% chance to Avoid being Chilled during Onslaught","type":"explicit"},{"id":"explicit.stat_417188801","text":"#% chance to gain an Endurance Charge when you Block","type":"explicit"},{"id":"explicit.stat_3612407781","text":"# Physical Damage taken from Projectile Attacks","type":"explicit"},{"id":"explicit.stat_3238189103","text":"Your Spells have Culling Strike","type":"explicit"},{"id":"explicit.stat_99089516","text":"Socketed Gems are supported by Level # Faster Projectiles","type":"explicit"},{"id":"explicit.stat_2675603254","text":"# to Level of Socketed Chaos Gems","type":"explicit"},{"id":"explicit.stat_1163758055","text":"With at least 40 Strength in Radius, Molten Strike has #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_3520048646","text":"#% increased Cold Damage while your Off Hand is empty","type":"explicit"},{"id":"explicit.stat_2845889407","text":"With at least 40 Strength in Radius, Molten Strike fires an additional Projectile","type":"explicit"},{"id":"explicit.stat_1688975080","text":"Nearby Allies gain #% of Life Regenerated per second","type":"explicit"},{"id":"explicit.stat_1625933063","text":"#% of Attack Damage Leeched as Life against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_3013171896","text":"Blind does not affect your Light Radius","type":"explicit"},{"id":"explicit.stat_3150705301","text":"#% increased Physical Damage with Staves","type":"explicit"},{"id":"explicit.stat_1994549323","text":"Minions have #% chance to Freeze, Shock and Ignite","type":"explicit"},{"id":"explicit.stat_3345724391","text":"#% chance to Dodge Attack Hits while your Off Hand is empty","type":"explicit"},{"id":"explicit.stat_3002506763","text":"#% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed","type":"explicit"},{"id":"explicit.stat_1020786773","text":"Golems have # to Armour","type":"explicit"},{"id":"explicit.stat_2139569643","text":"Minions convert #% of Physical Damage to Fire Damage per Red Socket","type":"explicit"},{"id":"explicit.stat_3366426512","text":"Minions convert #% of Physical Damage to Lightning Damage per Blue Socket","type":"explicit"},{"id":"explicit.stat_3872306017","text":"#% increased Power Charge Duration","type":"explicit"},{"id":"explicit.stat_2665170385","text":"1 Added Passive Skill is Hit and Run","type":"explicit"},{"id":"explicit.stat_1757945818","text":"Reflects # Fire Damage to Melee Attackers","type":"explicit"},{"id":"explicit.stat_2105048696","text":"Attacks fire an additional Projectile when in Off Hand","type":"explicit"},{"id":"explicit.stat_991168463","text":"#% chance to grant a Frenzy Charge to nearby Allies on Hit","type":"explicit"},{"id":"explicit.stat_2479374428","text":"Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value","type":"explicit"},{"id":"explicit.stat_3206381437","text":"#% chance to gain Fortify when you Stun an Enemy with Melee Damage","type":"explicit"},{"id":"explicit.stat_798767971","text":"Your Maximum Resistances are #%","type":"explicit"},{"id":"explicit.stat_4293245253","text":"Enemies Cannot Leech Mana From you","type":"explicit"},{"id":"explicit.stat_1181129483","text":"Adds # to # Chaos Damage to Spells while holding a Shield","type":"explicit"},{"id":"explicit.stat_1743759111","text":"Adds # to # Chaos Damage to Spells while wielding a Two Handed Weapon","type":"explicit"},{"id":"explicit.stat_3269060224","text":"Gain a Power Charge after Spending a total of 200 Mana","type":"explicit"},{"id":"explicit.stat_1777334641","text":"Culling Strike against Burning Enemies","type":"explicit"},{"id":"explicit.stat_4215039317","text":"# to Level of Socketed Active Skill Gems","type":"explicit"},{"id":"explicit.stat_2398198236","text":"Adds # to # Lightning Damage to Spells while wielding a Two Handed Weapon","type":"explicit"},{"id":"explicit.stat_2201614328","text":"Regenerate #% of Life per second if you have been Hit Recently","type":"explicit"},{"id":"explicit.stat_215754572","text":"#% Chance to Block Spell Damage during Flask effect","type":"explicit"},{"id":"explicit.stat_1482572705","text":"#% increased Effect of Socketed Jewels","type":"explicit"},{"id":"explicit.stat_3598983877","text":"Gain a Frenzy Charge if an Attack Ignites an Enemy","type":"explicit"},{"id":"explicit.stat_1643796079","text":"Gain Rampage while at Maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_2881426199","text":"Lose all Endurance Charges when Rampage ends","type":"explicit"},{"id":"explicit.stat_2085855914","text":"Summoned Raging Spirits deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_2367680009","text":"#% chance to grant a Power Charge to nearby Allies on Kill","type":"explicit"},{"id":"explicit.stat_2998305364","text":"Deal no Elemental Damage","type":"explicit"},{"id":"explicit.stat_2234049899","text":"Unaffected by Shocked Ground","type":"explicit"},{"id":"explicit.stat_2749166636","text":"#% More Damage with Arrow Hits at Close Range","type":"explicit"},{"id":"explicit.stat_935326447","text":"Moving while Bleeding doesn't cause you to take extra Damage","type":"explicit"},{"id":"explicit.stat_749770518","text":"Socketed Gems are Supported by Level # Inspiration","type":"explicit"},{"id":"explicit.stat_3479683016","text":"Adds # to # Lightning Damage to Dagger Attacks","type":"explicit"},{"id":"explicit.stat_1019891080","text":"Arrows deal #% increased Damage with Hits and Ailments to Targets they Pierce","type":"explicit"},{"id":"explicit.stat_2629689891","text":"# to Monster Level of Area","type":"explicit"},{"id":"explicit.stat_1865428306","text":"Adds # to # Chaos Damage to Spells while Dual Wielding","type":"explicit"},{"id":"explicit.stat_2656696317","text":"Regenerate #% of Life per second while Frozen","type":"explicit"},{"id":"explicit.stat_2135335407","text":"Adds # to # Fire Damage to Spells while wielding a Two Handed Weapon","type":"explicit"},{"id":"explicit.stat_1040189894","text":"Adds # to # Physical Damage to Sword Attacks","type":"explicit"},{"id":"explicit.stat_3638599682","text":"Never deal Critical Strikes","type":"explicit"},{"id":"explicit.stat_306443498","text":"Minions convert #% of Physical Damage to Cold Damage per Green Socket","type":"explicit"},{"id":"explicit.stat_1067429236","text":"#% increased Stun Duration on you","type":"explicit"},{"id":"explicit.stat_3619054484","text":"#% Chance to Block Attack Damage while not Cursed","type":"explicit"},{"id":"explicit.stat_798111687","text":"You cannot be Shocked while at maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_2680613507","text":"Socketed Gems are Supported by Level # Burning Damage","type":"explicit"},{"id":"explicit.stat_3513180117","text":"#% increased Mana Recovery rate","type":"explicit"},{"id":"explicit.stat_2915373966","text":"Gain #% of Cold Damage as Extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_256730087","text":"#% increased Damage with Poison if you have at least 300 Dexterity","type":"explicit"},{"id":"explicit.stat_2826979740","text":"Nearby Enemies are Blinded","type":"explicit"},{"id":"explicit.stat_1586440250","text":"#% increased Elemental Damage per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_875143443","text":"#% chance to Steal Power, Frenzy, and Endurance Charges on Hit","type":"explicit"},{"id":"explicit.stat_4020144606","text":"Socketed Gems are Supported by Level # Added Cold Damage","type":"explicit"},{"id":"explicit.stat_374737750","text":"#% chance to Cause Poison on Critical Strike","type":"explicit"},{"id":"explicit.stat_412462523","text":"#% more Damage","type":"explicit"},{"id":"explicit.stat_32859524","text":"Hexes applied by Socketed Curse Skills are Reflected back to you","type":"explicit"},{"id":"explicit.stat_2306924373","text":"You cannot be Chilled for # second after being Chilled","type":"explicit"},{"id":"explicit.stat_2105456174","text":"You grant # Frenzy Charges to allies on Death","type":"explicit"},{"id":"explicit.stat_4197676934","text":"Socketed Gems are Supported by Level # Chance To Bleed","type":"explicit"},{"id":"explicit.stat_165402179","text":"# to # added Fire Damage against Burning Enemies","type":"explicit"},{"id":"explicit.stat_3612464552","text":"You cannot be Frozen for # second after being Frozen","type":"explicit"},{"id":"explicit.stat_4064396395","text":"Attacks with this Weapon Penetrate #% Elemental Resistances","type":"explicit"},{"id":"explicit.stat_4129825612","text":"#% of Physical Damage from Hits taken as Chaos Damage","type":"explicit"},{"id":"explicit.stat_215346464","text":"You cannot be Shocked for # second after being Shocked","type":"explicit"},{"id":"explicit.stat_2076080860","text":"# to Melee Strike Range per White Socket","type":"explicit"},{"id":"explicit.stat_250876318","text":"#% increased Global Attack Speed per Green Socket","type":"explicit"},{"id":"explicit.stat_1092987622","text":"#% of Melee Physical Damage taken reflected to Attacker","type":"explicit"},{"id":"explicit.stat_56225773","text":"Golems have #% increased Attack and Cast Speed","type":"explicit"},{"id":"explicit.stat_2424133568","text":"#% increased Armour if you haven't Killed Recently","type":"explicit"},{"id":"explicit.stat_288651645","text":"Your spells have #% chance to Shock against Frozen Enemies","type":"explicit"},{"id":"explicit.stat_3265951306","text":"Socketed Gems are Supported by Level # Fire Penetration","type":"explicit"},{"id":"explicit.stat_2907156609","text":"Poisons you inflict deal Damage #% faster","type":"explicit"},{"id":"explicit.stat_1214153650","text":"#% chance to Block Spell Damage if you have Blocked Attack Damage Recently","type":"explicit"},{"id":"explicit.stat_3771273420","text":"Strength from Passives in Radius is Transformed to Intelligence","type":"explicit"},{"id":"explicit.stat_2112615899","text":"#% increased Global Physical Damage with Weapons per Red Socket","type":"explicit"},{"id":"explicit.stat_2961372685","text":"Recharges # Charge when you deal a Critical Strike","type":"explicit"},{"id":"explicit.stat_573884683","text":"#% chance to create Consecrated Ground when you Block","type":"explicit"},{"id":"explicit.stat_3025389409","text":"#% of Physical Attack Damage Leeched as Life per Red Socket","type":"explicit"},{"id":"explicit.stat_4271082039","text":"#% chance to Avoid being Ignited while on Low Life","type":"explicit"},{"id":"explicit.stat_4097174922","text":"Dexterity from Passives in Radius is Transformed to Strength","type":"explicit"},{"id":"explicit.stat_189451991","text":"Reflects # Chaos Damage to Melee Attackers","type":"explicit"},{"id":"explicit.stat_3812107348","text":"Instant Recovery when on Low Life","type":"explicit"},{"id":"explicit.stat_967108924","text":"#% increased Global Defences per White Socket","type":"explicit"},{"id":"explicit.stat_215882879","text":"#% increased Area of Effect during Flask Effect","type":"explicit"},{"id":"explicit.stat_3220927448","text":"Adds # to # Fire Damage to Staff Attacks","type":"explicit"},{"id":"explicit.stat_3435403756","text":"1 Added Passive Skill is Practiced Caster","type":"explicit"},{"id":"explicit.stat_645841425","text":"Area is inhabited by ranged monsters","type":"explicit"},{"id":"explicit.stat_3826977109","text":"Socketed Gems are Supported by Level # Maim","type":"explicit"},{"id":"explicit.stat_2415398184","text":"#% to all Elemental Resistances while you have at least 200 Strength","type":"explicit"},{"id":"explicit.stat_3457687358","text":"Enemies Killed with Attack or Spell Hits Explode, dealing #% of their Life as Fire Damage","type":"explicit"},{"id":"explicit.stat_3683134121","text":"#% increased Attack Speed with Movement Skills","type":"explicit"},{"id":"explicit.stat_1243237244","text":"Reflects # to # Lightning Damage to Melee Attackers","type":"explicit"},{"id":"explicit.stat_510304734","text":"#% increased Duration of Poisons you inflict during Flask effect","type":"explicit"},{"id":"explicit.stat_3390848861","text":"Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence","type":"explicit"},{"id":"explicit.stat_3916182167","text":"Area is inhabited by Demons","type":"explicit"},{"id":"explicit.stat_23537505","text":"Map has # additional random Prefix","type":"explicit"},{"id":"explicit.stat_1774881905","text":"#% reduced Mana Cost per Endurance Charge","type":"explicit"},{"id":"explicit.stat_485151258","text":"#% increased Damage against Ignited Enemies","type":"explicit"},{"id":"explicit.stat_107118693","text":"Socketed Gems are Supported by Level # Fortify","type":"explicit"},{"id":"explicit.stat_3872739249","text":"Grants Summon Harbinger of the Arcane Skill","type":"explicit"},{"id":"explicit.stat_1274831335","text":"#% increased Physical Attack Damage while Dual Wielding","type":"explicit"},{"id":"explicit.stat_4007482102","text":"Can't use Chest armour","type":"explicit"},{"id":"explicit.stat_3571342795","text":"# to Level of Socketed Elemental Gems","type":"explicit"},{"id":"explicit.stat_2532625478","text":"Socketed Gems are supported by Level # Elemental Damage with Attacks","type":"explicit"},{"id":"explicit.stat_3653191834","text":"Unaffected by Chilled Ground","type":"explicit"},{"id":"explicit.stat_3685028559","text":"#% chance to create Desecrated Ground when you Block","type":"explicit"},{"id":"explicit.stat_352612932","text":"#% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons","type":"explicit"},{"id":"explicit.stat_1342790450","text":"#% increased Quantity of Items Dropped by Slain Normal Enemies","type":"explicit"},{"id":"explicit.stat_3056188914","text":"Grants Level # Summon Stone Golem Skill","type":"explicit"},{"id":"explicit.stat_422591144","text":"Manifested Dancing Dervish dies when Rampage ends","type":"explicit"},{"id":"explicit.stat_2961018200","text":"Area is inhabited by Abominations","type":"explicit"},{"id":"explicit.stat_3162258068","text":"Cannot Block Attacks","type":"explicit"},{"id":"explicit.stat_974757096","text":"Triggers Level # Manifest Dancing Dervish on Rampage","type":"explicit"},{"id":"explicit.stat_3944525413","text":"1 Added Passive Skill is Feed the Fury","type":"explicit"},{"id":"explicit.stat_3706656107","text":"#% chance to Avoid being Frozen or Chilled if you have used a Fire Skill Recently","type":"explicit"},{"id":"explicit.stat_550444281","text":"Socketed Gems are Supported by Level # Cold to Fire","type":"explicit"},{"id":"explicit.stat_1756125633","text":"Manifested Dancing Dervish disables both weapon slots","type":"explicit"},{"id":"explicit.stat_311030839","text":"Adds # to # Physical Damage to Axe Attacks","type":"explicit"},{"id":"explicit.stat_2818518881","text":"#% increased Spell Damage per 10 Intelligence","type":"explicit"},{"id":"explicit.stat_2449668043","text":"#% increased Spell Damage per 5% Chance to Block Attack Damage","type":"explicit"},{"id":"explicit.stat_1604393896","text":"#% increased Cast Speed per Power Charge","type":"explicit"},{"id":"explicit.stat_2103009393","text":"Grants Level # Icestorm Skill","type":"explicit"},{"id":"explicit.stat_35810390","text":"+#% to Global Critical Strike Multiplier per Green Socket","type":"explicit"},{"id":"explicit.stat_1289910726","text":"Socketed Gems deal # to # additional Fire Damage","type":"explicit"},{"id":"explicit.stat_1740200922","text":"#% increased Rarity of Items found during Flask effect","type":"explicit"},{"id":"explicit.stat_3266394681","text":"Attack Skills have # to maximum number of Summoned Totems","type":"explicit"},{"id":"explicit.stat_4091369450","text":"#% increased Melee Damage during any Flask Effect","type":"explicit"},{"id":"explicit.stat_3914638685","text":"#% increased Critical Strike Chance if you have Killed Recently","type":"explicit"},{"id":"explicit.stat_2237528173","text":"Strength from Passives in Radius is Transformed to Dexterity","type":"explicit"},{"id":"explicit.stat_2434293916","text":"An Enemy Writhing Worms escape the Flask when used\nWrithing Worms are destroyed when Hit","type":"explicit"},{"id":"explicit.stat_4293455942","text":"Enemies Cannot Leech Life From you","type":"explicit"},{"id":"explicit.stat_791835907","text":"#% to Spell Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_2921084940","text":"Adds # to # Physical Damage to Spells while wielding a Two Handed Weapon","type":"explicit"},{"id":"explicit.stat_3261557635","text":"Bow Knockback at Close Range","type":"explicit"},{"id":"explicit.stat_99927264","text":"#% reduced Shock Duration on you","type":"explicit"},{"id":"explicit.stat_1507059769","text":"#% increased Attack Speed if you've Killed Recently","type":"explicit"},{"id":"explicit.stat_3218891195","text":"#% Chance to Block Spell Damage while Cursed","type":"explicit"},{"id":"explicit.stat_25085466","text":"Area is inhabited by Sea Witches and their Spawn","type":"explicit"},{"id":"explicit.stat_3489372920","text":"You have Phasing if you've Killed Recently","type":"explicit"},{"id":"explicit.stat_2839036860","text":"#% increased Endurance, Frenzy and Power Charge Duration","type":"explicit"},{"id":"explicit.stat_2847548062","text":"#% increased Mana Regeneration Rate per Power Charge","type":"explicit"},{"id":"explicit.stat_131358113","text":"1 Added Passive Skill is Exposure Therapy","type":"explicit"},{"id":"explicit.stat_2608615082","text":"Socketed Gems are Supported by Level # Mana Leech","type":"explicit"},{"id":"explicit.stat_1699499433","text":"Lose #% of Energy Shield on Kill","type":"explicit"},{"id":"explicit.stat_967556848","text":"Socketed Gems fire Projectiles in a circle","type":"explicit"},{"id":"explicit.stat_808491979","text":"Area is inhabited by Undead","type":"explicit"},{"id":"explicit.stat_2833226514","text":"# Strength Requirement","type":"explicit"},{"id":"explicit.stat_2582360791","text":"#% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_2457517302","text":"Area is inhabited by Solaris fanatics","type":"explicit"},{"id":"explicit.stat_1604736568","text":"Recover #% of Mana on Kill","type":"explicit"},{"id":"explicit.stat_3758293500","text":"Adds # to # Chaos Damage in Off Hand","type":"explicit"},{"id":"explicit.stat_3999401129","text":"#% of Cold Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_1169502663","text":"Grants Level # Frostbite Skill","type":"explicit"},{"id":"explicit.stat_2996445420","text":"Critical Strikes have Culling Strike","type":"explicit"},{"id":"explicit.stat_751813227","text":"Lose #% of Life on Kill","type":"explicit"},{"id":"explicit.stat_637766438","text":"You and nearby allies gain #% increased Damage","type":"explicit"},{"id":"explicit.stat_1916706958","text":"#% chance to Avoid interruption from Stuns while Casting","type":"explicit"},{"id":"explicit.stat_3243534964","text":"Cannot Leech Life from Critical Strikes","type":"explicit"},{"id":"explicit.stat_3433676080","text":"#% increased Rarity of Items Dropped by Slain Magic Enemies","type":"explicit"},{"id":"explicit.stat_927458676","text":"Spreads Tar when you take a Critical Strike","type":"explicit"},{"id":"explicit.stat_647983250","text":"#% Chance to Block Attack Damage if you have Blocked Spell Damage Recently","type":"explicit"},{"id":"explicit.stat_1187803783","text":"You are Shocked during Flask effect, causing 50% increased Damage taken","type":"explicit"},{"id":"explicit.stat_17526298","text":"Attacks with this Weapon have #% increased Elemental Damage","type":"explicit"},{"id":"explicit.stat_2864779809","text":"Gain #% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana","type":"explicit"},{"id":"explicit.stat_1619549198","text":"Ignited Enemies Burn #% slower","type":"explicit"},{"id":"explicit.stat_2797075304","text":"Counts as Dual Wielding","type":"explicit"},{"id":"explicit.stat_2221570601","text":"#% Global chance to Blind Enemies on hit","type":"explicit"},{"id":"explicit.stat_3194864913","text":"Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield","type":"explicit"},{"id":"explicit.stat_2618549697","text":"Added Small Passive Skills have #% increased Effect","type":"explicit"},{"id":"explicit.stat_1438403666","text":"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary","type":"explicit"},{"id":"explicit.stat_1454603936","text":"Adds # to # Physical Damage to Attacks with this Weapon per 3 Player Levels","type":"explicit"},{"id":"explicit.stat_3994193163","text":"Added Small Passive Skills also grant: # to Maximum Mana","type":"explicit"},{"id":"explicit.stat_2926399803","text":"Cannot be Stunned by Attacks if your other Ring is an Elder Item","type":"explicit"},{"id":"explicit.stat_4252630904","text":"Area is inhabited by Cultists of Kitava","type":"explicit"},{"id":"explicit.stat_31415336","text":"Lose all Frenzy, Endurance, and Power Charges when you Move","type":"explicit"},{"id":"explicit.stat_3103494675","text":"With at least 40 Dexterity in Radius, Ice Shot Pierces an additional Target","type":"explicit"},{"id":"explicit.stat_2718698372","text":"# to Level of Socketed Dexterity Gems","type":"explicit"},{"id":"explicit.stat_209056835","text":"#% chance to Trigger a Socketed Spell when you Attack with this Weapon","type":"explicit"},{"id":"explicit.stat_3359207393","text":"1 Added Passive Skill is Calamitous","type":"explicit"},{"id":"explicit.stat_2687254633","text":"#% of Lightning Damage Leeched as Life during Flask effect","type":"explicit"},{"id":"explicit.stat_1325047894","text":"#% of Damage is taken from Mana before Life per Power Charge","type":"explicit"},{"id":"explicit.stat_1435838855","text":"+1 to Level of Socketed Active Skill Gems per # Player Levels","type":"explicit"},{"id":"explicit.stat_3246099900","text":"Summoned Golems have #% increased Cooldown Recovery Rate","type":"explicit"},{"id":"explicit.stat_2040585053","text":"#% Chance to Block Attack Damage when in Off Hand","type":"explicit"},{"id":"explicit.stat_1390285657","text":"Socketed Gems are Supported by Level # Slower Projectiles","type":"explicit"},{"id":"explicit.stat_1337327984","text":"Socketed Gems are Supported by Level # Minion Life","type":"explicit"},{"id":"explicit.stat_2074744008","text":"With at least 40 Intelligence in Radius, #% increased Freezing Pulse Damage if\nyou've Shattered an Enemy Recently","type":"explicit"},{"id":"explicit.stat_3544527742","text":"You take #% reduced Extra Damage from Critical Strikes while you have no Power Charges","type":"explicit"},{"id":"explicit.stat_2837603657","text":"You can inflict an additional Ignite on an Enemy","type":"explicit"},{"id":"explicit.stat_3221550523","text":"Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level\nCan Consume # Uncorrupted Support Gem\nHas not Consumed any Gems","type":"explicit"},{"id":"explicit.stat_3882662078","text":"Adds # to # Physical Damage to Mace or Sceptre Attacks","type":"explicit"},{"id":"explicit.stat_3492297134","text":"Gain #% of Physical Damage as Extra Chaos Damage while at maximum Power Charges","type":"explicit"},{"id":"explicit.stat_496011033","text":"# Chaos Damage taken","type":"explicit"},{"id":"explicit.stat_1539696482","text":"With at least 40 Strength in Radius, Cleave has +1 to Radius per Nearby\nEnemy, up to +10","type":"explicit"},{"id":"explicit.stat_280213220","text":"#% chance to Taunt Enemies on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_2614321687","text":"#% of Damage Leeched as Life against Shocked Enemies","type":"explicit"},{"id":"explicit.stat_851224302","text":"Zealot's Oath during Flask effect","type":"explicit"},{"id":"explicit.stat_2609768284","text":"Area is inhabited by the Vaal","type":"explicit"},{"id":"explicit.stat_1829238593","text":"Arrows Pierce all Targets","type":"explicit"},{"id":"explicit.stat_4078194486","text":"Recover #% of Life at the end of the Flask Effect","type":"explicit"},{"id":"explicit.stat_1736172673","text":"Damage with Weapons Penetrates #% Elemental Resistance","type":"explicit"},{"id":"explicit.stat_3849523464","text":"# to Maximum Life per Elder Item Equipped","type":"explicit"},{"id":"explicit.stat_1695720239","text":"#% chance to gain a Frenzy Charge when you Stun an Enemy","type":"explicit"},{"id":"explicit.stat_3376452528","text":"Adds # to # Cold Damage to Spells while Dual Wielding","type":"explicit"},{"id":"explicit.stat_4053951709","text":"#% chance to Avoid being Poisoned","type":"explicit"},{"id":"explicit.stat_803730540","text":"Immune to Freeze, Chill, Curses and Stuns during Flask Effect","type":"explicit"},{"id":"explicit.stat_3134632618","text":"Area is inhabited by Lunaris fanatics","type":"explicit"},{"id":"explicit.stat_2503253050","text":"Cannot gain Power Charges","type":"explicit"},{"id":"explicit.stat_3442976749","text":"Players are Cursed with Frostbite, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_2253286128","text":"#% Chance to Block Spell Damage while on Low Life","type":"explicit"},{"id":"explicit.stat_98977150","text":"Pain Attunement","type":"explicit"},{"id":"explicit.stat_4133552694","text":"#% increased Effect of non-Damaging Ailments per Elder Item Equipped","type":"explicit"},{"id":"explicit.stat_214001793","text":"#% increased Damage over Time while Dual Wielding","type":"explicit"},{"id":"explicit.stat_4056985119","text":"+1 to maximum number of Raised Zombies per # Strength","type":"explicit"},{"id":"explicit.stat_2195137717","text":"Half of your Strength is added to your Minions","type":"explicit"},{"id":"explicit.stat_3954637034","text":"Summoned Raging Spirits' Hits always Ignite","type":"explicit"},{"id":"explicit.stat_886931978","text":"#% increased Recovery when on Low Life","type":"explicit"},{"id":"explicit.stat_2920230984","text":"#% additional chance for Slain monsters to drop Scrolls of Wisdom","type":"explicit"},{"id":"explicit.stat_3741365813","text":"Grants Perfect Agony during Flask effect","type":"explicit"},{"id":"explicit.stat_308618188","text":"Take # Chaos Damage per Second during Flask effect","type":"explicit"},{"id":"explicit.stat_273476097","text":"Gain #% of Physical Attack Damage as Extra Fire Damage","type":"explicit"},{"id":"explicit.stat_3654074125","text":"Attacks have #% chance to Poison while at maximum Frenzy Charges","type":"explicit"},{"id":"explicit.stat_1054322244","text":"#% chance to gain an Endurance Charge on Kill","type":"explicit"},{"id":"explicit.stat_968369591","text":"#% increased Attack Speed during Flask effect","type":"explicit"},{"id":"explicit.stat_3352373076","text":"Adds # to # Lightning Damage to Spells while Dual Wielding","type":"explicit"},{"id":"explicit.stat_1221011086","text":"#% increased Damage with Poison per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_2802263253","text":"With at least 1000 Strength, #% of Damage dealt by your Raised Zombies is Leeched to you as Life","type":"explicit"},{"id":"explicit.stat_2562665460","text":"Stun Threshold is based on Energy Shield instead of Life","type":"explicit"},{"id":"explicit.stat_3914740665","text":"Grants Level # Aspect of the Avian Skill","type":"explicit"},{"id":"explicit.stat_1186934478","text":"#% reduced Maximum number of Summoned Raging Spirits","type":"explicit"},{"id":"explicit.stat_1298238534","text":"Adds # to # Physical Damage to Dagger Attacks","type":"explicit"},{"id":"explicit.stat_1210937073","text":"Spectres have a Base Duration of # seconds\nSpectres do not travel between Areas","type":"explicit"},{"id":"explicit.stat_262301496","text":"#% reduced Mana Cost of Raise Spectre","type":"explicit"},{"id":"explicit.stat_1862097882","text":"Spectres have #% increased Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_2770782267","text":"Minions Leech #% of Damage as Life","type":"explicit"},{"id":"explicit.stat_1285587221","text":"Intelligence from Passives in Radius is Transformed to Strength","type":"explicit"},{"id":"explicit.stat_2893557981","text":"Your Critical Strikes do not deal extra Damage during Flask effect","type":"explicit"},{"id":"explicit.stat_2865989731","text":"Adds 1 to Maximum Life per # Intelligence Allocated in Radius","type":"explicit"},{"id":"explicit.stat_1261958804","text":"Adds # to # Cold Damage to Staff Attacks","type":"explicit"},{"id":"explicit.stat_3640252904","text":"1 Added Passive Skill is Heavy Hitter","type":"explicit"},{"id":"explicit.stat_2542542825","text":"With at least 40 Intelligence in Radius, Magma Orb fires an additional Projectile","type":"explicit"},{"id":"explicit.stat_956546305","text":"Grants Level # Aspect of the Spider Skill","type":"explicit"},{"id":"explicit.stat_1891782369","text":"#% increased Damage with Ignite inflicted on Chilled Enemies","type":"explicit"},{"id":"explicit.stat_3516340048","text":"Area is inhabited by Ghosts","type":"explicit"},{"id":"explicit.stat_1696792323","text":"#% increased Damage per Frenzy Charge with Hits against Enemies on Low Life","type":"explicit"},{"id":"explicit.stat_1898967950","text":"Regenerate # Life per second per Endurance Charge","type":"explicit"},{"id":"explicit.stat_539747809","text":"Socketed Gems are Supported by Level # Blasphemy","type":"explicit"},{"id":"explicit.stat_269590092","text":"#% reduced Attack and Cast Speed per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_3491499175","text":"#% increased Poison Duration per Power Charge","type":"explicit"},{"id":"explicit.stat_503990161","text":"Socketed Gems are Supported by Level # Spell Cascade","type":"explicit"},{"id":"explicit.stat_908650225","text":"#% increased Damage if you have Shocked an Enemy Recently","type":"explicit"},{"id":"explicit.stat_3150000576","text":"Raised Zombies have #% to all Resistances","type":"explicit"},{"id":"explicit.stat_2777278657","text":"#% chance to Poison on Hit during Flask effect","type":"explicit"},{"id":"explicit.stat_1736403946","text":"Minions' Hits can only Kill Ignited Enemies","type":"explicit"},{"id":"explicit.stat_364728407","text":"Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy","type":"explicit"},{"id":"explicit.stat_2590715472","text":"Take # Physical Damage when you use a Movement Skill","type":"explicit"},{"id":"explicit.stat_3279535558","text":"Cannot Leech when on Low Life","type":"explicit"},{"id":"explicit.stat_443525707","text":"Nearby Enemies have #% increased Effect of Curses on them","type":"explicit"},{"id":"explicit.stat_3635120731","text":"#% chance to Avoid Projectiles while Phasing","type":"explicit"},{"id":"explicit.stat_426847518","text":"Curse Enemies with Frostbite on Hit, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_97250660","text":"Projectiles Pierce an additional Target while you have Phasing","type":"explicit"},{"id":"explicit.stat_4047895119","text":"#% increased Minion Attack Speed per 50 Dexterity","type":"explicit"},{"id":"explicit.stat_576760472","text":"Passive Skills in Radius also grant: Traps and Mines deal # to # added Physical Damage","type":"explicit"},{"id":"explicit.stat_69898010","text":"Adds # to # Physical Damage to Staff Attacks","type":"explicit"},{"id":"explicit.stat_2706994884","text":"Shocked Enemies you Kill Explode, dealing #% of\ntheir Life as Lightning Damage which cannot Shock","type":"explicit"},{"id":"explicit.stat_4119032338","text":"#% increased Area of Effect per 25 Rampage Kills","type":"explicit"},{"id":"explicit.stat_4004298002","text":"Unaffected by Desecrated Ground","type":"explicit"},{"id":"explicit.stat_4031081471","text":"You take # Chaos Damage per second for # seconds on Kill","type":"explicit"},{"id":"explicit.stat_710372469","text":"Curse Enemies with Conductivity on Hit, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_1478247313","text":"#% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_1265282021","text":"Grants Level # Aspect of the Cat Skill","type":"explicit"},{"id":"explicit.stat_3771516363","text":"#% additional Physical Damage Reduction","type":"explicit"},{"id":"explicit.stat_3769854701","text":"Cannot Leech Life","type":"explicit"},{"id":"explicit.stat_4268321763","text":"#% increased Attack Speed when on Full Life","type":"explicit"},{"id":"explicit.stat_4125471110","text":"#% chance to Trigger Level 16 Molten Burst on Melee Hit","type":"explicit"},{"id":"explicit.stat_2919089822","text":"#% chance to Ignite when in Main Hand","type":"explicit"},{"id":"explicit.stat_540300548","text":"1 Added Passive Skill is Smite the Weak","type":"explicit"},{"id":"explicit.stat_105466375","text":"Grants Level # Purity of Elements Skill","type":"explicit"},{"id":"explicit.stat_889691035","text":"#% increased Attack Speed per 10 Dexterity","type":"explicit"},{"id":"explicit.stat_738100799","text":"Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage","type":"explicit"},{"id":"explicit.stat_1274125114","text":"Vaal Skills have #% reduced Soul Cost during effect","type":"explicit"},{"id":"explicit.stat_2901262227","text":"#% chance to create Chilled Ground when you Freeze an Enemy","type":"explicit"},{"id":"explicit.stat_3446170049","text":"Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken","type":"explicit"},{"id":"explicit.stat_1473289174","text":"Unaffected by Shock","type":"explicit"},{"id":"explicit.stat_4148932984","text":"#% chance to create Consecrated Ground when you Shatter an Enemy","type":"explicit"},{"id":"explicit.stat_4260403588","text":"1% increased Rarity of Items found per # Rampage Kills","type":"explicit"},{"id":"explicit.stat_3648858570","text":"# to # Cold Damage per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_2066426995","text":"Adds # to # Physical Damage to Attacks per 25 Dexterity","type":"explicit"},{"id":"explicit.stat_915233352","text":"1% increased Melee Physical Damage with Unarmed Attacks per # Dexterity Allocated in Radius","type":"explicit"},{"id":"explicit.stat_3175679225","text":"Nearby allies gain #% increased Damage","type":"explicit"},{"id":"explicit.stat_3772485866","text":"Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage","type":"explicit"},{"id":"explicit.stat_519622288","text":"Warcries Knock Back and Interrupt Enemies in a smaller Area","type":"explicit"},{"id":"explicit.stat_456916387","text":"On Killing a Poisoned Enemy, nearby Enemies are Poisoned","type":"explicit"},{"id":"explicit.stat_2546417825","text":"#% increased Movement Speed if you've used a Warcry Recently","type":"explicit"},{"id":"explicit.stat_3250272113","text":"1 Added Passive Skill is Brewed for Potency","type":"explicit"},{"id":"explicit.stat_4017879067","text":"#% increased Minion Movement Speed per 50 Dexterity","type":"explicit"},{"id":"explicit.stat_1307972622","text":"#% increased Area of Effect per 20 Intelligence","type":"explicit"},{"id":"explicit.stat_2803182108","text":"#% increased Elemental Damage if you've used a Warcry Recently","type":"explicit"},{"id":"explicit.stat_1085545682","text":"You have Tailwind if you have dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_3503466234","text":"#% increased Damage with Hits and Ailments against Blinded Enemies","type":"explicit"},{"id":"explicit.stat_3591359751","text":"You have no Armour or Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_3074608753","text":"Summoned Skeletons have a #% chance to Cover Enemies in Ash on Hit","type":"explicit"},{"id":"explicit.stat_67280387","text":"Gain #% of Maximum Life as Extra Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_2233361223","text":"Adds # to # Cold Damage against Chilled or Frozen Enemies","type":"explicit"},{"id":"explicit.stat_3484267929","text":"Nearby allies Recover #% of your Maximum Life when you Die","type":"explicit"},{"id":"explicit.stat_3890287045","text":"Cannot Block while you have no Energy Shield","type":"explicit"},{"id":"explicit.stat_1165847826","text":"#% reduced Spell Damage taken from Blinded Enemies","type":"explicit"},{"id":"explicit.stat_1023752508","text":"No Chance to Block","type":"explicit"},{"id":"explicit.stat_797833282","text":"Minions deal # to # Added Attack Physical Damage","type":"explicit"},{"id":"explicit.stat_963261439","text":"#% increased Elemental Damage per 10 Dexterity","type":"explicit"},{"id":"explicit.stat_2022724400","text":"#% increased Dexterity if Strength is higher than Intelligence","type":"explicit"},{"id":"explicit.stat_496822696","text":"#% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons","type":"explicit"},{"id":"explicit.stat_54812069","text":"#% of Damage from Hits is taken from your Spectres' Life before you","type":"explicit"},{"id":"explicit.stat_3814876985","text":"#% chance to gain a Power Charge on Critical Strike","type":"explicit"},{"id":"explicit.stat_3693130674","text":"#% increased Lightning Damage per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_2912438397","text":"Summoned Skeletons take #% of their Maximum Life per second as Fire Damage","type":"explicit"},{"id":"explicit.stat_298173317","text":"#% increased Impale Effect","type":"explicit"},{"id":"explicit.stat_3088991881","text":"With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to # Skeleton Mages","type":"explicit"},{"id":"explicit.stat_1269609669","text":"# Life gained on Kill per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_1810011556","text":"Reflects # Lightning Damage to Attackers on Block","type":"explicit"},{"id":"explicit.stat_3900877792","text":"Deal no Physical Damage","type":"explicit"},{"id":"explicit.stat_2594215131","text":"#% increased Physical Weapon Damage per 10 Strength","type":"explicit"},{"id":"explicit.stat_3878987051","text":"Socketed Gems are supported by Level # Cast on Death","type":"explicit"},{"id":"explicit.stat_1702195217","text":"#% Chance to Block Attack Damage","type":"explicit"},{"id":"explicit.stat_1420236871","text":"Ignites you inflict with Attacks deal Damage #% faster","type":"explicit"},{"id":"explicit.stat_1723061251","text":"Totems Reflect #% of their maximum Life as Fire Damage to nearby Enemies when Hit","type":"explicit"},{"id":"explicit.stat_1669220541","text":"Your Skills have no Mana Cost during Flask effect","type":"explicit"},{"id":"explicit.stat_811386429","text":"With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains #% increased Damage each time it Hits","type":"explicit"},{"id":"explicit.stat_1489905076","text":"Allies' Aura Buffs do not affect you","type":"explicit"},{"id":"explicit.stat_2419712247","text":"#% increased Duration of Ailments on Enemies","type":"explicit"},{"id":"explicit.stat_3111255591","text":"#% of Physical Attack Damage Leeched as Life during Flask effect","type":"explicit"},{"id":"explicit.stat_4266776872","text":"Glancing Blows","type":"explicit"},{"id":"explicit.stat_1275066948","text":"#% increased Melee Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2114080270","text":"Culling Strike against Enemies Cursed with Poacher's Mark","type":"explicit"},{"id":"explicit.stat_1473444150","text":"#% increased Attack and Cast Speed while you have Fortify","type":"explicit"},{"id":"explicit.stat_3821472155","text":"Adds # to # Physical Damage to Attacks per Level","type":"explicit"},{"id":"explicit.stat_3110554274","text":"#% to Elemental Resistances during Flask Effect","type":"explicit"},{"id":"explicit.stat_3212461220","text":"#% Chance to Cause Monster to Flee on Block","type":"explicit"},{"id":"explicit.stat_3585572043","text":"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to # Ranged Weapons","type":"explicit"},{"id":"explicit.stat_989228672","text":"Players are Cursed with Flammability, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_1589090910","text":"Summon an additional Skeleton Warrior with Summon Skeleton","type":"explicit"},{"id":"explicit.stat_2134166669","text":"#% increased Effect of Chilled Ground","type":"explicit"},{"id":"explicit.stat_3587013273","text":"Socketed Gems are Supported by Level # Item Rarity","type":"explicit"},{"id":"explicit.stat_3579673398","text":"Hits with this Weapon Overwhelm #% Physical Damage Reduction","type":"explicit"},{"id":"explicit.stat_5955083","text":"Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence","type":"explicit"},{"id":"explicit.stat_3085465082","text":"Mines have #% increased Detonation Speed","type":"explicit"},{"id":"explicit.stat_2483362276","text":"Far Shot","type":"explicit"},{"id":"explicit.stat_209387074","text":"Enemies you kill are Shocked","type":"explicit"},{"id":"explicit.stat_1625103793","text":"#% increased Damage taken per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_2831922878","text":"#% increased Attack and Cast Speed if you've used a Movement Skill Recently","type":"explicit"},{"id":"explicit.stat_625037258","text":"Attacks with this Weapon deal Double Damage to Chilled Enemies","type":"explicit"},{"id":"explicit.stat_2102212273","text":"#% reduced Critical Strike Chance per Power Charge","type":"explicit"},{"id":"explicit.stat_676883595","text":"Cannot be Ignited if Strength is higher than Dexterity","type":"explicit"},{"id":"explicit.stat_1351893427","text":"With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to # Radius","type":"explicit"},{"id":"explicit.stat_3814066599","text":"Socketed Gems are Supported by Level # Trap And Mine Damage","type":"explicit"},{"id":"explicit.stat_1053326368","text":"#% chance to Avoid being Chilled during Flask effect","type":"explicit"},{"id":"explicit.stat_2886998024","text":"Gems Socketed in Red Sockets have # to Level","type":"explicit"},{"id":"explicit.stat_3417757416","text":"#% increased Cooldown Recovery Rate for throwing Traps","type":"explicit"},{"id":"explicit.stat_172076472","text":"# Dexterity per 1 Dexterity on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_2021420128","text":"Trigger Level # Warlords's Mark when you Hit a Rare or Unique Enemy","type":"explicit"},{"id":"explicit.stat_2236460050","text":"Gems Socketed in Blue Sockets gain #% increased Experience","type":"explicit"},{"id":"explicit.stat_144887967","text":"#% chance to gain Phasing for # seconds when your Trap is triggered by an Enemy","type":"explicit"},{"id":"explicit.stat_1073384532","text":"Recover # Energy Shield when your Trap is triggered by an Enemy","type":"explicit"},{"id":"explicit.stat_3738335639","text":"#% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy","type":"explicit"},{"id":"explicit.stat_2035759353","text":"Shocks you inflict spread to other Enemies within a Radius of #","type":"explicit"},{"id":"explicit.stat_1813544255","text":"Area is inhabited by Goatmen","type":"explicit"},{"id":"explicit.stat_3881126302","text":"Cannot be Frozen if Dexterity is higher than Intelligence","type":"explicit"},{"id":"explicit.stat_3799930101","text":"Gems Socketed in Green Sockets have #% to Quality","type":"explicit"},{"id":"explicit.stat_3765671129","text":"With at least 40 Dexterity in Radius, Dual Strike has a #% chance\nto deal Double Damage with the Main-Hand Weapon","type":"explicit"},{"id":"explicit.stat_3603019813","text":"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage\nto surrounding targets","type":"explicit"},{"id":"explicit.stat_3175722882","text":"#% of Life Regenerated per second per Fragile Regrowth","type":"explicit"},{"id":"explicit.stat_1936544447","text":"#% chance to gain a Power Charge when you Throw a Trap","type":"explicit"},{"id":"explicit.stat_1306791873","text":"Lose all Fragile Regrowth when Hit","type":"explicit"},{"id":"explicit.stat_1488891279","text":"Chill Enemies for # second on Hit with this Weapon when in Off Hand","type":"explicit"},{"id":"explicit.stat_755922799","text":"Minions have #% chance to deal Double Damage","type":"explicit"},{"id":"explicit.stat_1097026492","text":"With at least 40 Intelligence in Radius, Raised\nZombies' Slam Attack has #% increased Cooldown Recovery Rate","type":"explicit"},{"id":"explicit.stat_3560157887","text":"Fortify Buffs you create instead grant 30% more Evasion Rating","type":"explicit"},{"id":"explicit.stat_625682777","text":"#% of Physical Damage from Hits taken as Cold Damage during Flask effect","type":"explicit"},{"id":"explicit.stat_3981960937","text":"#% chance to Avoid being Shocked while Chilled","type":"explicit"},{"id":"explicit.stat_670814047","text":"With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground","type":"explicit"},{"id":"explicit.stat_1585280892","text":"Mortal Conviction","type":"explicit"},{"id":"explicit.stat_1765389199","text":"Life Leech from Hits with this Weapon is instant","type":"explicit"},{"id":"explicit.stat_208447205","text":"Trigger Level # Fog of War when your Trap is triggered","type":"explicit"},{"id":"explicit.stat_3590104875","text":"You lose all Endurance Charges on reaching maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_1086623733","text":"Gain 1 Fragile Regrowth each second","type":"explicit"},{"id":"explicit.stat_3739863694","text":"#% chance to Impale Enemies on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_781633505","text":"With at least 40 Intelligence in Radius, Raised Zombies' Slam\nAttack deals #% increased Damage","type":"explicit"},{"id":"explicit.stat_1367987042","text":"With 40 Intelligence in Radius, Glacial Cascade has an additional Burst","type":"explicit"},{"id":"explicit.stat_3541114083","text":"Grants Level # Bear Trap Skill","type":"explicit"},{"id":"explicit.stat_715256302","text":"Socketed Gems are Supported by Level # Brutality","type":"explicit"},{"id":"explicit.stat_2872815301","text":"#% chance to Avoid being Frozen during Flask effect","type":"explicit"},{"id":"explicit.stat_1002855537","text":"Socketed Gems are Supported by Level # Vile Toxins","type":"explicit"},{"id":"explicit.stat_825352061","text":"Grants Level # Death Aura Skill","type":"explicit"},{"id":"explicit.stat_899329924","text":"Gems can be Socketed in this Item ignoring Socket Colour","type":"explicit"},{"id":"explicit.stat_3030692053","text":"Socketed Gems are Supported by Level # Ballista Totem","type":"explicit"},{"id":"explicit.stat_3796013729","text":"Socketed Gems are Supported by Level # Ruthless","type":"explicit"},{"id":"explicit.stat_2764915899","text":"Curse Enemies with Despair on Hit, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_1653010703","text":"#% to Non-Ailment Chaos Damage over Time Multiplier","type":"explicit"},{"id":"explicit.stat_786380548","text":"With at least 40 Strength in Radius, Molten Strike fires #% more Projectiles","type":"explicit"},{"id":"explicit.stat_1567462963","text":"Socketed Gems are supported by Level # Additional Accuracy","type":"explicit"},{"id":"explicit.stat_335735137","text":"Totems cannot be Stunned","type":"explicit"},{"id":"explicit.stat_308396001","text":"#% increased Movement Speed if you haven't been Hit Recently","type":"explicit"},{"id":"explicit.stat_1114351662","text":"# to Maximum Life per 10 Intelligence","type":"explicit"},{"id":"explicit.stat_2557247391","text":"Recharges # Charge when you Consume an Ignited corpse","type":"explicit"},{"id":"explicit.stat_480975218","text":"With at least 40 Intelligence in Radius, Fireball cannot ignite","type":"explicit"},{"id":"explicit.stat_1493590317","text":"You have Onslaught while you have Fortify","type":"explicit"},{"id":"explicit.stat_1112135314","text":"#% chance to Trigger a Socketed Warcry Skill when you lose Endurance Charges","type":"explicit"},{"id":"explicit.stat_153777645","text":"#% increased Area of Effect of Hex Skills","type":"explicit"},{"id":"explicit.stat_3002060175","text":"Drops Shocked Ground while moving, lasting # seconds","type":"explicit"},{"id":"explicit.stat_374891408","text":"#% of Physical Attack Damage Leeched as Mana during Flask effect","type":"explicit"},{"id":"explicit.stat_2135899247","text":"Lose all Power Charges on reaching Maximum Power Charges","type":"explicit"},{"id":"explicit.stat_747037697","text":"#% increased Totem Life per 10 Strength Allocated in Radius","type":"explicit"},{"id":"explicit.stat_1195849808","text":"You gain Onslaught for # seconds on Kill","type":"explicit"},{"id":"explicit.stat_2347201221","text":"Recover #% of Energy Shield when you Kill an Enemy during Flask Effect","type":"explicit"},{"id":"explicit.stat_3635566977","text":"#% to all maximum Resistances while you have no Endurance Charges","type":"explicit"},{"id":"explicit.stat_542923416","text":"#% increased Movement Speed while Shocked","type":"explicit"},{"id":"explicit.stat_2661163721","text":"Gain #% of Physical Damage as Extra Cold Damage during effect","type":"explicit"},{"id":"explicit.stat_854030602","text":"Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers","type":"explicit"},{"id":"explicit.stat_2448920197","text":"#% increased effect","type":"explicit"},{"id":"explicit.stat_3828375170","text":"Bleeding you inflict deals Damage #% faster","type":"explicit"},{"id":"explicit.stat_4069101408","text":"#% chance to Shock Chilled Enemies","type":"explicit"},{"id":"explicit.stat_2129392647","text":"1 Added Passive Skill is Circling Oblivion","type":"explicit"},{"id":"explicit.stat_28299254","text":"Herald of Thunder's Storms Hit Enemies with #% increased Frequency","type":"explicit"},{"id":"explicit.stat_3448743676","text":"# to Level of Socketed Golem Gems","type":"explicit"},{"id":"explicit.stat_2158060122","text":"#% of Lightning Damage Converted to Cold Damage","type":"explicit"},{"id":"explicit.stat_529432426","text":"#% increased Damage while Shocked","type":"explicit"},{"id":"explicit.stat_2651141461","text":"Area is inhabited by Humanoids","type":"explicit"},{"id":"explicit.stat_1964607303","text":"Herald of Thunder also creates a storm when you Shock an Enemy","type":"explicit"},{"id":"explicit.stat_4198346809","text":"Area is inhabited by Animals","type":"explicit"},{"id":"explicit.stat_325437053","text":"Mines can be Detonated an additional time","type":"explicit"},{"id":"explicit.stat_2560038623","text":"With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area\nWith at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges","type":"explicit"},{"id":"explicit.stat_2982500944","text":"#% increased Projectile Damage while in Blood Stance","type":"explicit"},{"id":"explicit.stat_3967845372","text":"Curse Enemies with Vulnerability on Hit, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_2188905761","text":"#% increased Attack Speed if you've changed Stance Recently","type":"explicit"},{"id":"explicit.stat_97064873","text":"#% chance to Freeze, Shock and Ignite during Flask effect","type":"explicit"},{"id":"explicit.stat_2437193018","text":"All Attack Damage Chills when you Stun","type":"explicit"},{"id":"explicit.stat_2095084973","text":"Cannot Knock Enemies Back","type":"explicit"},{"id":"explicit.stat_2229840047","text":"Chaos Damage does not bypass Energy Shield during effect","type":"explicit"},{"id":"explicit.stat_2196695640","text":"#% increased Attack Critical Strike Chance per 200 Accuracy Rating","type":"explicit"},{"id":"explicit.stat_3910961021","text":"#% increased Herald of Ice Damage","type":"explicit"},{"id":"explicit.stat_550848224","text":"# Life Regenerated per Second while in Blood Stance","type":"explicit"},{"id":"explicit.stat_1141756390","text":"With at least 40 Intelligence in Radius, Magma Orb deals #% more Damage per Chain","type":"explicit"},{"id":"explicit.stat_778036553","text":"Vaal Skills have #% increased Critical Strike Chance during effect","type":"explicit"},{"id":"explicit.stat_1198418726","text":"Grants Level # Blight Skill","type":"explicit"},{"id":"explicit.stat_4170725899","text":"Blight has #% increased Hinder Duration","type":"explicit"},{"id":"explicit.stat_1556625719","text":"Gain a Power Charge for each Enemy you hit with a Critical Strike","type":"explicit"},{"id":"explicit.stat_530280833","text":"With at least 40 Strength in Radius, Vigilant Strike\nFortifies you and Nearby Allies for # seconds","type":"explicit"},{"id":"explicit.stat_1608425196","text":"Intelligence from Passives in Radius is Transformed to Dexterity","type":"explicit"},{"id":"explicit.stat_1070347065","text":"# Intelligence per 1 Intelligence on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_3304763863","text":"#% increased Quantity of Items Dropped by Slain Frozen Enemies","type":"explicit"},{"id":"explicit.stat_3413085237","text":"#% increased Skeleton Attack Speed","type":"explicit"},{"id":"explicit.stat_1607849541","text":"#% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_rakiata","text":"Commanded leadership over # warriors under Rakiata","type":"explicit"},{"id":"explicit.stat_4003278965","text":"Map has # additional random Modifier","type":"explicit"},{"id":"explicit.stat_3013430129","text":"# second to Summon Skeleton Cooldown","type":"explicit"},{"id":"explicit.stat_573347393","text":"Iron Grip","type":"explicit"},{"id":"explicit.stat_175362265","text":"#% to Chaos Resistance per Poison on you","type":"explicit"},{"id":"explicit.stat_2466912132","text":"#% increased Armour while Bleeding","type":"explicit"},{"id":"explicit.stat_1569101201","text":"Exerted Attacks deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_1457679290","text":"Enemy Projectiles Pierce you","type":"explicit"},{"id":"explicit.stat_3121133045","text":"Your Lightning Damage can Ignite","type":"explicit"},{"id":"explicit.stat_536957","text":"#% increased Lightning Damage while affected by Herald of Thunder","type":"explicit"},{"id":"explicit.stat_50381303","text":"Celestial Footprints","type":"explicit"},{"id":"explicit.stat_1922061483","text":"+# to Evasion Rating while in Sand Stance","type":"explicit"},{"id":"explicit.stat_721014846","text":"You cannot be Hindered","type":"explicit"},{"id":"explicit.stat_786460697","text":"Agony Crawler deals #% increased Damage","type":"explicit"},{"id":"explicit.stat_2828673491","text":"Regenerate #% of Life per second per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_3111456397","text":"# to Spectre maximum Life","type":"explicit"},{"id":"explicit.stat_2604619892","text":"#% increased Duration of Elemental Ailments on Enemies","type":"explicit"},{"id":"explicit.stat_2230931659","text":"#% chance to gain a Frenzy Charge on Killing a Frozen Enemy","type":"explicit"},{"id":"explicit.stat_2658399404","text":"Bleeding you inflict is Reflected to you","type":"explicit"},{"id":"explicit.stat_3767939384","text":"Nearby Allies have #% increased Defences per 100 Strength you have","type":"explicit"},{"id":"explicit.stat_2342448236","text":"1 Added Passive Skill is Prismatic Heart","type":"explicit"},{"id":"explicit.stat_947072590","text":"You cannot be Ignited for # second after being Ignited","type":"explicit"},{"id":"explicit.stat_1217476473","text":"Recover #% of Life when you Kill an Enemy during Flask Effect","type":"explicit"},{"id":"explicit.stat_3607154250","text":"#% chance to gain a Power Charge on Killing a Frozen Enemy","type":"explicit"},{"id":"explicit.stat_2374357674","text":"Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you","type":"explicit"},{"id":"explicit.stat_1161337167","text":"Can be modified while Corrupted","type":"explicit"},{"id":"explicit.stat_2517031897","text":"#% increased Cold Damage per 1% Cold Resistance above 75%","type":"explicit"},{"id":"explicit.stat_3229976559","text":"#% increased Mana Reserved per 250 total Attributes","type":"explicit"},{"id":"explicit.stat_4224965099","text":"Lightning Damage from Enemies Hitting you is Lucky","type":"explicit"},{"id":"explicit.stat_1471600638","text":"Socketed Curse Gems have #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_3446950357","text":"Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage","type":"explicit"},{"id":"explicit.stat_1086057912","text":"Minions deal #% increased Damage against Abyssal Monsters","type":"explicit"},{"id":"explicit.stat_2666795121","text":"#% increased Mana Regeneration Rate per Raised Spectre","type":"explicit"},{"id":"explicit.stat_2241560081","text":"#% increased Attack Speed per 25 Dexterity","type":"explicit"},{"id":"explicit.stat_2495041954","text":"Overwhelm #% Physical Damage Reduction","type":"explicit"},{"id":"explicit.stat_2841618445","text":"Regenerate #% of Life per second for each Raised Zombie","type":"explicit"},{"id":"explicit.stat_2418601510","text":"Your Chaos Damage can Shock","type":"explicit"},{"id":"explicit.stat_575111651","text":"#% chance to Shock Attackers for 4 seconds on Block","type":"explicit"},{"id":"explicit.stat_3434279150","text":"Adds # to # Fire Spell Damage per Buff on you","type":"explicit"},{"id":"explicit.stat_2053992416","text":"With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike deal 50% less Lightning Damage","type":"explicit"},{"id":"explicit.stat_1170556324","text":"With at least 40 Dexterity in Radius, Galvanic Arrow deals #% increased Area Damage","type":"explicit"},{"id":"explicit.stat_1438488526","text":"Nearby Allies have #% to Critical Strike Multiplier per 100 Dexterity you have","type":"explicit"},{"id":"explicit.stat_2445675562","text":"#% Chance to Block Attack Damage per Summoned Skeleton","type":"explicit"},{"id":"explicit.stat_3945934607","text":"With at least 40 Dexterity in Radius, Galvanic Arrow has #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_4238266823","text":"#% of Lightning Damage Converted to Chaos Damage","type":"explicit"},{"id":"explicit.stat_3213407110","text":"# to Accuracy Rating while at Maximum Frenzy Charges","type":"explicit"},{"id":"explicit.stat_2771181375","text":"#% increased Poison Duration if you have at least 150 Intelligence","type":"explicit"},{"id":"explicit.stat_3404168630","text":"#% increased Global Critical Strike Chance when in Main Hand","type":"explicit"},{"id":"explicit.stat_185598681","text":"Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value","type":"explicit"},{"id":"explicit.stat_3788706881","text":"# maximum Energy Shield per 5 Strength","type":"explicit"},{"id":"explicit.stat_3417711605","text":"Damage Penetrates #% Cold Resistance","type":"explicit"},{"id":"explicit.stat_121185030","text":"#% increased Rarity of Items found from Slain Unique Enemies","type":"explicit"},{"id":"explicit.stat_4253105373","text":"Herald of Agony has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_3408048164","text":"Adds # minimum Cold Damage to Spells per Power Charge","type":"explicit"},{"id":"explicit.stat_2021058489","text":"#% chance to Evade Attack Hits","type":"explicit"},{"id":"explicit.stat_3192592092","text":"Sockets cannot be modified","type":"explicit"},{"id":"explicit.stat_2572910724","text":"Herald of Agony has #% increased Buff Effect","type":"explicit"},{"id":"explicit.stat_4181057577","text":"#% less Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_3853996752","text":"#% chance for Energy Shield Recharge to start when you use a Skill","type":"explicit"},{"id":"explicit.stat_3037553757","text":"#% increased Warcry Buff Effect","type":"explicit"},{"id":"explicit.stat_2642525868","text":"#% increased Lightning Damage per 1% Lightning Resistance above 75%","type":"explicit"},{"id":"explicit.stat_1665492921","text":"Grants Level # Herald of Thunder Skill","type":"explicit"},{"id":"explicit.stat_4091848539","text":"# Armour if you've Blocked Recently","type":"explicit"},{"id":"explicit.stat_3062763405","text":"#% Global Critical Strike Multiplier while you have no Frenzy Charges","type":"explicit"},{"id":"explicit.stat_1472543401","text":"Cannot be Stunned when on Low Life","type":"explicit"},{"id":"explicit.stat_1813069390","text":"With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike deal 50% less Fire Damage","type":"explicit"},{"id":"explicit.stat_3836017971","text":"Light Radius is based on Energy Shield instead of Life","type":"explicit"},{"id":"explicit.stat_3846248551","text":"Grants Level # Herald of Ice Skill","type":"explicit"},{"id":"explicit.stat_1703766309","text":"1 Added Passive Skill is Deep Chill","type":"explicit"},{"id":"explicit.stat_850729424","text":"Triggers Level # Lightning Aegis when Equipped","type":"explicit"},{"id":"explicit.stat_3477833022","text":"Enemies Ignited by you during Flask Effect take #% increased Damage","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_cadiro","text":"Commissioned # coins to commemorate Cadiro","type":"explicit"},{"id":"explicit.stat_3779823630","text":"#% increased Spell Damage while no Mana is Reserved","type":"explicit"},{"id":"explicit.stat_3391324703","text":"Traps and Mines deal # to # additional Physical Damage","type":"explicit"},{"id":"explicit.stat_2132807290","text":"Map has # additional Synthesis Global Modifier","type":"explicit"},{"id":"explicit.stat_1173027373","text":"Regenerate #% of Life per second with at least 400 Strength","type":"explicit"},{"id":"explicit.stat_2572042788","text":"Attacks have #% to Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_2492660287","text":"Reserves #% of Life","type":"explicit"},{"id":"explicit.stat_2816901897","text":"Socketed Gems have #% reduced Mana Cost","type":"explicit"},{"id":"explicit.stat_252427115","text":"Trigger Level # Gore Shockwave on Melee Hit if you have at least 150 Strength","type":"explicit"},{"id":"explicit.stat_2262736444","text":"Eldritch Battery","type":"explicit"},{"id":"explicit.stat_623651254","text":"Cannot be used with Chaos Inoculation","type":"explicit"},{"id":"explicit.stat_3764265320","text":"#% of Physical Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_3602667353","text":"#% chance to inflict Fire Exposure on Hit","type":"explicit"},{"id":"explicit.stat_3714207489","text":"You gain Onslaught for # second per Endurance Charge when Hit","type":"explicit"},{"id":"explicit.stat_1840985759","text":"#% increased Area of Effect for Attacks","type":"explicit"},{"id":"explicit.stat_3969608626","text":"Flask Effect is not removed at Full Mana\nFlask Effect does not Queue","type":"explicit"},{"id":"explicit.stat_1647529598","text":"Socketed Gems are Supported by Level # Added Lightning Damage","type":"explicit"},{"id":"explicit.stat_2864618930","text":"With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike cannot choose Cold","type":"explicit"},{"id":"explicit.stat_2994477068","text":"You lose all Endurance Charges when Hit","type":"explicit"},{"id":"explicit.stat_2933625540","text":"Your Elemental Damage can Shock","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_victario","text":"Commissioned # coins to commemorate Victario","type":"explicit"},{"id":"explicit.stat_2032453153","text":"1 Added Passive Skill is Empowered Envoy","type":"explicit"},{"id":"explicit.stat_3294232483","text":"#% increased Physical Damage while affected by Herald of Purity","type":"explicit"},{"id":"explicit.stat_93696421","text":"#% increased Attack Damage per 450 Evasion Rating","type":"explicit"},{"id":"explicit.stat_4026156644","text":"#% to all maximum Elemental Resistances during Flask effect","type":"explicit"},{"id":"explicit.stat_2064503808","text":"You gain an Endurance Charge on Kill","type":"explicit"},{"id":"explicit.stat_3684879618","text":"#% increased Movement Speed while Phasing","type":"explicit"},{"id":"explicit.stat_4120779321","text":"Removes all but one Life on use\nRemoved life is Regenerated as Energy Shield over # seconds","type":"explicit"},{"id":"explicit.stat_3839163699","text":"Socketed Gems are Supported by Level # Advanced Traps","type":"explicit"},{"id":"explicit.stat_2627243269","text":"Notable Passive Skills in Radius grant nothing","type":"explicit"},{"id":"explicit.stat_3285021988","text":"# Life gained for each Enemy Hit if you have used a Vaal Skill Recently","type":"explicit"},{"id":"explicit.stat_3408601861","text":"Area is inhabited by Lunaris fanatics","type":"explicit"},{"id":"explicit.stat_4045269075","text":"Recover # Life when you Ignite an Enemy","type":"explicit"},{"id":"explicit.stat_19803471","text":"#% Chance to Block Spell Damage","type":"explicit"},{"id":"explicit.stat_4164870816","text":"#% to Critical Strike Multiplier per Power Charge","type":"explicit"},{"id":"explicit.stat_1478305007","text":"With 40 Intelligence in Radius, #% of Glacial Cascade Physical Damage\nConverted to Cold Damage","type":"explicit"},{"id":"explicit.stat_4092697134","text":"Iron Will","type":"explicit"},{"id":"explicit.stat_281201999","text":"Knockback direction is reversed","type":"explicit"},{"id":"explicit.stat_63111803","text":"With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike cannot choose Fire","type":"explicit"},{"id":"explicit.stat_526251910","text":"Cannot Leech Life from Monsters","type":"explicit"},{"id":"explicit.stat_2007062029","text":"Take # Lightning Damage when Herald of Thunder Hits an Enemy","type":"explicit"},{"id":"explicit.stat_1282978314","text":"#% increased Melee Damage against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_1934713036","text":"Area is inhabited by Solaris fanatics","type":"explicit"},{"id":"explicit.stat_1367119630","text":"Your Hexes can affect Hexproof Enemies","type":"explicit"},{"id":"explicit.stat_816458107","text":"#% Chance to Block Spell Damage per Power Charge","type":"explicit"},{"id":"explicit.stat_3952196842","text":"Recover # Life when your Trap is triggered by an Enemy","type":"explicit"},{"id":"explicit.stat_2295439133","text":"With at least 40 Strength in Radius, Molten Strike Projectiles Chain # time","type":"explicit"},{"id":"explicit.stat_3188291252","text":"#% increased Rarity of Items Dropped by Slain Shocked Enemies","type":"explicit"},{"id":"explicit.stat_648019518","text":"Removes #% of Life Recovered from Mana when used","type":"explicit"},{"id":"explicit.stat_688802590","text":"Your Minions spread Caustic Ground on Death, dealing #% of their maximum Life as Chaos Damage per second","type":"explicit"},{"id":"explicit.stat_1344805487","text":"# to Level of Socketed Herald Gems","type":"explicit"},{"id":"explicit.stat_918170065","text":"#% Monster Mana Leech Resistance","type":"explicit"},{"id":"explicit.stat_458438597","text":"#% of Damage is taken from Mana before Life","type":"explicit"},{"id":"explicit.stat_3163114700","text":"#% additional Physical Damage Reduction while affected by Herald of Purity","type":"explicit"},{"id":"explicit.stat_720395808","text":"#% of Elemental Damage Leeched as Life","type":"explicit"},{"id":"explicit.stat_1168603868","text":"and nearby Allies Regenerate 200 Life per second","type":"explicit"},{"id":"explicit.stat_849085925","text":"Enemies Frozen by you take 20% increased Damage","type":"explicit"},{"id":"explicit.stat_739274558","text":"#% increased Chaos Damage while affected by Herald of Agony","type":"explicit"},{"id":"explicit.stat_2687017988","text":"#% to Lightning Resistance while affected by Herald of Thunder","type":"explicit"},{"id":"explicit.stat_4105031548","text":"1 Added Passive Skill is Conjured Wall","type":"explicit"},{"id":"explicit.stat_1087710344","text":"#% Chance for Traps to Trigger an additional time","type":"explicit"},{"id":"explicit.stat_347220474","text":"#% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%","type":"explicit"},{"id":"explicit.stat_634031003","text":"#% increased effect of Non-Curse Auras from your Skills on your Minions","type":"explicit"},{"id":"explicit.stat_1818900806","text":"#% Critical Strike Chance per Power Charge","type":"explicit"},{"id":"explicit.stat_1493090598","text":"35% chance to avoid being Stunned for each Herald Buff affecting you","type":"explicit"},{"id":"explicit.stat_2528440851","text":"Area contains # additional packs of Shaper Creations","type":"explicit"},{"id":"explicit.stat_4084331136","text":"#% increased Chaos Damage per Level","type":"explicit"},{"id":"explicit.stat_607548408","text":"#% increased Effect of non-Keystone Passive Skills in Radius","type":"explicit"},{"id":"explicit.stat_248838155","text":"#% reduced Reflected Elemental Damage taken","type":"explicit"},{"id":"explicit.stat_625885138","text":"Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead","type":"explicit"},{"id":"explicit.stat_3804297142","text":"Curse Non-Cursed Enemies with Enfeeble on Hit, with 80% increased Effect","type":"explicit"},{"id":"explicit.stat_2443713073","text":"With at least 40 Dexterity in Radius, Burning Arrow can inflict\nan additional Ignite on an Enemy and cannot apply its Burning Debuff","type":"explicit"},{"id":"explicit.stat_1352418057","text":"#% chance to Curse Enemies with Socketed Hex Curse Gem on Hit","type":"explicit"},{"id":"explicit.stat_1643688236","text":"Unaffected by Burning Ground","type":"explicit"},{"id":"explicit.stat_2192181096","text":"1% increased Armour per # Strength when in Off Hand","type":"explicit"},{"id":"explicit.stat_4270096386","text":"Hits have #% increased Critical Strike Chance against you","type":"explicit"},{"id":"explicit.stat_1862926389","text":"Herald of Ice has #% increased Buff Effect","type":"explicit"},{"id":"explicit.stat_2108380422","text":"Life Leech effects are not removed at Full Life","type":"explicit"},{"id":"explicit.stat_3101897388","text":"#% increased Maximum Recovery per Life Leech","type":"explicit"},{"id":"explicit.stat_3259396413","text":"#% to maximum Lightning Resistance while affected by Herald of Thunder","type":"explicit"},{"id":"explicit.stat_2608186870","text":"Area contains # additional packs of Elder Fiends","type":"explicit"},{"id":"explicit.stat_679194784","text":"1% increased Damage per # Strength when in Main Hand","type":"explicit"},{"id":"explicit.stat_3537762266","text":"Herald of Ice has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_3880462354","text":"Grants Level # Herald of Ash Skill","type":"explicit"},{"id":"explicit.stat_4085417083","text":"Adds # to # Lightning Damage to Spells per Power Charge","type":"explicit"},{"id":"explicit.stat_2894297982","text":"Your Chaos Damage has #% chance to Poison Enemies","type":"explicit"},{"id":"explicit.stat_778050954","text":"Adds 1 maximum Lightning Damage to Attacks per # Dexterity Allocated in Radius","type":"explicit"},{"id":"explicit.stat_1964333391","text":"# Lightning Damage taken per second per Power Charge if\nyour Skills have dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_2109066258","text":"Adds # to # Cold Damage in Off Hand","type":"explicit"},{"id":"explicit.stat_3753703249","text":"Gain #% of Physical Damage as Extra Damage of a random Element","type":"explicit"},{"id":"explicit.stat_372478711","text":"This Jewel's Socket has #% increased effect per Allocated Passive Skill between\nit and your Class' starting location","type":"explicit"},{"id":"explicit.stat_3657377047","text":"#% chance to Trigger Socketed Curse Skill when you cast a Curse Skill","type":"explicit"},{"id":"explicit.stat_2378065031","text":"Curse Skills have #% increased Cast Speed","type":"explicit"},{"id":"explicit.stat_2216127021","text":"#% increased Area of Effect while Unarmed","type":"explicit"},{"id":"explicit.stat_2846730569","text":"Uses both hand slots","type":"explicit"},{"id":"explicit.stat_650630047","text":"Sentinels of Purity deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_1096136223","text":"1 Added Passive Skill is Essence Rush","type":"explicit"},{"id":"explicit.stat_2212731469","text":"#% to Damage over Time Multiplier for Ailments per Elder Item Equipped","type":"explicit"},{"id":"explicit.stat_1926816773","text":"Recover #% of Life when you use a Mana Flask","type":"explicit"},{"id":"explicit.stat_2828710986","text":"Socketed Spells have #% to Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_3734213780","text":"#% of Spell Damage Leeched as Energy Shield for each Curse on Enemy","type":"explicit"},{"id":"explicit.stat_2416869319","text":"Grants #% of Life Recovery to Minions","type":"explicit"},{"id":"explicit.stat_723388324","text":"Trigger Socketed Spells when\nyou Spend at least # Mana to Use a Skill","type":"explicit"},{"id":"explicit.stat_4113852051","text":"1% increased Evasion Rating per # Dexterity Allocated in Radius","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_doryani","text":"Bathed in the blood of # sacrificed in the name of Doryani","type":"explicit"},{"id":"explicit.stat_2328234364","text":"Herald of Ash has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_2630708439","text":"#% chance to inflict Cold Exposure on Hit","type":"explicit"},{"id":"explicit.stat_2155467472","text":"#% chance to be inflicted with Bleeding when Hit by an Attack","type":"explicit"},{"id":"explicit.stat_1456464057","text":"#% of Spell Damage Leeched as Energy Shield during Flask effect","type":"explicit"},{"id":"explicit.stat_3247931236","text":"Recover #% of Mana when you Kill an Enemy during Flask Effect","type":"explicit"},{"id":"explicit.stat_1619923327","text":"1% increased Claw Physical Damage per # Dexterity Allocated in Radius","type":"explicit"},{"id":"explicit.stat_4210011075","text":"#% to Chaos Resistance per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2262007777","text":"Non-instant Mana Recovery from Flasks is also Recovered as Life","type":"explicit"},{"id":"explicit.stat_736847554","text":"Totems fire # additional Projectile","type":"explicit"},{"id":"explicit.stat_3133323410","text":"Bleeding Enemies you Kill Explode, dealing #% of\ntheir Maximum Life as Physical Damage","type":"explicit"},{"id":"explicit.stat_894768849","text":"With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires #% more Shard Projectiles","type":"explicit"},{"id":"explicit.stat_696659555","text":"#% increased Movement Speed while Bleeding","type":"explicit"},{"id":"explicit.stat_1540840","text":"Grants Level # Scorching Ray Skill","type":"explicit"},{"id":"explicit.stat_986397080","text":"#% reduced Ignite Duration on you","type":"explicit"},{"id":"explicit.stat_407317553","text":"Socketed Gems are Supported by Level # Increased Duration","type":"explicit"},{"id":"explicit.stat_702909553","text":"#% increased Scorching Ray beam length","type":"explicit"},{"id":"explicit.stat_2089652545","text":"#% chance to Intimidate Enemies for 4 seconds on Hit","type":"explicit"},{"id":"explicit.stat_2008682345","text":"1 Added Passive Skill is Burden Projection","type":"explicit"},{"id":"explicit.stat_4070157876","text":"#% increased Area of Effect per Enemy killed recently, up to 50%","type":"explicit"},{"id":"explicit.stat_757315075","text":"Gain Unholy Might for # second on Rampage","type":"explicit"},{"id":"explicit.stat_1686913105","text":"#% reduced Elemental Damage taken from Hits per Endurance Charge","type":"explicit"},{"id":"explicit.stat_891277550","text":"Socketed Gems are supported by Level # Life Leech","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_xibaqua","text":"Bathed in the blood of # sacrificed in the name of Xibaqua","type":"explicit"},{"id":"explicit.stat_513221334","text":"# to Armour per Endurance Charge","type":"explicit"},{"id":"explicit.stat_4207939995","text":"#% increased Intelligence for each Unique Item Equipped","type":"explicit"},{"id":"explicit.stat_249545292","text":"Critical Strikes do not inherently apply non-Damaging Ailments","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_kaom","text":"Commanded leadership over # warriors under Kaom","type":"explicit"},{"id":"explicit.stat_173438493","text":"Adds # to # Physical Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2413219096","text":"Immortal Ambition","type":"explicit"},{"id":"explicit.stat_3122491961","text":"1 Added Passive Skill is Agent of Destruction","type":"explicit"},{"id":"explicit.stat_135378852","text":"Socketed Spells have #% to Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_478147593","text":"1 Added Passive Skill is Sage","type":"explicit"},{"id":"explicit.stat_3456816469","text":"#% to Chaos Resistance while affected by Herald of Agony","type":"explicit"},{"id":"explicit.stat_3163738488","text":"#% increased Elemental Damage per Grand Spectrum","type":"explicit"},{"id":"explicit.stat_3816512110","text":"#% increased Projectile Damage per Power Charge","type":"explicit"},{"id":"explicit.stat_2337295272","text":"Minions deal #% increased Damage if you've Hit Recently","type":"explicit"},{"id":"explicit.stat_3979476531","text":"Critical Strikes do not inherently Freeze","type":"explicit"},{"id":"explicit.stat_3985468650","text":"Grants Level # Blood Offering Skill","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_chitus","text":"Commissioned # coins to commemorate Chitus","type":"explicit"},{"id":"explicit.stat_2654043939","text":"You gain Onslaught for # seconds on using a Vaal Skill","type":"explicit"},{"id":"explicit.stat_913919528","text":"Socketed Gems are Supported by Level # Spell Echo","type":"explicit"},{"id":"explicit.stat_149574107","text":"Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity","type":"explicit"},{"id":"explicit.stat_1170386874","text":"# to Level of Socketed Vaal Gems","type":"explicit"},{"id":"explicit.stat_555311393","text":"#% increased Physical Damage Over Time per 10 Dexterity","type":"explicit"},{"id":"explicit.stat_1345113611","text":"Inflict non-Damaging Ailments as though dealing #% more Damage","type":"explicit"},{"id":"explicit.stat_2675641469","text":"#% to Fire Resistance while affected by Herald of Ash","type":"explicit"},{"id":"explicit.stat_3388448323","text":"Socketed Gems are Supported by Level # Greater Spell Echo","type":"explicit"},{"id":"explicit.stat_2391255504","text":"You have Zealot's Oath if you haven't been hit recently","type":"explicit"},{"id":"explicit.stat_541329769","text":"Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, with 60% increased Effect and ignoring Curse Limit","type":"explicit"},{"id":"explicit.stat_2072206041","text":"#% Chance to cause Bleeding Enemies to Flee on hit","type":"explicit"},{"id":"explicit.stat_2922377850","text":"Curse Enemies with Punishment when you Block their Melee Damage, with 60% increased Effect and ignoring Curse Limit","type":"explicit"},{"id":"explicit.stat_2917587077","text":"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items","type":"explicit"},{"id":"explicit.stat_2105355711","text":"With 40 total Dexterity and Strength in Radius, Spectral Shield Throw Chains +# times","type":"explicit"},{"id":"explicit.stat_670136258","text":"With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires Shard Projectiles when Chaining","type":"explicit"},{"id":"explicit.stat_21824003","text":"#% increased Rarity of Items Dropped by Enemies killed with a Critical Strike","type":"explicit"},{"id":"explicit.stat_2497198283","text":"Regenerate # Life per second if no Equipped Items are Corrupted","type":"explicit"},{"id":"explicit.stat_3630426972","text":"Summoned Golems are Aggressive","type":"explicit"},{"id":"explicit.stat_950661692","text":"#% to maximum Cold Resistance while affected by Herald of Ice","type":"explicit"},{"id":"explicit.stat_3562211447","text":"#% chance to gain Unholy Might for 3 seconds on Kill","type":"explicit"},{"id":"explicit.stat_262773569","text":"Mana Reservation of Herald Skills is always 45%","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_avarius","text":"Carved to glorify # new faithful converted by High Templar Avarius","type":"explicit"},{"id":"explicit.stat_2217962305","text":"#% increased Maximum Life if no Equipped Items are Corrupted","type":"explicit"},{"id":"explicit.stat_3642528642","text":"Only affects Passives in # Ring","type":"explicit","option":{"options":[{"id":"1","text":"Small"},{"id":"2","text":"Medium"},{"id":"3","text":"Large"},{"id":"4","text":"Very Large"}]}},{"id":"explicit.stat_1030835421","text":"#% increased Bleeding Duration per 12 Intelligence","type":"explicit"},{"id":"explicit.stat_2350668735","text":"1 Added Passive Skill is Stalwart Commander","type":"explicit"},{"id":"explicit.stat_2788982914","text":"1 Added Passive Skill is Unwaveringly Evil","type":"explicit"},{"id":"explicit.stat_647201233","text":"1 Added Passive Skill is Vile Reinvigoration","type":"explicit"},{"id":"explicit.stat_1453197917","text":"#% chance to gain a Power Charge on Hit","type":"explicit"},{"id":"explicit.stat_1970606344","text":"#% increased Cold Damage while affected by Herald of Ice","type":"explicit"},{"id":"explicit.stat_507505131","text":"1 Added Passive Skill is Purposeful Harbinger","type":"explicit"},{"id":"explicit.stat_4091709362","text":"#% of Damage Leeched as Energy Shield against Frozen Enemies","type":"explicit"},{"id":"explicit.stat_4256314560","text":"Shocks you when you reach Maximum Power Charges","type":"explicit"},{"id":"explicit.stat_4084763463","text":"Regenerate # Mana per Second per Power Charge","type":"explicit"},{"id":"explicit.stat_2208857094","text":"#% chance to Poison on Hit against Cursed Enemies","type":"explicit"},{"id":"explicit.stat_1678643716","text":"1 Added Passive Skill is Widespread Destruction","type":"explicit"},{"id":"explicit.stat_3748879662","text":"#% chance to cover Enemies in Ash when they Hit you","type":"explicit"},{"id":"explicit.stat_769192511","text":"While your Passive Skill Tree connects to a class' starting location, you gain:\nMarauder: Melee Skills have #% increased Area of Effect\nDuelist: #% of Attack Damage Leeched as Life\nRanger: #% increased Movement Speed\nShadow: #% to Critical Strike Chance\nWitch: #% of Mana Regenerated per second\nTemplar: Damage Penetrates #% Elemental Resistances\nScion: # to All Attributes","type":"explicit"},{"id":"explicit.stat_2125178364","text":"Siege Ballista has # to maximum number of Summoned Totems per 200 Dexterity","type":"explicit"},{"id":"explicit.stat_2775776604","text":"#% increased Fire Damage while affected by Herald of Ash","type":"explicit"},{"id":"explicit.stat_2048643052","text":"Curse Enemies with Elemental Weakness when you Block their Spell Damage, with 60% increased Effect and ignoring Curse Limit","type":"explicit"},{"id":"explicit.stat_2233272527","text":"1 Added Passive Skill is Repeater","type":"explicit"},{"id":"explicit.stat_3258653591","text":"1 Added Passive Skill is Iron Breaker","type":"explicit"},{"id":"explicit.stat_2538694749","text":"#% Chance to Block Attack Damage while Dual Wielding Claws","type":"explicit"},{"id":"explicit.stat_2340173293","text":"#% increased Item Quantity per White Socket","type":"explicit"},{"id":"explicit.stat_690135178","text":"#% increased total Recovery per second from Mana Leech","type":"explicit"},{"id":"explicit.stat_72129119","text":"1 Added Passive Skill is Haemorrhage","type":"explicit"},{"id":"explicit.stat_3865999868","text":"#% Chance to Block Attack Damage while on Consecrated Ground","type":"explicit"},{"id":"explicit.stat_1785942004","text":"#% Chance to Trigger Level 18 Summon Spectral Wolf on Kill","type":"explicit"},{"id":"explicit.stat_1704905020","text":"#% increased Damage while on Consecrated Ground","type":"explicit"},{"id":"explicit.stat_4210076836","text":"+# to Maximum Life per Red Socket","type":"explicit"},{"id":"explicit.stat_2458962764","text":"#% of Maximum Life Converted to Energy Shield","type":"explicit"},{"id":"explicit.stat_899293871","text":"Trigger Level # Consecrate when you deal a Critical Strike","type":"explicit"},{"id":"explicit.stat_1759630226","text":"Cannot Leech Mana","type":"explicit"},{"id":"explicit.stat_497716276","text":"#% increased Trap Trigger Area of Effect","type":"explicit"},{"id":"explicit.stat_2739148464","text":"Has no Attribute Requirements","type":"explicit"},{"id":"explicit.stat_896299992","text":"+# to Maximum Mana per Green Socket","type":"explicit"},{"id":"explicit.stat_285624304","text":"Skills Chain an additional time while at maximum Frenzy Charges","type":"explicit"},{"id":"explicit.stat_1165023334","text":"Your hits can't be Evaded","type":"explicit"},{"id":"explicit.stat_2659463225","text":"Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy","type":"explicit"},{"id":"explicit.stat_1133453872","text":"# Dexterity Requirement","type":"explicit"},{"id":"explicit.stat_1096897481","text":"Gain #% of Physical Attack Damage as Extra Lightning Damage","type":"explicit"},{"id":"explicit.stat_1730304831","text":"Herald of Purity has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_kiloava","text":"Commanded leadership over # warriors under Kiloava","type":"explicit"},{"id":"explicit.stat_2906522048","text":"+# to Maximum Energy Shield per Blue Socket","type":"explicit"},{"id":"explicit.stat_306104305","text":"#% increased Effect of Buffs on you","type":"explicit"},{"id":"explicit.stat_18234720","text":"#% increased Intelligence Requirement","type":"explicit"},{"id":"explicit.stat_1859244771","text":"Socketed Gems are Supported by Level # Bonechill","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_zerphi","text":"Bathed in the blood of # sacrificed in the name of Zerphi","type":"explicit"},{"id":"explicit.stat_1214532298","text":"#% Chance to Block Attack Damage if there are at least 5 nearby Enemies","type":"explicit"},{"id":"explicit.stat_3718597497","text":"Socketed Gems are Supported by Level # Controlled Destruction","type":"explicit"},{"id":"explicit.stat_3848047105","text":"Your Physical Damage can Shock","type":"explicit"},{"id":"explicit.stat_943553365","text":"Each Summoned Phantasm grants you Phantasmal Might","type":"explicit"},{"id":"explicit.stat_4196775867","text":"Your Aura Buffs do not affect allies","type":"explicit"},{"id":"explicit.stat_252194507","text":"#% increased Cast Speed during any Flask Effect","type":"explicit"},{"id":"explicit.stat_4102318278","text":"Grants Level # Aspect of the Crab Skill","type":"explicit"},{"id":"explicit.stat_1250317014","text":"With at least 40 Strength in Radius, #% increased\nRarity of Items dropped by Enemies Shattered by Glacial Hammer","type":"explicit"},{"id":"explicit.stat_3521117619","text":"Evasion Rating is increased by Uncapped Cold Resistance","type":"explicit"},{"id":"explicit.stat_2951564010","text":"Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed","type":"explicit"},{"id":"explicit.stat_4273356746","text":"Nearby Enemies have #% increased Fire and Cold Resistances","type":"explicit"},{"id":"explicit.stat_3452269808","text":"#% chance to avoid Projectiles","type":"explicit"},{"id":"explicit.stat_1920234902","text":"# Fire Damage taken per second per Endurance Charge if you've been Hit Recently","type":"explicit"},{"id":"explicit.stat_552705983","text":"# Strength per 1 Strength on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_1055188639","text":"You gain Onslaught for # seconds on Critical Strike","type":"explicit"},{"id":"explicit.stat_282757414","text":"Socketed Gems are Supported by Level # Pulverise","type":"explicit"},{"id":"explicit.stat_632761194","text":"Zealot's Oath","type":"explicit"},{"id":"explicit.stat_607839150","text":"Nearby Enemies are Hindered, with #% reduced Movement Speed","type":"explicit"},{"id":"explicit.stat_4182502594","text":"Area has # waves of monsters","type":"explicit"},{"id":"explicit.stat_1109700751","text":"Adds # to # Cold Damage to Counterattacks","type":"explicit"},{"id":"explicit.stat_2663376056","text":"Gain #% of Maximum Mana as Extra Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_3317068522","text":"1 Added Passive Skill is Call to the Slaughter","type":"explicit"},{"id":"explicit.stat_3291999509","text":"Shock Reflection","type":"explicit"},{"id":"explicit.stat_3577316952","text":"Lose Souls gained from Soul Eater when you use a Flask","type":"explicit"},{"id":"explicit.stat_2609732382","text":"Area has # seconds between monster waves","type":"explicit"},{"id":"explicit.stat_2328588114","text":"#% to Critical Strike Multiplier if Dexterity is higher than Intelligence","type":"explicit"},{"id":"explicit.stat_3451369192","text":"Gain Armour equal to your Reserved Mana","type":"explicit"},{"id":"explicit.stat_4147897060","text":"#% reduced Chance to Block Attack and Spell Damage","type":"explicit"},{"id":"explicit.stat_1161341806","text":"Can have a up to 1 Implicit Modifier while Item has this Modifier","type":"explicit"},{"id":"explicit.stat_373964381","text":"Mind Over Matter","type":"explicit"},{"id":"explicit.stat_3597806437","text":"Adds # to # Lightning Damage to Spells while Unarmed","type":"explicit"},{"id":"explicit.stat_1637928656","text":"#% to all Elemental Resistances while on Low Life","type":"explicit"},{"id":"explicit.stat_1733969225","text":"Unique Boss drops # additional Currency Items","type":"explicit"},{"id":"explicit.stat_1209237645","text":"# Maximum Void Charges","type":"explicit"},{"id":"explicit.stat_73272763","text":"#% reduced Mana Cost of Skills when on Low Life","type":"explicit"},{"id":"explicit.stat_807955413","text":"Shocks you cause are reflected back to you","type":"explicit"},{"id":"explicit.stat_748813744","text":"#% of Attack Damage Leeched as Life against Chilled Enemies","type":"explicit"},{"id":"explicit.stat_91242932","text":"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets","type":"explicit"},{"id":"explicit.stat_478698670","text":"Animated Minions' Melee Attacks deal #% less Damage to surrounding targets","type":"explicit"},{"id":"explicit.stat_3682009780","text":"#% chance to Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy","type":"explicit"},{"id":"explicit.stat_4222857095","text":"Adds # to # Lightning Damage for each Shocked Enemy you've Killed Recently","type":"explicit"},{"id":"explicit.stat_1606263610","text":"Recover #% of Energy Shield when you Block","type":"explicit"},{"id":"explicit.stat_759294825","text":"Animated Guardian deals #% increased Damage per Animated Weapon","type":"explicit"},{"id":"explicit.stat_953314356","text":"#% chance to create a Smoke Cloud when Hit","type":"explicit"},{"id":"explicit.stat_2390273715","text":"With at least 40 Intelligence in Radius, Raised Spectres have a #% chance to gain Soul Eater for 20 seconds on Kill","type":"explicit"},{"id":"explicit.stat_2593773031","text":"Socketed Gems are Supported by Level # Generosity","type":"explicit"},{"id":"explicit.stat_243713911","text":"Grants Level # Lightning Warp Skill","type":"explicit"},{"id":"explicit.stat_906997920","text":"Socketed Gems are Supported by Level # Iron Will","type":"explicit"},{"id":"explicit.stat_254728692","text":"Socketed Gems are Supported by Level # Pierce","type":"explicit"},{"id":"explicit.stat_1358422215","text":"1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating","type":"explicit"},{"id":"explicit.stat_1506185293","text":"Attacks with this Weapon deal Double Damage","type":"explicit"},{"id":"explicit.stat_3304801725","text":"# Mana gained on Killing a Frozen Enemy","type":"explicit"},{"id":"explicit.stat_3988349707","text":"#% to Damage over Time Multiplier","type":"explicit"},{"id":"explicit.stat_1531241759","text":"Strength's Damage Bonus instead grants 3% increased Melee\nPhysical Damage per 10 Strength","type":"explicit"},{"id":"explicit.stat_85576425","text":"Elemental Resistances are Zero","type":"explicit"},{"id":"explicit.stat_1669135888","text":"#% increased Elemental Damage per Sextant affecting the area","type":"explicit"},{"id":"explicit.stat_1631928082","text":"Increases and Reductions to Minion Damage also affect you","type":"explicit"},{"id":"explicit.stat_356456977","text":"Socketed Attacks have #% to Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_2780712583","text":"1 Added Passive Skill is Touch of Cruelty","type":"explicit"},{"id":"explicit.stat_1601181226","text":"#% increased Fire Damage with Hits and Ailments against Blinded Enemies","type":"explicit"},{"id":"explicit.stat_2474196346","text":"# Mana gained for each Enemy Hit by your Spells","type":"explicit"},{"id":"explicit.stat_1436284579","text":"Cannot be Blinded","type":"explicit"},{"id":"explicit.stat_2773515950","text":"1 Added Passive Skill is Second Skin","type":"explicit"},{"id":"explicit.stat_2816098341","text":"Trigger Socketed Minion Spells on Kill with this Weapon","type":"explicit"},{"id":"explicit.stat_2494069187","text":"#% to Cold Resistance while affected by Herald of Ice","type":"explicit"},{"id":"explicit.stat_2487643588","text":"Socketed Gems are Supported by Level # Less Duration","type":"explicit"},{"id":"explicit.stat_2896346114","text":"Point Blank","type":"explicit"},{"id":"explicit.stat_3418772","text":"Socketed Gems have #% chance to cause Enemies to Flee on Hit","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_dominus","text":"Carved to glorify # new faithful converted by High Templar Dominus","type":"explicit"},{"id":"explicit.stat_3470535775","text":"#% chance to gain a Power Charge when you Stun","type":"explicit"},{"id":"explicit.stat_637690626","text":"Gain a Frenzy Charge on every 50th Rampage Kill","type":"explicit"},{"id":"explicit.stat_2295303426","text":"Trigger a Socketed Cold Spell on Melee Critical Strike","type":"explicit"},{"id":"explicit.stat_1750735210","text":"Golems have #% increased Maximum Life","type":"explicit"},{"id":"explicit.stat_2373999301","text":"Nearby Allies have #% increased Cast Speed per 100 Intelligence you have","type":"explicit"},{"id":"explicit.stat_3968454273","text":"Gain Soul Eater during any Flask Effect","type":"explicit"},{"id":"explicit.stat_1220105149","text":"You cannot have non-Animated Minions","type":"explicit"},{"id":"explicit.stat_3112776239","text":"Recover #% of Life when you Ignite an Enemy","type":"explicit"},{"id":"explicit.stat_4089413281","text":"You gain Phasing for # seconds on using a Vaal Skill","type":"explicit"},{"id":"explicit.stat_1958210928","text":"Summoned Skeletons have Avatar of Fire","type":"explicit"},{"id":"explicit.stat_1332534089","text":"#% increased Melee Physical Damage against Ignited Enemies","type":"explicit"},{"id":"explicit.stat_199362230","text":"Minions convert #% of Physical Damage to Chaos Damage per White Socket","type":"explicit"},{"id":"explicit.stat_2062174346","text":"#% increased Damage per 15 Dexterity","type":"explicit"},{"id":"explicit.stat_1091613629","text":"Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy","type":"explicit"},{"id":"explicit.stat_3699490848","text":"#% increased Critical Strike Chance against Chilled Enemies","type":"explicit"},{"id":"explicit.stat_4169623196","text":"#% increased Critical Strike Chance with arrows that Fork","type":"explicit"},{"id":"explicit.stat_3158958938","text":"#% reduced Reflected Physical Damage taken","type":"explicit"},{"id":"explicit.stat_1600707273","text":"# to Level of all Physical Spell Skill Gems","type":"explicit"},{"id":"explicit.stat_2761732967","text":"Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy","type":"explicit"},{"id":"explicit.stat_1917107159","text":"# to # Lightning Damage per Power Charge","type":"explicit"},{"id":"explicit.stat_1154827254","text":"#% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_2442647190","text":"Recover #% of Life when you Block","type":"explicit"},{"id":"explicit.stat_1088949570","text":"1 Added Passive Skill is Stoic Focus","type":"explicit"},{"id":"explicit.stat_4228951304","text":"#% reduced Enemy Stun Threshold during any Flask Effect","type":"explicit"},{"id":"explicit.stat_347328113","text":"# Energy Shield gained on Killing a Shocked Enemy","type":"explicit"},{"id":"explicit.stat_1175213674","text":"#% of Elemental Damage from Hits taken as Chaos Damage","type":"explicit"},{"id":"explicit.stat_458002333","text":"Adds # to # Lightning Damage to Unarmed Attacks","type":"explicit"},{"id":"explicit.stat_886366428","text":"#% increased Damage for each Magic Item Equipped","type":"explicit"},{"id":"explicit.stat_3415827027","text":"1 Added Passive Skill is Furious Assault","type":"explicit"},{"id":"explicit.stat_3321583955","text":"Creates a Smoke Cloud on Rampage","type":"explicit"},{"id":"explicit.stat_3779771090","text":"Temporal Chains has #% reduced Mana Reservation if Cast as an Aura","type":"explicit"},{"id":"explicit.stat_1271338211","text":"Grants Level # Intimidating Cry Skill","type":"explicit"},{"id":"explicit.stat_4109038270","text":"Elemental Hit deals #% increased Damage","type":"explicit"},{"id":"explicit.stat_2896192589","text":"#% chance to gain Elusive on Critical Strike","type":"explicit"},{"id":"explicit.stat_187998220","text":"Iron Reflexes while stationary","type":"explicit"},{"id":"explicit.stat_982290947","text":"1 Added Passive Skill is Flexible Sentry","type":"explicit"},{"id":"explicit.stat_230941555","text":"You can have an Offering of each type","type":"explicit"},{"id":"explicit.stat_2150878631","text":"1 Added Passive Skill is Endbringer","type":"explicit"},{"id":"explicit.stat_2155513095","text":"Critical Strike Chance is increased by Lightning Resistance","type":"explicit"},{"id":"explicit.stat_99487834","text":"Your Skills deal you #% of Mana Spent on Skill Mana Costs as Physical Damage","type":"explicit"},{"id":"explicit.stat_2758966888","text":"1 Added Passive Skill is Untouchable","type":"explicit"},{"id":"explicit.stat_637033100","text":"With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike cannot choose Lightning","type":"explicit"},{"id":"explicit.stat_3202667190","text":"1 Added Passive Skill is Student of Decay","type":"explicit"},{"id":"explicit.stat_2195518432","text":"1 Added Passive Skill is Energy From Naught","type":"explicit"},{"id":"explicit.stat_662803072","text":"#% increased Flask Charges gained during any Flask Effect","type":"explicit"},{"id":"explicit.stat_1939175721","text":"#% increased Effect of Shrine Buffs on you","type":"explicit"},{"id":"explicit.stat_3241494164","text":"Trigger Level # Lightning Bolt when you deal a Critical Strike","type":"explicit"},{"id":"explicit.stat_3101915418","text":"You have Onslaught while at maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_3188455409","text":"Regenerate #% of Mana per second","type":"explicit"},{"id":"explicit.stat_2401834120","text":"Added Small Passive Skills also grant: #% increased Damage over Time","type":"explicit"},{"id":"explicit.stat_3504652942","text":"#% to Damage over Time Multiplier for Poison per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_4076910393","text":"Cannot Block Spells","type":"explicit"},{"id":"explicit.stat_820827484","text":"When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage\nequal to #% of Sacrificed Mana for 4 seconds","type":"explicit"},{"id":"explicit.stat_654971543","text":"Trigger a Socketed Lightning Spell on Hit\nSocketed Lightning Spells deal 100% increased Spell Damage if Triggered","type":"explicit"},{"id":"explicit.stat_1060540099","text":"Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength","type":"explicit"},{"id":"explicit.stat_919960234","text":"#% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy","type":"explicit"},{"id":"explicit.stat_1877661946","text":"#% increased Duration of Shrine Effects on you","type":"explicit"},{"id":"explicit.stat_1397498432","text":"1 Added Passive Skill is Streamlined","type":"explicit"},{"id":"explicit.stat_2314393054","text":"#% increased total Recovery per second from Life, Mana, or Energy Shield Leech","type":"explicit"},{"id":"explicit.stat_1073447019","text":"# to # Fire Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2650053239","text":"#% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently","type":"explicit"},{"id":"explicit.stat_235105674","text":"#% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_713266390","text":"Armour is increased by Uncapped Fire Resistance","type":"explicit"},{"id":"explicit.stat_3035514623","text":"Spectres have #% increased maximum Life","type":"explicit"},{"id":"explicit.stat_1924041432","text":"Projectiles gain #% of Non-Chaos Damage as extra Chaos Damage per Chain","type":"explicit"},{"id":"explicit.stat_1010340836","text":"#% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy","type":"explicit"},{"id":"explicit.stat_988207959","text":"Skills fire an additional Projectile if you've been Hit Recently","type":"explicit"},{"id":"explicit.stat_435737693","text":"With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds","type":"explicit"},{"id":"explicit.stat_1510714129","text":"Attacks have #% chance to Maim on Hit","type":"explicit"},{"id":"explicit.stat_706246936","text":"#% increased Armour against Projectiles","type":"explicit"},{"id":"explicit.stat_3801128794","text":"#% increased Damage per 15 Intelligence","type":"explicit"},{"id":"explicit.stat_282062371","text":"1 Added Passive Skill is Strike Leader","type":"explicit"},{"id":"explicit.stat_1962922582","text":"#% chance to gain an additional Vaal Soul on Kill","type":"explicit"},{"id":"explicit.stat_3922006600","text":"Socketed Gems are Supported by Level # Blood Magic","type":"explicit"},{"id":"explicit.stat_989800292","text":"Regenerate #% of Life per second per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2350411833","text":"You lose #% of Energy Shield per second","type":"explicit"},{"id":"explicit.stat_1852317988","text":"Insufficient Mana doesn't prevent your Melee Attacks","type":"explicit"},{"id":"explicit.stat_1128763150","text":"Triggers Level # Fire Aegis when Equipped","type":"explicit"},{"id":"explicit.stat_4208907162","text":"#% increased Lightning Damage with Attack Skills","type":"explicit"},{"id":"explicit.stat_796406325","text":"#% chance to Shock during any Flask Effect","type":"explicit"},{"id":"explicit.stat_3918947537","text":"Triggers Level # Cold Aegis when Equipped","type":"explicit"},{"id":"explicit.stat_1052583507","text":"You cannot Regenerate Energy Shield","type":"explicit"},{"id":"explicit.stat_1217730254","text":"Enemies take #% increased Damage for each type of Ailment you have inflicted on them","type":"explicit"},{"id":"explicit.stat_2199099676","text":"Gain an Endurance, Frenzy or Power charge when you Block","type":"explicit"},{"id":"explicit.stat_2498303876","text":"Grants Level # Doryani's Touch Skill","type":"explicit"},{"id":"explicit.stat_1195319608","text":"#% increased Energy Shield from Body Armour","type":"explicit"},{"id":"explicit.stat_1647746883","text":"#% increased Area of Effect while in Sand Stance","type":"explicit"},{"id":"explicit.stat_3678841229","text":"#% increased Movement Speed on Shocked Ground","type":"explicit"},{"id":"explicit.stat_2154349925","text":"Herald of Ash has #% increased Buff Effect","type":"explicit"},{"id":"explicit.stat_1826605755","text":"You cannot have non-Golem Minions","type":"explicit"},{"id":"explicit.stat_4164247992","text":"You cannot Recharge Energy Shield","type":"explicit"},{"id":"explicit.stat_880970200","text":"You have Consecrated Ground around you while stationary","type":"explicit"},{"id":"explicit.stat_1024189516","text":"Trigger Level # Feast of Flesh every 5 seconds","type":"explicit"},{"id":"explicit.stat_2523146878","text":"#% chance for Poisons inflicted with this Weapon to deal 100% more Damage","type":"explicit"},{"id":"explicit.stat_1549868759","text":"# to Evasion Rating and Energy Shield","type":"explicit"},{"id":"explicit.stat_990335387","text":"Life Leech effects are not removed at Full Life\nLife Leech effects Recover Energy Shield instead while on Full Life","type":"explicit"},{"id":"explicit.stat_1528823952","text":"# Cold Damage taken per second per Frenzy Charge while moving","type":"explicit"},{"id":"explicit.stat_1917661185","text":"Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity","type":"explicit"},{"id":"explicit.stat_1285172810","text":"#% increased Movement Speed if you have used a Vaal Skill Recently","type":"explicit"},{"id":"explicit.stat_3098087057","text":"#% increased Damage on Burning Ground","type":"explicit"},{"id":"explicit.stat_2383388829","text":"#% chance to gain a Power Charge when you use a Vaal Skill","type":"explicit"},{"id":"explicit.stat_3286480398","text":"With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike deal 50% less Cold Damage","type":"explicit"},{"id":"explicit.stat_514215387","text":"#% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_1220361974","text":"Enemies you Kill Explode, dealing #% of their Life as Physical Damage","type":"explicit"},{"id":"explicit.stat_3818661553","text":"1 Added Passive Skill is Eye of the Storm","type":"explicit"},{"id":"explicit.stat_3888064854","text":"#% chance to Ignite during any Flask Effect","type":"explicit"},{"id":"explicit.stat_1649883131","text":"#% chance to Avoid Elemental Damage from Hits per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_3165492062","text":"#% increased Vaal Skill Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_3344568504","text":"#% chance to Trigger Level 20 Arcane Wake after Spending a total of 200 Mana","type":"explicit"},{"id":"explicit.stat_2025297472","text":"#% increased Attack Speed for each Map Item Modifier affecting the Area","type":"explicit"},{"id":"explicit.stat_1672793731","text":"# to Level of Socketed Warcry Gems","type":"explicit"},{"id":"explicit.stat_2628721358","text":"#% of Attack Damage Leeched as Mana per Power Charge","type":"explicit"},{"id":"explicit.stat_3927388937","text":"#% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies","type":"explicit"},{"id":"explicit.stat_2314111938","text":"1 Added Passive Skill is Mystical Ward","type":"explicit"},{"id":"explicit.stat_1115914670","text":"# to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield","type":"explicit"},{"id":"explicit.stat_3893109186","text":"#% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block","type":"explicit"},{"id":"explicit.stat_3636098185","text":"# to Maximum Energy Shield per 5 Armour on Equipped Shield","type":"explicit"},{"id":"explicit.stat_3295031203","text":"#% increased Skeleton Movement Speed","type":"explicit"},{"id":"explicit.stat_3087912144","text":"Passive Skills in Radius also grant: #% increased Attack Speed with Unarmed Attacks","type":"explicit"},{"id":"explicit.stat_676967140","text":"Minions Recover #% of their Life when they Block","type":"explicit"},{"id":"explicit.stat_3400437584","text":"#% increased Damage per 1% Chance to Block Attack Damage","type":"explicit"},{"id":"explicit.stat_3243062554","text":"#% of Attack Damage Leeched as Life per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_2034658008","text":"#% increased Damage per Power Charge","type":"explicit"},{"id":"explicit.stat_2870108850","text":"Adds # to # Lightning Damage to Hits against Ignited Enemies","type":"explicit"},{"id":"explicit.stat_1705633890","text":"1 Added Passive Skill is Prodigious Defence","type":"explicit"},{"id":"explicit.stat_346029096","text":"Avatar of Fire","type":"explicit"},{"id":"explicit.stat_4107150355","text":"Enemies you Shock have #% reduced Cast Speed","type":"explicit"},{"id":"explicit.stat_3835570161","text":"Minions gain Unholy Might for # seconds on Kill","type":"explicit"},{"id":"explicit.stat_2930275641","text":"1 Added Passive Skill is Titanic Swings","type":"explicit"},{"id":"explicit.stat_3462113315","text":"Your Raised Spectres also gain Arcane Surge when you do","type":"explicit"},{"id":"explicit.stat_2289610642","text":"1 Added Passive Skill is Rotten Claws","type":"explicit"},{"id":"explicit.stat_869436347","text":"#% increased Area of Effect for Skills used by Totems","type":"explicit"},{"id":"explicit.stat_3134790305","text":"Enemies you Shock have #% reduced Movement Speed","type":"explicit"},{"id":"explicit.stat_2280313599","text":"Deals # Chaos Damage per second to nearby Enemies","type":"explicit"},{"id":"explicit.stat_761505024","text":"Adds # to # Fire Attack Damage per Buff on you","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_venarius","text":"Carved to glorify # new faithful converted by High Templar Venarius","type":"explicit"},{"id":"explicit.stat_3996149330","text":"# to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_1276712564","text":"# to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_2889664727","text":"#% chance to Avoid Lightning Damage from Hits","type":"explicit"},{"id":"explicit.stat_3967028570","text":"#% of Chaos Damage is taken from Mana before Life","type":"explicit"},{"id":"explicit.stat_4270089231","text":"# to maximum Energy Shield per 100 Reserved Life","type":"explicit"},{"id":"explicit.stat_968694760","text":"With at least 40 Dexterity in Radius, Burning Arrow has a #% chance to spread Tar if it does not Ignite an Enemy","type":"explicit"},{"id":"explicit.stat_2222938936","text":"With at least 40 Dexterity in Radius, Burning Arrow has a #% chance to spread Burning Ground if it Ignites an Enemy","type":"explicit"},{"id":"explicit.stat_1073310669","text":"#% increased Evasion Rating if you have been Hit Recently","type":"explicit"},{"id":"explicit.stat_3734640451","text":"Adds # to # Cold Damage against Chilled Enemies","type":"explicit"},{"id":"explicit.stat_2227042420","text":"Your Physical Damage can Chill","type":"explicit"},{"id":"explicit.stat_4066711249","text":"Socketed Gems are Supported by Level # Knockback","type":"explicit"},{"id":"explicit.stat_4127720801","text":"Cannot Block","type":"explicit"},{"id":"explicit.stat_67637087","text":"#% less Damage taken if you have not been Hit Recently","type":"explicit"},{"id":"explicit.stat_4151190513","text":"#% increased Rarity of Items found with a Normal Item Equipped","type":"explicit"},{"id":"explicit.stat_2518598473","text":"Take # Fire Damage when you Ignite an Enemy","type":"explicit"},{"id":"explicit.stat_3358745905","text":"Attacks have Blood Magic","type":"explicit"},{"id":"explicit.stat_304970526","text":"#% increased Movement Speed during any Flask Effect","type":"explicit"},{"id":"explicit.stat_2418574586","text":"#% increased Damage with Ailments per Elder Item Equipped","type":"explicit"},{"id":"explicit.stat_512074347","text":"#% to Unarmed Attack Critical Strike Chance","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_asenath","text":"Denoted service of # dekhara in the akhara of Asenath","type":"explicit"},{"id":"explicit.stat_3652138990","text":"1 Added Passive Skill is Distilled Perfection","type":"explicit"},{"id":"explicit.stat_520731232","text":"Modifiers to Claw Critical Strike Chance also apply to Unarmed Attack Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_4078952782","text":"# Armour while you do not have Avatar of Fire","type":"explicit"},{"id":"explicit.stat_2052379536","text":"#% of Physical Damage Converted to Fire while you have Avatar of Fire","type":"explicit"},{"id":"explicit.stat_3730242558","text":"Golems have #% less Life","type":"explicit"},{"id":"explicit.stat_1194648995","text":"Chill Effect and Freeze Duration on you are based on #% of Energy Shield","type":"explicit"},{"id":"explicit.stat_143510471","text":"#% chance to Avoid Elemental Damage from Hits while Phasing","type":"explicit"},{"id":"explicit.stat_2815652613","text":"#% increased Critical Strike Chance while you have Avatar of Fire","type":"explicit"},{"id":"explicit.stat_2861397339","text":"Golems Deal #% less Damage","type":"explicit"},{"id":"explicit.stat_2576412389","text":"#% reduced Golem Size","type":"explicit"},{"id":"explicit.stat_1153966848","text":"Map has # additional random Suffix","type":"explicit"},{"id":"explicit.stat_2908111053","text":"#% of Damage Leeched as Mana against Frozen Enemies","type":"explicit"},{"id":"explicit.stat_4235300427","text":"1 Added Passive Skill is Special Reserve","type":"explicit"},{"id":"explicit.stat_2918150296","text":"Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence","type":"explicit"},{"id":"explicit.stat_3184053924","text":"#% increased Armour while stationary","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_nasima","text":"Denoted service of # dekhara in the akhara of Nasima","type":"explicit"},{"id":"explicit.stat_3712145967","text":"Gain a Void Charge every # seconds","type":"explicit"},{"id":"explicit.stat_1595367309","text":"1 Added Passive Skill is Snowstorm","type":"explicit"},{"id":"explicit.stat_3686711832","text":"Grants Last Breath when you Use a Skill during Flask Effect, for #% of Mana Cost","type":"explicit"},{"id":"explicit.stat_2869193493","text":"Golems Summoned in the past 8 seconds deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_3633399302","text":"#% of Fire Damage Leeched as Life while Ignited","type":"explicit"},{"id":"explicit.stat_3811649872","text":"Increases and Reductions to Spell Damage also apply to Attacks","type":"explicit"},{"id":"explicit.stat_3492654051","text":"You have Phasing if you have Blocked Recently","type":"explicit"},{"id":"explicit.stat_2332726055","text":"#% chance to Freeze during any Flask Effect","type":"explicit"},{"id":"explicit.stat_3191537057","text":"#% increased Minion Damage per Raised Spectre","type":"explicit"},{"id":"explicit.stat_2584264074","text":"You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently","type":"explicit"},{"id":"explicit.stat_777246604","text":"#% increased Minion Duration per Raised Zombie","type":"explicit"},{"id":"explicit.stat_729367217","text":"#% increased Minion Attack and Cast Speed per Skeleton you own","type":"explicit"},{"id":"explicit.stat_655871604","text":"Nearby Allies' Damage with Hits is Lucky","type":"explicit"},{"id":"explicit.stat_1626818279","text":"1 Added Passive Skill is Quick Getaway","type":"explicit"},{"id":"explicit.stat_410939404","text":"1 Added Passive Skill is Deep Cuts","type":"explicit"},{"id":"explicit.stat_3354027870","text":"Socketed Gems are Supported by Level # Lightning Penetration","type":"explicit"},{"id":"explicit.stat_3159161267","text":"#% increased Projectile Speed per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_622678123","text":"Monsters gain # Endurance Charge every 20 seconds","type":"explicit"},{"id":"explicit.stat_2135370196","text":"#% increased Maximum Mana per Abyss Jewel affecting you","type":"explicit"},{"id":"explicit.stat_842363566","text":"Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus","type":"explicit"},{"id":"explicit.stat_2867348718","text":"Socketed Attacks have #% to Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_70389693","text":"Monsters gain # Power Charge every 20 seconds","type":"explicit"},{"id":"explicit.stat_2959020308","text":"Gain Unholy Might for 4 seconds on Critical Strike","type":"explicit"},{"id":"explicit.stat_376158712","text":"Players are Cursed with Conductivity, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_3303015","text":"Adds # to # Physical Damage to Claw Attacks","type":"explicit"},{"id":"explicit.stat_1994143317","text":"Socketed Gems are Supported by Level # Elemental Penetration","type":"explicit"},{"id":"explicit.stat_3433724931","text":"Curse Enemies with Temporal Chains on Hit, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_3919557483","text":"#% increased Burning Damage if you've Ignited an Enemy Recently","type":"explicit"},{"id":"explicit.stat_3185671537","text":"#% increased Maximum Life per Abyss Jewel affecting you","type":"explicit"},{"id":"explicit.stat_247168950","text":"Minions gain #% of Elemental Damage as Extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_3036440332","text":"Socketed Gems are Supported by Level # Cast when Damage Taken","type":"explicit"},{"id":"explicit.stat_2264586521","text":"Socketed Attacks have # to Total Mana Cost","type":"explicit"},{"id":"explicit.stat_3384291300","text":"#% increased Damage if you Summoned a Golem in the past 8 seconds","type":"explicit"},{"id":"explicit.stat_2170294665","text":"Unique Boss drops divination cards","type":"explicit"},{"id":"explicit.stat_3262369040","text":"Consumes a Void Charge to Trigger Level # Void Shot when you fire Arrows with a Non-Triggered Skill","type":"explicit"},{"id":"explicit.stat_2809802678","text":"Skills fire an additional Projectile if you've used a Movement Skill Recently","type":"explicit"},{"id":"explicit.stat_608438307","text":"You can only Socket Corrupted Gems in this item","type":"explicit"},{"id":"explicit.stat_3807518091","text":"With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain # of its Modifiers for 20 seconds","type":"explicit"},{"id":"explicit.stat_1722821275","text":"1 Added Passive Skill is Peak Vigour","type":"explicit"},{"id":"explicit.stat_156080652","text":"1 Added Passive Skill is Whispers of Death","type":"explicit"},{"id":"explicit.stat_3681057026","text":"Replenishes Energy Shield by #% of Armour when you Block","type":"explicit"},{"id":"explicit.stat_1031644844","text":"Grants Level # Enduring Cry Skill","type":"explicit"},{"id":"explicit.stat_69078820","text":"1 Added Passive Skill is Wound Aggravation","type":"explicit"},{"id":"explicit.stat_1190121450","text":"You have Chilling Conflux for 3 seconds every 8 seconds","type":"explicit"},{"id":"explicit.stat_247746531","text":"Adds # Jewel Socket Passive Skills","type":"explicit"},{"id":"explicit.stat_1079148723","text":"Socketed Gems are supported by Level # Cast when Stunned","type":"explicit"},{"id":"explicit.stat_2087561637","text":"1 Added Passive Skill is Storm Drinker","type":"explicit"},{"id":"explicit.stat_3273962791","text":"# to Melee Strike Range while Unarmed","type":"explicit"},{"id":"explicit.stat_186383409","text":"Golems have #% increased Movement Speed","type":"explicit"},{"id":"explicit.stat_3296873305","text":"Remove Chill and Freeze when you use a Flask","type":"explicit"},{"id":"explicit.stat_505678789","text":"Modifiers to Claw Damage also apply to Unarmed Attack Damage","type":"explicit"},{"id":"explicit.stat_584144941","text":"Socketed Gems are Supported by Level # Lesser Multiple Projectiles","type":"explicit"},{"id":"explicit.stat_2713357573","text":"#% additional Physical Damage Reduction while moving","type":"explicit"},{"id":"explicit.stat_4054656914","text":"1 Added Passive Skill is Vicious Guard","type":"explicit"},{"id":"explicit.stat_2696557965","text":"Socketed Gems are Supported by Level # Volley","type":"explicit"},{"id":"explicit.stat_3237923082","text":"Socketed Gems are Supported by Level # Onslaught","type":"explicit"},{"id":"explicit.stat_2007746338","text":"Grants Level # Rallying Cry Skill","type":"explicit"},{"id":"explicit.stat_983989924","text":"#% reduced Elemental Damage taken while stationary","type":"explicit"},{"id":"explicit.stat_3515686789","text":"#% increased Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_864879045","text":"#% chance to Chill Attackers for 4 seconds on Block","type":"explicit"},{"id":"explicit.stat_3087667389","text":"1 Added Passive Skill is Dread March","type":"explicit"},{"id":"explicit.stat_4070519133","text":"#% Chance to Block Spell Damage while on Low Life","type":"explicit"},{"id":"explicit.stat_1904419785","text":"Grants Level # Petrification Statue Skill","type":"explicit"},{"id":"explicit.stat_1454377049","text":"#% of Lightning Damage Leeched as Mana during Flask effect","type":"explicit"},{"id":"explicit.stat_2724985127","text":"Area contains additional waves of Zombies","type":"explicit"},{"id":"explicit.stat_1882129725","text":"1 Added Passive Skill is Guerilla Tactics","type":"explicit"},{"id":"explicit.stat_4294267596","text":"Take no Extra Damage from Critical Strikes","type":"explicit"},{"id":"explicit.stat_3784610129","text":"1 Added Passive Skill is Dark Messenger","type":"explicit"},{"id":"explicit.stat_3346092312","text":"Leech Energy Shield instead of Life","type":"explicit"},{"id":"explicit.stat_956038713","text":"Shared Suffering","type":"explicit"},{"id":"explicit.stat_2558253923","text":"Hits with this Weapon have Culling Strike against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_990219738","text":"#% increased Lightning Damage per 10 Intelligence","type":"explicit"},{"id":"explicit.stat_1795756125","text":"Trigger Level # Intimidating Cry on Hit","type":"explicit"},{"id":"explicit.stat_1798031916","text":"Vulnerability has #% reduced Mana Reservation if Cast as an Aura","type":"explicit"},{"id":"explicit.stat_528422616","text":"#% increased Damage with Hits and Ailments against Hindered Enemies","type":"explicit"},{"id":"explicit.stat_433536969","text":"Minions Convert #% of their Maximum Life to Maximum Energy\nShield per 1% Chaos Resistance they have","type":"explicit"},{"id":"explicit.stat_3651611160","text":"#% increased Taunt Duration","type":"explicit"},{"id":"explicit.stat_289885185","text":"Chaos Skills have #% increased Skill Effect Duration","type":"explicit"},{"id":"explicit.stat_4291066912","text":"1 Added Passive Skill is Evil Eye","type":"explicit"},{"id":"explicit.stat_1064778484","text":"Arrows that Pierce have #% to Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_3801067695","text":"#% increased Effect of Shock on you","type":"explicit"},{"id":"explicit.stat_1974445926","text":"Minions have #% chance to Poison Enemies on Hit","type":"explicit"},{"id":"explicit.stat_1328548975","text":"#% to Quality of Socketed Support Gems","type":"explicit"},{"id":"explicit.stat_3375208082","text":"Socketed Gems are Supported by Level # Endurance Charge on Melee Stun","type":"explicit"},{"id":"explicit.stat_451866048","text":"Shock Enemies as though dealing #% more Damage","type":"explicit"},{"id":"explicit.stat_1477032229","text":"Damage Penetrates #% Cold Resistance against Chilled Enemies","type":"explicit"},{"id":"explicit.stat_2834476618","text":"Minions have #% faster start of Energy Shield Recharge","type":"explicit"},{"id":"explicit.stat_2562474285","text":"With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage\nto surrounding targets while wielding a Mace","type":"explicit"},{"id":"explicit.stat_3450276548","text":"Blind Chilled Enemies on Hit","type":"explicit"},{"id":"explicit.stat_2138799639","text":"Arrows Pierce all Targets after Forking","type":"explicit"},{"id":"explicit.stat_1134501245","text":"1 Added Passive Skill is First Among Equals","type":"explicit"},{"id":"explicit.stat_3864993324","text":"# Maximum Energy Shield per Level","type":"explicit"},{"id":"explicit.stat_2459809121","text":"Chill Enemy for # second when Hit, reducing their Action Speed by 30%","type":"explicit"},{"id":"explicit.stat_883169830","text":"Projectiles deal #% increased Damage for each Enemy Pierced","type":"explicit"},{"id":"explicit.stat_1263311755","text":"#% more Monster Damage","type":"explicit"},{"id":"explicit.stat_4118987751","text":"#% increased Maximum total Recovery per second from Life Leech","type":"explicit"},{"id":"explicit.stat_2589589781","text":"1 Added Passive Skill is Scintillating Idea","type":"explicit"},{"id":"explicit.stat_1901158930","text":"Bleeding cannot be inflicted on you","type":"explicit"},{"id":"explicit.stat_2521269624","text":"Minions have #% chance to Dodge Spell Hits","type":"explicit"},{"id":"explicit.stat_1663239249","text":"Trigger Level # Bone Offering, Flesh Offering or Spirit Offering every 5 seconds\nOffering Skills Triggered this way also affect you","type":"explicit"},{"id":"explicit.stat_694123963","text":"You are Cursed with Vulnerability, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_1498954300","text":"#% increased Quantity of Items found with a Magic Item Equipped","type":"explicit"},{"id":"explicit.stat_177215332","text":"1 Added Passive Skill is Thaumophage","type":"explicit"},{"id":"explicit.stat_814369372","text":"1 Added Passive Skill is Provocateur","type":"explicit"},{"id":"explicit.stat_2238471448","text":"Minions deal #% increased Damage per 10 Dexterity","type":"explicit"},{"id":"explicit.stat_3298440988","text":"#% less Mine Damage","type":"explicit"},{"id":"explicit.stat_1364858171","text":"1 Added Passive Skill is Sublime Sensation","type":"explicit"},{"id":"explicit.stat_413362507","text":"While at maximum Frenzy Charges, Attacks Poison Enemies","type":"explicit"},{"id":"explicit.stat_392942015","text":"1 Added Passive Skill is Eye to Eye","type":"explicit"},{"id":"explicit.stat_383245807","text":"1 Added Passive Skill is Feasting Fiends","type":"explicit"},{"id":"explicit.stat_561861132","text":"Remove Shock when you use a Flask","type":"explicit"},{"id":"explicit.stat_2415497478","text":"#% chance to Avoid Physical Damage from Hits","type":"explicit"},{"id":"explicit.stat_3950683692","text":"1 Added Passive Skill is Pure Commander","type":"explicit"},{"id":"explicit.stat_3430460307","text":"Notable Passive Skills in Radius are Transformed to\ninstead grant: #% increased Mana Cost of Skills and #% increased Spell Damage","type":"explicit"},{"id":"explicit.stat_1633381214","text":"#% chance to gain an additional Vaal Soul per Enemy Shattered","type":"explicit"},{"id":"explicit.stat_3566242751","text":"Grants Level # Decoy Totem Skill","type":"explicit"},{"id":"explicit.stat_3178542354","text":"#% increased Movement Speed if you've Hit an Enemy Recently","type":"explicit"},{"id":"explicit.stat_1999711879","text":"# to Minimum Power Charges","type":"explicit"},{"id":"explicit.stat_405941409","text":"Regenerate # Life per second for each Uncorrupted Item Equipped","type":"explicit"},{"id":"explicit.stat_3375415245","text":"#% increased Physical Damage with Hits and Ailments against Ignited Enemies","type":"explicit"},{"id":"explicit.stat_3206652215","text":"#% chance to be Shocked","type":"explicit"},{"id":"explicit.stat_3750572810","text":"# to Total Mana Cost of Skills for each Corrupted Item Equipped","type":"explicit"},{"id":"explicit.stat_38715141","text":"Summon Raging Spirit has #% increased Duration","type":"explicit"},{"id":"explicit.stat_3549040753","text":"Your Chaos Damage Poisons Enemies","type":"explicit"},{"id":"explicit.stat_710105516","text":"Regenerate #% of Life per second on Chilled Ground","type":"explicit"},{"id":"explicit.stat_3999870307","text":"Summoned Raging Spirits have #% increased maximum Life","type":"explicit"},{"id":"explicit.stat_902747843","text":"#% increased Damage per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_3711553948","text":"1 Added Passive Skill is Devastator","type":"explicit"},{"id":"explicit.stat_3274270612","text":"1 Added Passive Skill is Heraldry","type":"explicit"},{"id":"explicit.stat_4261620841","text":"Area contains additional waves of Oriathan Zombies","type":"explicit"},{"id":"explicit.stat_3263216405","text":"Socketed Movement Skills have no Mana Cost","type":"explicit"},{"id":"explicit.stat_2776975640","text":"Phase Acrobatics","type":"explicit"},{"id":"explicit.stat_1301765461","text":"#% to maximum Chaos Resistance","type":"explicit"},{"id":"explicit.stat_3716758077","text":"#% to maximum Fire Resistance while affected by Herald of Ash","type":"explicit"},{"id":"explicit.stat_3603695769","text":"1 Added Passive Skill is Spring Back","type":"explicit"},{"id":"explicit.stat_3923274300","text":"Enemies in your Chilling Areas take #% increased Lightning Damage","type":"explicit"},{"id":"explicit.stat_3397728378","text":"Area contains additional waves of Ghosts","type":"explicit"},{"id":"explicit.stat_2993091567","text":"#% increased Mana Regeneration Rate during any Flask Effect","type":"explicit"},{"id":"explicit.stat_2477735984","text":"#% of Lightning Damage is taken from Mana before Life","type":"explicit"},{"id":"explicit.stat_658456881","text":"# to Minimum Frenzy Charges","type":"explicit"},{"id":"explicit.stat_3308936917","text":"#% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill","type":"explicit"},{"id":"explicit.stat_2783012144","text":"1 Added Passive Skill is Shrieking Bolts","type":"explicit"},{"id":"explicit.stat_4288473380","text":"1 Added Passive Skill is Rattling Bellow","type":"explicit"},{"id":"explicit.stat_3370223014","text":"Adds # to # Cold Damage if you've dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_100088509","text":"With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for\n4 seconds while wielding an Axe","type":"explicit"},{"id":"explicit.stat_1038955006","text":"1 Added Passive Skill is Dragon Hunter","type":"explicit"},{"id":"explicit.stat_3152149523","text":"Flammability has #% reduced Mana Reservation if Cast as an Aura","type":"explicit"},{"id":"explicit.stat_3095266721","text":"#% chance to Dodge Attack Hits while Channelling","type":"explicit"},{"id":"explicit.stat_2335364359","text":"1 Added Passive Skill is Precise Retaliation","type":"explicit"},{"id":"explicit.stat_4108305628","text":"Adds # to # Lightning Damage to Spells during Flask effect","type":"explicit"},{"id":"explicit.stat_4199056048","text":"1 Added Passive Skill is Burning Bright","type":"explicit"},{"id":"explicit.stat_3913265126","text":"Gain #% of Weapon Physical Damage as Extra Damage of each Element","type":"explicit"},{"id":"explicit.stat_3256116097","text":"#% increased Cast Speed during Flask effect","type":"explicit"},{"id":"explicit.stat_2072625596","text":"#% increased Cast Speed if you've Killed Recently","type":"explicit"},{"id":"explicit.stat_2737492258","text":"Recover #% of Life on Rampage","type":"explicit"},{"id":"explicit.stat_440248135","text":"Socketed Triggered Bow Skills deal #% more Damage","type":"explicit"},{"id":"explicit.stat_942938211","text":"Projectiles Fork","type":"explicit"},{"id":"explicit.stat_2544408546","text":"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies","type":"explicit"},{"id":"explicit.stat_1903496649","text":"1 Added Passive Skill is Graceful Execution","type":"explicit"},{"id":"explicit.stat_3271016161","text":"Kills grant an additional Vaal Soul if you have Rampaged Recently","type":"explicit"},{"id":"explicit.stat_3206911230","text":"1 Added Passive Skill is Disorienting Display","type":"explicit"},{"id":"explicit.stat_3477720557","text":"Area has patches of Shocked Ground","type":"explicit"},{"id":"explicit.stat_3282302743","text":"Socketed Non-Channelling Bow Skills are Triggered by Snipe","type":"explicit"},{"id":"explicit.stat_3041288981","text":"Recover #% of your maximum Mana when you Block","type":"explicit"},{"id":"explicit.stat_1499057234","text":"1 Added Passive Skill is Battlefield Dominator","type":"explicit"},{"id":"explicit.stat_2233726619","text":"Arctic Armour has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_4292531291","text":"Adds # to # Lightning Damage to Attacks during Flask effect","type":"explicit"},{"id":"explicit.stat_836566759","text":"1 Added Passive Skill is Cold-Blooded Killer","type":"explicit"},{"id":"explicit.stat_2417845663","text":"#% chance to Dodge Spell Hits while Channelling","type":"explicit"},{"id":"explicit.stat_3057853352","text":"#% chance to Sap Enemies in Chilling Areas","type":"explicit"},{"id":"explicit.stat_1238227257","text":"Debuffs on you expire #% faster","type":"explicit"},{"id":"explicit.stat_1217959763","text":"Area contains additional waves of Raging Spirits","type":"explicit"},{"id":"explicit.stat_2900833792","text":"1 Added Passive Skill is Brush with Death","type":"explicit"},{"id":"explicit.stat_4031851097","text":"Deal no Non-Elemental Damage","type":"explicit"},{"id":"explicit.stat_959641748","text":"Removes #% of Mana Recovered from Life when used","type":"explicit"},{"id":"explicit.stat_2878779644","text":"Grants Level 20 Summon Bestial # Skill","type":"explicit","option":{"options":[{"id":"1","text":"Rhoa"},{"id":"2","text":"Ursa"},{"id":"3","text":"Snake"}]}},{"id":"explicit.stat_2638352064","text":"When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy","type":"explicit"},{"id":"explicit.stat_1970781345","text":"Socketed Skills deal #% more Attack Damage","type":"explicit"},{"id":"explicit.stat_660386148","text":"#% of Physical Damage Converted to Lightning during Flask effect","type":"explicit"},{"id":"explicit.stat_4164990693","text":"Damage Penetrates #% Lightning Resistance during Flask effect","type":"explicit"},{"id":"explicit.stat_158779585","text":"#% increased Effect of Fortify on you","type":"explicit"},{"id":"explicit.stat_1232004574","text":"#% chance that if you would gain Power Charges, you instead gain up to\nyour maximum number of Power Charges","type":"explicit"},{"id":"explicit.stat_67169579","text":"# to Level of all Chaos Skill Gems","type":"explicit"},{"id":"explicit.stat_4157767905","text":"#% increased Projectile Attack Damage per 200 Accuracy Rating","type":"explicit"},{"id":"explicit.stat_1791875585","text":"Gain an Endurance Charge when you lose a Power Charge","type":"explicit"},{"id":"explicit.stat_1411310186","text":"Added Small Passive Skills also grant: #% increased Attack Speed","type":"explicit"},{"id":"explicit.stat_763611529","text":"#% chance to Unnerve Enemies for 4 seconds on Hit","type":"explicit"},{"id":"explicit.stat_2869420801","text":"With at least 40 Dexterity in Radius, Dual Strike has #% increased\nAccuracy Rating while wielding a Sword","type":"explicit"},{"id":"explicit.stat_3391925584","text":"1 Added Passive Skill is Pressure Points","type":"explicit"},{"id":"explicit.stat_2762046953","text":"Minions have #% Chance to Block Spell Damage","type":"explicit"},{"id":"explicit.stat_3188756614","text":"1 Added Passive Skill is Fire Attunement","type":"explicit"},{"id":"explicit.stat_4050593908","text":"Skills used by Traps have #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_935623115","text":"Adds # to # Lightning Damage if you've dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_430248187","text":"#% increased Area of Effect if you have Stunned an Enemy Recently","type":"explicit"},{"id":"explicit.stat_1746347097","text":"#% increased Aspect of the Avian Buff Effect","type":"explicit"},{"id":"explicit.stat_2592799343","text":"Gain # Mana per Grand Spectrum","type":"explicit"},{"id":"explicit.stat_2325632050","text":"Socketed Gems are supported by Level # Cast On Critical Strike","type":"explicit"},{"id":"explicit.stat_2674336304","text":"Nearby Enemies have #% to Cold Resistance","type":"explicit"},{"id":"explicit.stat_684087686","text":"1 Added Passive Skill is Clarity of Purpose","type":"explicit"},{"id":"explicit.stat_1005475168","text":"1 Added Passive Skill is Powerful Assault","type":"explicit"},{"id":"explicit.stat_3536778624","text":"1 Added Passive Skill is Towering Threat","type":"explicit"},{"id":"explicit.stat_2006370586","text":"Enemies you Attack Reflect # Physical Damage to you","type":"explicit"},{"id":"explicit.stat_2429546158","text":"Grants Level # Hatred Skill","type":"explicit"},{"id":"explicit.stat_664010431","text":"1 Added Passive Skill is Veteran Defender","type":"explicit"},{"id":"explicit.stat_3168149399","text":"Adds # to # Lightning Damage to Attacks per 10 Intelligence","type":"explicit"},{"id":"explicit.stat_165218607","text":"Hits have #% increased Critical Strike Chance against you","type":"explicit"},{"id":"explicit.stat_1195353227","text":"Added Small Passive Skills also grant: #% increased Cast Speed","type":"explicit"},{"id":"explicit.stat_1495376076","text":"Regenerate # Mana per Second while you have Avian's Flight","type":"explicit"},{"id":"explicit.stat_1199118714","text":"Socketed Golem Skills gain #% of Maximum Life as Extra Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_2813516522","text":"#% increased Effect of Buffs granted by Socketed Golem Skills","type":"explicit"},{"id":"explicit.stat_2591028853","text":"Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies","type":"explicit"},{"id":"explicit.stat_2343098806","text":"Grants Level # Snipe Skill","type":"explicit"},{"id":"explicit.stat_1251731548","text":"# seconds to Avian's Flight Duration","type":"explicit"},{"id":"explicit.stat_68673913","text":"Adds # to # Fire Damage to Attacks per 10 Strength","type":"explicit"},{"id":"explicit.stat_608164368","text":"1 Added Passive Skill is Wish for Death","type":"explicit"},{"id":"explicit.stat_769783486","text":"Adds # to # Cold Damage to Attacks per 10 Dexterity","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_deshret","text":"Denoted service of # dekhara in the akhara of Deshret","type":"explicit"},{"id":"explicit.stat_3659983276","text":"Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions take #% increased Damage","type":"explicit"},{"id":"explicit.stat_3948776386","text":"#% increased Damage per 15 Strength","type":"explicit"},{"id":"explicit.stat_1693676706","text":"Gain Onslaught for # seconds when you Cast Socketed Golem Skill","type":"explicit"},{"id":"explicit.stat_3832665876","text":"1 Added Passive Skill is Misery Everlasting","type":"explicit"},{"id":"explicit.stat_1085446536","text":"Adds # Small Passive Skills which grant nothing","type":"explicit"},{"id":"explicit.stat_2481080006","text":"Area contains additional waves of Ravager Maws","type":"explicit"},{"id":"explicit.stat_2244243943","text":"1 Added Passive Skill is Weight Advantage","type":"explicit"},{"id":"explicit.stat_2162097452","text":"# to Level of all Minion Skill Gems","type":"explicit"},{"id":"explicit.stat_2134141047","text":"1 Added Passive Skill is Vital Focus","type":"explicit"},{"id":"explicit.stat_2725259389","text":"#% increased Skeleton Cast Speed","type":"explicit"},{"id":"explicit.stat_2922737717","text":"#% chance to gain a Siphoning Charge when you use a Skill","type":"explicit"},{"id":"explicit.stat_1872128565","text":"# to Maximum Siphoning Charges per Elder or Shaper Item Equipped","type":"explicit"},{"id":"explicit.stat_2567751411","text":"Warcry Skills have #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_1811130680","text":"#% increased Mana Recovered","type":"explicit"},{"id":"explicit.stat_2589482056","text":"Regenerate # Life per Second while you have Avian's Flight","type":"explicit"},{"id":"explicit.stat_3296019532","text":"Gain #% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge","type":"explicit"},{"id":"explicit.stat_706212417","text":"Socketed Golem Skills have #% increased Attack and Cast Speed","type":"explicit"},{"id":"explicit.stat_74338099","text":"Skills fire an additional Projectile","type":"explicit"},{"id":"explicit.stat_3255961830","text":"# to Melee Strike Range if you have Killed Recently","type":"explicit"},{"id":"explicit.stat_2977774856","text":"Gain a Frenzy Charge on Hit while Bleeding","type":"explicit"},{"id":"explicit.stat_2602664175","text":"Minions Recover #% of Life on Killing a Poisoned Enemy","type":"explicit"},{"id":"explicit.stat_2410613176","text":"Grants Level # Vitality Skill","type":"explicit"},{"id":"explicit.stat_845306697","text":"1 Added Passive Skill is Readiness","type":"explicit"},{"id":"explicit.stat_3995612171","text":"#% increased Arctic Armour Buff Effect","type":"explicit"},{"id":"explicit.stat_3842406602","text":"#% increased Attack Speed if you've taken a Savage Hit Recently","type":"explicit"},{"id":"explicit.stat_3924539382","text":"Socketed Gems are Supported by Level # Efficacy","type":"explicit"},{"id":"explicit.stat_3252082366","text":"Trigger Level # Summon Phantasm Skill when you Consume a corpse","type":"explicit"},{"id":"explicit.stat_3729445224","text":"Auras from your Skills grant #% increased Damage to you and Allies","type":"explicit"},{"id":"explicit.stat_3706959521","text":"# to Minimum Endurance Charges","type":"explicit"},{"id":"explicit.stat_1258679667","text":"#% increased Physical Damage while you have Resolute Technique","type":"explicit"},{"id":"explicit.stat_2451774989","text":"Hits with this Weapon always Ignite, Freeze, and Shock","type":"explicit"},{"id":"explicit.stat_1904581068","text":"1 Added Passive Skill is Force Multiplier","type":"explicit"},{"id":"explicit.stat_3133579934","text":"#% increased Attack and Cast Speed per Summoned Raging Spirit","type":"explicit"},{"id":"explicit.stat_3837366401","text":"#% additional Physical Damage Reduction from Hits per Siphoning Charge","type":"explicit"},{"id":"explicit.stat_2905429068","text":"You have Resolute Technique while you do not have Elemental Overload","type":"explicit"},{"id":"explicit.stat_346351023","text":"Socketed Gems have #% more Attack and Cast Speed","type":"explicit"},{"id":"explicit.stat_614758785","text":"# Fire Damage taken from Hits","type":"explicit"},{"id":"explicit.stat_1503812817","text":"With at least 40 Dexterity in Radius, Dual Strike has #% to Critical Strike\nMultiplier while wielding a Dagger","type":"explicit"},{"id":"explicit.stat_1587137379","text":"#% of Damage Leeched as Life per Siphoning Charge","type":"explicit"},{"id":"explicit.stat_2200407711","text":"Minions have #% to Cold Resistance","type":"explicit"},{"id":"explicit.stat_2255914633","text":"Gain #% of Physical Damage as Extra Lightning Damage while affected by Wrath","type":"explicit"},{"id":"explicit.stat_484879947","text":"Grants Level # Anger Skill","type":"explicit"},{"id":"explicit.stat_47271484","text":"#% increased Experience Gain for Corrupted Gems","type":"explicit"},{"id":"explicit.stat_329974315","text":"#% increased Cold Damage per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_2322980282","text":"1 Added Passive Skill is Smoking Remains","type":"explicit"},{"id":"explicit.stat_4095169720","text":"Projectile Attack Skills have #% increased Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_348883745","text":"1 Added Passive Skill is Tempt the Storm","type":"explicit"},{"id":"explicit.stat_1959256242","text":"You have Onslaught while not on Low Mana","type":"explicit"},{"id":"explicit.stat_824024007","text":"Your Critical Strike Multiplier is 300%","type":"explicit"},{"id":"explicit.stat_124131830","text":"# to Level of all Spell Skill Gems","type":"explicit"},{"id":"explicit.stat_1496043857","text":"1 Added Passive Skill is Replenishing Presence","type":"explicit"},{"id":"explicit.stat_3329402420","text":"#% increased Movement Speed while affected by Grace","type":"explicit"},{"id":"explicit.stat_3607300552","text":"1 Added Passive Skill is Renewal","type":"explicit"},{"id":"explicit.stat_68410701","text":"You take #% reduced Extra Damage from Critical Strikes while affected by Determination","type":"explicit"},{"id":"explicit.stat_1236638414","text":"Minions gain #% of Physical Damage as Extra Cold Damage","type":"explicit"},{"id":"explicit.stat_446027070","text":"#% chance to Gain Arcane Surge when you deal a Critical Strike","type":"explicit"},{"id":"explicit.stat_3088183606","text":"# to Armour per 5 Evasion Rating on Equipped Shield","type":"explicit"},{"id":"explicit.stat_3647242059","text":"Left ring slot: Projectiles from Spells cannot Chain","type":"explicit"},{"id":"explicit.stat_4221489692","text":"#% chance to Trigger Level 20 Summon Spectral Wolf on Critical Strike with this Weapon","type":"explicit"},{"id":"explicit.stat_77045106","text":"1 Added Passive Skill is Ancestral Inspiration","type":"explicit"},{"id":"explicit.stat_3114469764","text":"War Banner has #% increased Adrenaline duration","type":"explicit"},{"id":"explicit.stat_3345955207","text":"Every 8 seconds, gain Avatar of Fire for 4 seconds","type":"explicit"},{"id":"explicit.stat_2566390555","text":"#% increased Totem Damage per 10 Devotion","type":"explicit"},{"id":"explicit.stat_2663792764","text":"You lose all Spirit Charges when taking a Savage Hit","type":"explicit"},{"id":"explicit.stat_4173140569","text":"Banners you are carrying gain 1 Stage on Melee Hit, up to 5 per second","type":"explicit"},{"id":"explicit.stat_33065250","text":"Melee Attacks have #% chance to Poison on Hit","type":"explicit"},{"id":"explicit.stat_2736829661","text":"When you Kill a Rare Monster, #% chance to gain one of its Modifiers for 10 seconds","type":"explicit"},{"id":"explicit.stat_1285056331","text":"Melee Attacks have #% chance to cause Bleeding","type":"explicit"},{"id":"explicit.stat_3703926412","text":"#% increased Fire Damage with Hits and Ailments against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_2933024469","text":"Right ring slot: Projectiles from Spells cannot Fork","type":"explicit"},{"id":"explicit.stat_162742068","text":"+#% Monster Lightning Resistance","type":"explicit"},{"id":"explicit.stat_80470845","text":"#% increased Energy Shield Recovery Rate while affected by Discipline","type":"explicit"},{"id":"explicit.stat_393565679","text":"1 Added Passive Skill is Arcane Adept","type":"explicit"},{"id":"explicit.stat_3357049845","text":"#% increased Critical Strike Chance while affected by Wrath","type":"explicit"},{"id":"explicit.stat_1166487805","text":"Gain # Armour per Grand Spectrum","type":"explicit"},{"id":"explicit.stat_4116409626","text":"#% increased Elemental Damage with Attack Skills per Power Charge","type":"explicit"},{"id":"explicit.stat_2697019412","text":"#% increased Brand Damage per 10 Devotion","type":"explicit"},{"id":"explicit.stat_415837237","text":"Nearby Enemies take #% increased Physical Damage","type":"explicit"},{"id":"explicit.stat_3656959867","text":"#% of Damage leeched as Life while affected by Vitality","type":"explicit"},{"id":"explicit.stat_1524882321","text":"Counts as all One Handed Melee Weapon Types","type":"explicit"},{"id":"explicit.stat_811582994","text":"#% chance to Dodge Attack Hits if you have Blocked Recently","type":"explicit"},{"id":"explicit.stat_2341269061","text":"Grants Level # Discipline Skill","type":"explicit"},{"id":"explicit.stat_3826125995","text":"Projectiles from Spells cannot Pierce","type":"explicit"},{"id":"explicit.stat_2205982416","text":"1 Added Passive Skill is Broadside","type":"explicit"},{"id":"explicit.stat_730530528","text":"#% reduced Elemental Ailment Duration on you per 10 Devotion","type":"explicit"},{"id":"explicit.stat_1468606528","text":"10% Chance to Trigger Level 10 Summon Spectral Wolf on Kill","type":"explicit"},{"id":"explicit.stat_633943719","text":"1 Added Passive Skill is Openness","type":"explicit"},{"id":"explicit.stat_4263513561","text":"#% Chance to Block Spell Damage if you have Blocked Spell Damage Recently","type":"explicit"},{"id":"explicit.stat_2830135449","text":"Minions have +# to Accuracy Rating per 10 Devotion","type":"explicit"},{"id":"explicit.stat_1188846263","text":"Grants Level # Haste Skill","type":"explicit"},{"id":"explicit.stat_414991155","text":"#% less Animate Weapon Duration","type":"explicit"},{"id":"explicit.stat_3901992019","text":"1 Added Passive Skill is Arcane Heroism","type":"explicit"},{"id":"explicit.stat_1979658770","text":"Socketed Gems are Supported by Level # Fire Penetration","type":"explicit"},{"id":"explicit.stat_1266553505","text":"Weapons you Animate create an additional copy","type":"explicit"},{"id":"explicit.stat_547412107","text":"#% increased Vaal Skill Effect Duration","type":"explicit"},{"id":"explicit.stat_2585926696","text":"#% increased effect of Non-Curse Auras per 10 Devotion","type":"explicit"},{"id":"explicit.stat_3860179422","text":"1 Added Passive Skill is Precise Commander","type":"explicit"},{"id":"explicit.stat_957679205","text":"1 Added Passive Skill is Ancestral Echo","type":"explicit"},{"id":"explicit.stat_854225133","text":"You have no Life Regeneration","type":"explicit"},{"id":"explicit.stat_1424006185","text":"You gain Onslaught for # seconds on Kill while affected by Haste","type":"explicit"},{"id":"explicit.stat_327253797","text":"#% chance to Defend with Double Armour","type":"explicit"},{"id":"explicit.stat_2395088636","text":"Throw an additional Mine","type":"explicit"},{"id":"explicit.stat_2732344760","text":"Gain a Frenzy Charge on reaching Maximum Power Charges","type":"explicit"},{"id":"explicit.stat_4259701244","text":"# Life gained for each Enemy Hit while affected by Vitality","type":"explicit"},{"id":"explicit.stat_24977021","text":"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_4204954479","text":"Mana Recovery occurs instantly at the end of the Flask effect","type":"explicit"},{"id":"explicit.stat_2681416653","text":"Area contains additional waves of Phantasms","type":"explicit"},{"id":"explicit.stat_873224517","text":"#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements","type":"explicit"},{"id":"explicit.stat_1162425204","text":"Remove Ignite and Burning when you use a Flask","type":"explicit"},{"id":"explicit.stat_3153744598","text":"With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells","type":"explicit"},{"id":"explicit.stat_2859437049","text":"Grants Level # Brandsurge Skill","type":"explicit"},{"id":"explicit.stat_4188581520","text":"1 Added Passive Skill is Battle-Hardened","type":"explicit"},{"id":"explicit.stat_3868443508","text":"#% increased Damage per Raised Zombie","type":"explicit"},{"id":"explicit.stat_495095219","text":"#% increased Critical Strike Chance for Spells per Raised Spectre","type":"explicit"},{"id":"explicit.stat_2388362438","text":"With a Ghastly Eye Jewel Socketed, Minions have +# to Accuracy Rating","type":"explicit"},{"id":"explicit.stat_889728548","text":"1 Added Passive Skill is Stormrider","type":"explicit"},{"id":"explicit.stat_966400988","text":"Herald of Thunder has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_1555918911","text":"Right ring slot: Projectiles from Spells Chain +# times","type":"explicit"},{"id":"explicit.stat_1749783861","text":"Grants Level # Embrace Madness Skill","type":"explicit"},{"id":"explicit.stat_1903097619","text":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Physical Skills","type":"explicit"},{"id":"explicit.stat_1316278494","text":"#% increased Warcry Speed","type":"explicit"},{"id":"explicit.stat_2181129193","text":"#% additional Physical Damage Reduction while stationary","type":"explicit"},{"id":"explicit.stat_1699077932","text":"#% chance to Recover 10% of Mana when you use a Skill while affected by Clarity","type":"explicit"},{"id":"explicit.stat_3293275880","text":"#% increased Mana Cost of Skills per 10 Devotion","type":"explicit"},{"id":"explicit.stat_4272248216","text":"Ghost Reaver","type":"explicit"},{"id":"explicit.stat_2262034536","text":"1 Added Passive Skill is Invigorating Portents","type":"explicit"},{"id":"explicit.stat_1973890509","text":"#% chance to Trigger Level 20 Animate Weapon on Kill","type":"explicit"},{"id":"explicit.stat_1722775216","text":"#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements","type":"explicit"},{"id":"explicit.stat_3898572660","text":"1 Added Passive Skill is Holy Conquest","type":"explicit"},{"id":"explicit.stat_28721242","text":"You can have two different Banners at the same time","type":"explicit"},{"id":"explicit.stat_2218252147","text":"#% chance to Dodge Attack Hits while affected by Grace","type":"explicit"},{"id":"explicit.stat_2042813020","text":"Regenerate # Mana per Second per 10 Devotion","type":"explicit"},{"id":"explicit.stat_2913235441","text":"When you Kill a Rare monster, you gain its Modifiers for # seconds","type":"explicit"},{"id":"explicit.stat_1711683262","text":"Non-critical strikes deal #% more Damage","type":"explicit"},{"id":"explicit.stat_3624529132","text":"#% of Physical Damage Converted to Fire Damage while affected by Anger","type":"explicit"},{"id":"explicit.stat_178057093","text":"Socketed Golem Skills have #% chance to Taunt on Hit","type":"explicit"},{"id":"explicit.stat_3368671817","text":"Adds # to # Physical Damage to Attacks and Spells per Siphoning Charge","type":"explicit"},{"id":"explicit.stat_3961014595","text":"#% increased Spell Damage per 16 Intelligence","type":"explicit"},{"id":"explicit.stat_4250009622","text":"#% chance to be Poisoned","type":"explicit"},{"id":"explicit.stat_4229711086","text":"#% increased Damage with Hits and Ailments per Freeze, Shock or Ignite on Enemy","type":"explicit"},{"id":"explicit.stat_1030987123","text":"#% to all maximum Resistances while Poisoned","type":"explicit"},{"id":"explicit.stat_2443132097","text":"Poisons on you expire #% slower","type":"explicit"},{"id":"explicit.stat_2690790844","text":"#% increased Life Recovery Rate while affected by Vitality","type":"explicit"},{"id":"explicit.stat_4245204226","text":"Gain #% of Physical Damage as Extra Fire Damage while affected by Anger","type":"explicit"},{"id":"explicit.stat_1004885987","text":"Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield","type":"explicit"},{"id":"explicit.stat_2548097895","text":"#% chance to Blind Enemies which Hit you while affected by Grace","type":"explicit"},{"id":"explicit.stat_1365052901","text":"#% increased Attack Speed during any Flask Effect","type":"explicit"},{"id":"explicit.stat_3294884567","text":"1 Added Passive Skill is Ancestral Reach","type":"explicit"},{"id":"explicit.stat_1741700339","text":"1 Added Passive Skill is Thunderstruck","type":"explicit"},{"id":"explicit.stat_389725673","text":"Area has patches of Chilled Ground","type":"explicit"},{"id":"explicit.stat_3509724289","text":"1 Added Passive Skill is Pure Aptitude","type":"explicit"},{"id":"explicit.stat_3362879252","text":"Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions have #% increased Movement Speed","type":"explicit"},{"id":"explicit.stat_2758554648","text":"Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability","type":"explicit"},{"id":"explicit.stat_1077131949","text":"Damage Penetrates #% Lightning Resistance while affected by Wrath","type":"explicit"},{"id":"explicit.stat_2137878565","text":"#% increased Damage with Hits against Rare monsters","type":"explicit"},{"id":"explicit.stat_1016185292","text":"#% faster start of Energy Shield Recharge while affected by Discipline","type":"explicit"},{"id":"explicit.stat_3003321700","text":"Flasks do not apply to you","type":"explicit"},{"id":"explicit.stat_380220671","text":"#% of Damage taken gained as Mana over 4 seconds when Hit while affected by Clarity","type":"explicit"},{"id":"explicit.stat_2118664144","text":"1 Added Passive Skill is Mage Hunter","type":"explicit"},{"id":"explicit.stat_1982144275","text":"# Maximum Life per Level","type":"explicit"},{"id":"explicit.stat_1710207583","text":"#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements","type":"explicit"},{"id":"explicit.stat_3692646597","text":"#% Chance to Block Attack Damage while affected by Determination","type":"explicit"},{"id":"explicit.stat_328131617","text":"Gain a Spirit Charge every second","type":"explicit"},{"id":"explicit.stat_715786975","text":"1 Added Passive Skill is Sap Psyche","type":"explicit"},{"id":"explicit.stat_969576725","text":"#% chance to Evade Attack Hits while affected by Grace","type":"explicit"},{"id":"explicit.stat_3223142064","text":"Unaffected by Elemental Weakness while affected by Purity of Elements","type":"explicit"},{"id":"explicit.stat_254131992","text":"#% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning","type":"explicit"},{"id":"explicit.stat_3812562802","text":"#% of Damage dealt by your Totems is Leeched to you as Life","type":"explicit"},{"id":"explicit.stat_2457540491","text":"#% reduced Reflected Physical Damage taken while affected by Determination","type":"explicit"},{"id":"explicit.stat_2701327257","text":"#% reduced Mana Cost of Totem Skills that cast an Aura","type":"explicit"},{"id":"explicit.stat_1496370423","text":"You and your Totems Regenerate #% of Life per second for each Summoned Totem","type":"explicit"},{"id":"explicit.stat_2026112251","text":"1 Added Passive Skill is Cult-Leader","type":"explicit"},{"id":"explicit.stat_770408103","text":"1 Added Passive Skill is Overwhelming Malice","type":"explicit"},{"id":"explicit.stat_2948375275","text":"#% increased Critical Strike Chance per Grand Spectrum","type":"explicit"},{"id":"explicit.stat_207635700","text":"Debuffs on you expire #% faster while affected by Haste","type":"explicit"},{"id":"explicit.stat_2563691316","text":"# Maximum Mana per Level","type":"explicit"},{"id":"explicit.stat_2462976337","text":"Socketed Melee Gems have #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_1173558568","text":"#% of Attack Damage Leeched as Life during Flask effect","type":"explicit"},{"id":"explicit.stat_2265307453","text":"Grants Level # Wrath Skill","type":"explicit"},{"id":"explicit.stat_2017682521","text":"+#% Monster pack size","type":"explicit"},{"id":"explicit.stat_3914021960","text":"Nearby Enemies have #% to Fire Resistance","type":"explicit"},{"id":"explicit.stat_3127641775","text":"Flasks apply to your Raised Zombies and Spectres","type":"explicit"},{"id":"explicit.stat_2312747856","text":"#% of Fire Damage Leeched as Life while affected by Anger","type":"explicit"},{"id":"explicit.stat_3207781478","text":"Unaffected by Vulnerability while affected by Determination","type":"explicit"},{"id":"explicit.stat_426715778","text":"1 Added Passive Skill is Lasting Impression","type":"explicit"},{"id":"explicit.stat_3692167527","text":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Chaos Skills","type":"explicit"},{"id":"explicit.stat_3835899275","text":"Socketed Gems deal #% more Elemental Damage","type":"explicit"},{"id":"explicit.stat_1953432004","text":"Unaffected by Poison","type":"explicit"},{"id":"explicit.stat_2567659895","text":"Unaffected by Shocked Ground while affected by Purity of Lightning","type":"explicit"},{"id":"explicit.stat_1444556985","text":"#% of Damage taken gained as Life over 4 seconds when Hit","type":"explicit"},{"id":"explicit.stat_1621496909","text":"1 Added Passive Skill is Pure Guile","type":"explicit"},{"id":"explicit.stat_2372915005","text":"1 Added Passive Skill is Pure Might","type":"explicit"},{"id":"explicit.stat_2179619644","text":"#% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage","type":"explicit"},{"id":"explicit.stat_4012281889","text":"Unaffected by Frostbite while affected by Purity of Ice","type":"explicit"},{"id":"explicit.stat_3262895685","text":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed while affected by a Herald","type":"explicit"},{"id":"explicit.stat_214835567","text":"#% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry","type":"explicit"},{"id":"explicit.stat_698336758","text":"#% increased Attack Damage for each Map Item Modifier affecting the Area","type":"explicit"},{"id":"explicit.stat_3665534869","text":"Area has patches of Burning Ground","type":"explicit"},{"id":"explicit.stat_991194404","text":"Regenerate #% of Energy Shield per Second while affected by Discipline","type":"explicit"},{"id":"explicit.stat_2126027382","text":"Herald of Purity has #% increased Buff Effect","type":"explicit"},{"id":"explicit.stat_2444534954","text":"#% increased Cast Speed while affected by Zealotry","type":"explicit"},{"id":"explicit.stat_510654792","text":"1 Added Passive Skill is Natural Vigour","type":"explicit"},{"id":"explicit.stat_1242155304","text":"Every 5 seconds, Regenerate #% of Life over one second","type":"explicit"},{"id":"explicit.stat_3511815065","text":"Grants Level # Clarity Skill","type":"explicit"},{"id":"explicit.stat_362838683","text":"#% increased Life Recovery from Flasks while affected by Vitality","type":"explicit"},{"id":"explicit.stat_2771217016","text":"1 Added Passive Skill is Master of Fear","type":"explicit"},{"id":"explicit.stat_1849749435","text":"Nearby Enemies have #% to Lightning Resistance","type":"explicit"},{"id":"explicit.stat_3337107517","text":"#% increased Fire Damage while affected by Anger","type":"explicit"},{"id":"explicit.stat_4265392510","text":"Grants Level # Determination Skill","type":"explicit"},{"id":"explicit.stat_818329660","text":"Trigger Level # Storm Cascade when you Attack","type":"explicit"},{"id":"explicit.stat_1220800126","text":"Skills which Throw Traps throw up to 1 additional Trap","type":"explicit"},{"id":"explicit.stat_206243615","text":"Cannot gain Energy Shield","type":"explicit"},{"id":"explicit.stat_2106756686","text":"#% of Physical Damage Converted to Lightning Damage while affected by Wrath","type":"explicit"},{"id":"explicit.stat_3069588220","text":"Nearby Enemies are Crushed while you have at least # Rage","type":"explicit"},{"id":"explicit.stat_281949611","text":"Immune to Shock while affected by Purity of Lightning","type":"explicit"},{"id":"explicit.stat_418293304","text":"#% increased Lightning Damage while affected by Wrath","type":"explicit"},{"id":"explicit.stat_3103189267","text":"#% increased Elemental Damage per 10 Devotion","type":"explicit"},{"id":"explicit.stat_3332055899","text":"#% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste","type":"explicit"},{"id":"explicit.stat_371612541","text":"Immune to Ignite while affected by Purity of Fire","type":"explicit"},{"id":"explicit.stat_2210267337","text":"Area contains additional waves of Bone Rhoas","type":"explicit"},{"id":"explicit.stat_65331133","text":"#% reduced Reflected Elemental Damage taken while affected by Purity of Elements","type":"explicit"},{"id":"explicit.stat_612223930","text":"Cannot inflict Freeze or Chill","type":"explicit"},{"id":"explicit.stat_2721815210","text":"Grants Level # Precision Skill","type":"explicit"},{"id":"explicit.stat_3049436415","text":"Gain Onslaught for # seconds when you Warcry","type":"explicit"},{"id":"explicit.stat_4075957192","text":"Poisonous Hit","type":"explicit"},{"id":"explicit.stat_2383304564","text":"#% of Damage taken from Mana before Life while affected by Clarity","type":"explicit"},{"id":"explicit.stat_2365917222","text":"Unaffected by Enfeeble while affected by Grace","type":"explicit"},{"id":"explicit.stat_1798459983","text":"#% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire","type":"explicit"},{"id":"explicit.stat_3699494172","text":"Socketed Gems are Supported by Level # Unbound Ailments","type":"explicit"},{"id":"explicit.stat_3769211656","text":"#% chance to gain a Frenzy Charge when you Block","type":"explicit"},{"id":"explicit.stat_2238174408","text":"#% chance to inflict Brittle","type":"explicit"},{"id":"explicit.stat_708913352","text":"Every 16 seconds you gain Elemental Overload for 8 seconds","type":"explicit"},{"id":"explicit.stat_1244003614","text":"Adds # to # Physical Damage against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_3485231932","text":"Adds # to # Cold Damage while you have Avian's Might","type":"explicit"},{"id":"explicit.stat_1169422227","text":"Socketed Gems are Supported by Level # Elemental Focus","type":"explicit"},{"id":"explicit.stat_855634301","text":"Adds # to # Lightning Damage while you have Avian's Might","type":"explicit"},{"id":"explicit.stat_2524029637","text":"Recover #% of Mana when you Shock an Enemy","type":"explicit"},{"id":"explicit.stat_2355615476","text":"#% to Critical Strike Multiplier against Enemies that are on Full Life","type":"explicit"},{"id":"explicit.stat_3308185931","text":"Unaffected by Burning Ground while affected by Purity of Fire","type":"explicit"},{"id":"explicit.stat_1902595112","text":"Nearby Enemies have #% to Chaos Resistance","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_akoya","text":"Commanded leadership over # warriors under Akoya","type":"explicit"},{"id":"explicit.stat_37078857","text":"1 Added Passive Skill is Fasting","type":"explicit"},{"id":"explicit.stat_15523600","text":"Enemies Blinded by you while you are Blinded have Malediction","type":"explicit"},{"id":"explicit.stat_3758712376","text":"1 Added Passive Skill is Blizzard Caller","type":"explicit"},{"id":"explicit.stat_3627458291","text":"#% to Critical Strike Multiplier while affected by Anger","type":"explicit"},{"id":"explicit.stat_1873457881","text":"#% additional Physical Damage Reduction while affected by Determination","type":"explicit"},{"id":"explicit.stat_3039589351","text":"#% Chance to Block Attack Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2886441936","text":"1 Added Passive Skill is Magnifier","type":"explicit"},{"id":"explicit.stat_613752285","text":"Sacrifice #% of Life to gain that much Energy Shield when you Cast a Spell","type":"explicit"},{"id":"explicit.stat_3742945352","text":"Hatred has #% increased Aura Effect","type":"explicit"},{"id":"explicit.stat_4186213466","text":"1 Added Passive Skill is Unholy Grace","type":"explicit"},{"id":"explicit.stat_2913581789","text":"1 Added Passive Skill is Precise Focus","type":"explicit"},{"id":"explicit.stat_3281591194","text":"Ignites you inflict spread to other Enemies within a Radius of #","type":"explicit"},{"id":"explicit.stat_2319127046","text":"+#% Monster Fire Resistance","type":"explicit"},{"id":"explicit.stat_683273571","text":"#% increased Mana Cost of Skills during Flask Effect","type":"explicit"},{"id":"explicit.stat_1251945210","text":"# seconds to Avian's Might Duration","type":"explicit"},{"id":"explicit.stat_990377349","text":"Cannot inflict Shock","type":"explicit"},{"id":"explicit.stat_2241902512","text":"#% increased Fire Damage per 20 Strength","type":"explicit"},{"id":"explicit.stat_2054257693","text":"#% chance to inflict Bleeding on Critical Strike with Attacks","type":"explicit"},{"id":"explicit.stat_2763710567","text":"Gain Unholy Might for 2 seconds on Critical Strike","type":"explicit"},{"id":"explicit.stat_615884286","text":"Reflect Shocks applied to you to all Nearby Enemies","type":"explicit"},{"id":"explicit.stat_846491278","text":"1 Added Passive Skill is Darting Movements","type":"explicit"},{"id":"explicit.stat_1810368194","text":"#% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion","type":"explicit"},{"id":"explicit.stat_556659145","text":"#% increased Mana Recovery Rate while affected by Clarity","type":"explicit"},{"id":"explicit.stat_3489570622","text":"Regenerate # Life per Second while affected by Vitality","type":"explicit"},{"id":"explicit.stat_996483959","text":"#% chance to Maim Enemies on Critical Strike with Attacks","type":"explicit"},{"id":"explicit.stat_3789765926","text":"#% Chance to Block Attack Damage if you have Blocked Attack Damage Recently","type":"explicit"},{"id":"explicit.stat_4198497576","text":"Cannot inflict Ignite","type":"explicit"},{"id":"explicit.stat_968069586","text":"1 Added Passive Skill is Chip Away","type":"explicit"},{"id":"explicit.stat_3799299052","text":"Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana","type":"explicit"},{"id":"explicit.stat_1626712767","text":"#% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_3250579936","text":"Triggers Level # Abberath's Fury when Equipped","type":"explicit"},{"id":"explicit.stat_367638058","text":"1 Added Passive Skill is Unwavering Focus","type":"explicit"},{"id":"explicit.stat_4234677275","text":"Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items","type":"explicit"},{"id":"explicit.stat_2632954025","text":"You have Phasing if Energy Shield Recharge has started Recently","type":"explicit"},{"id":"explicit.stat_3141831683","text":"#% chance to Trigger Level 20 Glimpse of Eternity when Hit","type":"explicit"},{"id":"explicit.stat_1353571444","text":"1 Added Passive Skill is Fettle","type":"explicit"},{"id":"explicit.stat_2323242761","text":"#% chance to gain a Frenzy Charge on Hit","type":"explicit"},{"id":"explicit.stat_679632038","text":"#% chance to Dodge Attack Hits while Phasing","type":"explicit"},{"id":"explicit.stat_1430380429","text":"+#% Monster Cold Resistance","type":"explicit"},{"id":"explicit.stat_2671550669","text":"Enemies you inflict Bleeding on grant #% increased Flask Charges","type":"explicit"},{"id":"explicit.stat_2440172920","text":"Take # Physical Damage per Second per Siphoning Charge if you've used a Skill Recently","type":"explicit"},{"id":"explicit.stat_4222635921","text":"1 Added Passive Skill is Savage Response","type":"explicit"},{"id":"explicit.stat_1196902248","text":"#% increased Damage with Hits against Frozen Enemies","type":"explicit"},{"id":"explicit.stat_2251304016","text":"1 Added Passive Skill is Sublime Form","type":"explicit"},{"id":"explicit.stat_2629366488","text":"Socketed Red Gems get #% Physical Damage as Extra Fire Damage","type":"explicit"},{"id":"explicit.stat_4272503233","text":"1 Added Passive Skill is Paralysis","type":"explicit"},{"id":"explicit.stat_1222888897","text":"Damage Penetrates #% Cold Resistance while affected by Hatred","type":"explicit"},{"id":"explicit.stat_774369953","text":"1 Added Passive Skill is Antivenom","type":"explicit"},{"id":"explicit.stat_3580556037","text":"Monsters gain # Frenzy Charge every 20 seconds","type":"explicit"},{"id":"explicit.stat_3151397056","text":"#% increased Onslaught Effect","type":"explicit"},{"id":"explicit.stat_4089969970","text":"If you Consumed a corpse Recently, you and nearby Allies Regenerate #% of Life per second","type":"explicit"},{"id":"explicit.stat_3742808908","text":"# to Armour while affected by Determination","type":"explicit"},{"id":"explicit.stat_33348259","text":"Gain #% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped","type":"explicit"},{"id":"explicit.stat_4118945608","text":"Gain # Power Charges when you Warcry","type":"explicit"},{"id":"explicit.stat_1181501418","text":"# to Maximum Rage","type":"explicit"},{"id":"explicit.stat_622203853","text":"Conductivity has #% reduced Mana Reservation if Cast as an Aura","type":"explicit"},{"id":"explicit.stat_2163419452","text":"Effects of Consecrated Ground you create while affected by Zealotry Linger for # seconds","type":"explicit"},{"id":"explicit.stat_1777139212","text":"1 Added Passive Skill is Corrosive Elements","type":"explicit"},{"id":"explicit.stat_2970307386","text":"Reflects # to # Physical Damage to Melee Attackers","type":"explicit"},{"id":"explicit.stat_2057136736","text":"Enemies Cursed by you take #% increased Damage if 75% of Curse Duration expired","type":"explicit"},{"id":"explicit.stat_289714529","text":"1 Added Passive Skill is Elegant Form","type":"explicit"},{"id":"explicit.stat_2622251413","text":"#% chance to double Stun Duration","type":"explicit"},{"id":"explicit.stat_999511066","text":"#% increased Minion Duration","type":"explicit"},{"id":"explicit.stat_103928310","text":"#% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs","type":"explicit"},{"id":"explicit.stat_122450405","text":"#% increased Attack Speed while you have Fortify","type":"explicit"},{"id":"explicit.stat_1745952865","text":"#% reduced Elemental Ailment Duration on you","type":"explicit"},{"id":"explicit.stat_3853465279","text":"Dread Banner has #% increased Fortify duration","type":"explicit"},{"id":"explicit.stat_1346311588","text":"You have Phasing while affected by Haste","type":"explicit"},{"id":"explicit.stat_2181791238","text":"Wrath has #% increased Aura Effect","type":"explicit"},{"id":"explicit.stat_2442112158","text":"While in Her Embrace, take #% of your total Maximum Life and Energy Shield as Fire Damage per second per Level","type":"explicit"},{"id":"explicit.stat_608963131","text":"Gain Her Embrace for # seconds when you Ignite an Enemy","type":"explicit"},{"id":"explicit.stat_3375743050","text":"#% increased Attack Speed while affected by Precision","type":"explicit"},{"id":"explicit.stat_2803981661","text":"#% increased Defences from Equipped Shield per 10 Devotion","type":"explicit"},{"id":"explicit.stat_843854434","text":"Critical Strikes have #% chance to Blind Enemies while you have Cat's Stealth","type":"explicit"},{"id":"explicit.stat_42242677","text":"#% chance to Avoid Fire Damage from Hits","type":"explicit"},{"id":"explicit.stat_2084371547","text":"1 Added Passive Skill is Expert Sabotage","type":"explicit"},{"id":"explicit.stat_2280488002","text":"Stun Threshold is based on #% of your Mana instead of Life","type":"explicit"},{"id":"explicit.stat_3737604164","text":"1 Added Passive Skill is Eldritch Inspiration","type":"explicit"},{"id":"explicit.stat_3576153145","text":"Burning Hoofprints","type":"explicit"},{"id":"explicit.stat_948687156","text":"Regenerate # Energy Shield per Second per Poison on you, up to 250 per second","type":"explicit"},{"id":"explicit.stat_2589042711","text":"Lose # Mana per Second","type":"explicit"},{"id":"explicit.stat_3565956680","text":"#% increased Damage with Hits and Ailments against Blinded Enemies","type":"explicit"},{"id":"explicit.stat_1517357911","text":"Grants Level # Summon Doedre's Effigy Skill\nSocketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned\nHexes from Socketed Skills ignore Curse Limit","type":"explicit"},{"id":"explicit.stat_664849247","text":"#% of Physical Damage Converted to Cold Damage while affected by Hatred","type":"explicit"},{"id":"explicit.stat_1910205563","text":"#% to all Elemental Resistances per 10 Devotion","type":"explicit"},{"id":"explicit.stat_3399924348","text":"Warcries grant Arcane Surge to you and Allies, with #% increased effect per 5 power, up to 50%","type":"explicit"},{"id":"explicit.stat_207573834","text":"Gain Unholy Might during Flask Effect","type":"explicit"},{"id":"explicit.stat_2066820199","text":"1 Added Passive Skill is Wasting Affliction","type":"explicit"},{"id":"explicit.stat_768537671","text":"#% of Life Leech applies to Enemies as Chaos Damage","type":"explicit"},{"id":"explicit.stat_1063920218","text":"Summoned Raging Spirits take #% of their Maximum Life per second as Chaos Damage","type":"explicit"},{"id":"explicit.stat_2831391506","text":"Gain #% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity","type":"explicit"},{"id":"explicit.stat_4272260340","text":"Frostbite has #% reduced Mana Reservation if Cast as an Aura","type":"explicit"},{"id":"explicit.stat_3410752193","text":"1 Added Passive Skill is Surefooted Striker","type":"explicit"},{"id":"explicit.stat_493812998","text":"# to Level of all Intelligence Skill Gems","type":"explicit"},{"id":"explicit.stat_2542650946","text":"#% chance to gain an Endurance Charge on Critical Strike","type":"explicit"},{"id":"explicit.stat_3312593243","text":"Socketed Gems are Supported by Level # Cast On Melee Kill","type":"explicit"},{"id":"explicit.stat_3736628755","text":"Precision has 50% less Mana Reservation","type":"explicit"},{"id":"explicit.stat_3808469650","text":"#% increased Minion Attack and Cast Speed per 10 Devotion","type":"explicit"},{"id":"explicit.stat_3225265684","text":"With # Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield, and 50% of Physical Damage bypasses Energy Shield","type":"explicit"},{"id":"explicit.stat_4265906483","text":"#% chance to inflict Lightning Exposure on Hit","type":"explicit"},{"id":"explicit.stat_4175197580","text":"Malevolence has #% increased Aura Effect","type":"explicit"},{"id":"explicit.stat_3978164317","text":"All Attacks with this Weapon are Critical Strikes","type":"explicit"},{"id":"explicit.stat_3051562738","text":"1 Added Passive Skill is Surprise Sabotage","type":"explicit"},{"id":"explicit.stat_394918362","text":"1 Added Passive Skill is Expansive Might","type":"explicit"},{"id":"explicit.stat_3292262540","text":"Call to Arms","type":"explicit"},{"id":"explicit.stat_3638731729","text":"1 Added Passive Skill is Sadist","type":"explicit"},{"id":"explicit.stat_2644533453","text":"1 Added Passive Skill is Self-Fulfilling Prophecy","type":"explicit"},{"id":"explicit.stat_2138819920","text":"Added Small Passive Skills also grant: #% increased Area of Effect of Hex Skills","type":"explicit"},{"id":"explicit.stat_44716414","text":"Blind does not affect your Chance to Hit","type":"explicit"},{"id":"explicit.stat_982177653","text":"Adds # to # Chaos Damage for each Spider's Web on the Enemy","type":"explicit"},{"id":"explicit.stat_3227159962","text":"Regenerate # Life per second if you have at least 1500 Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_4007740198","text":"Your Shocks can increase Damage taken by up to a maximum of #%","type":"explicit"},{"id":"explicit.stat_1715495976","text":"#% less Minimum Physical Attack Damage","type":"explicit"},{"id":"explicit.stat_2968301430","text":"Gain # Life when you Stun an Enemy","type":"explicit"},{"id":"explicit.stat_1080363357","text":"1 Added Passive Skill is Haunting Shout","type":"explicit"},{"id":"explicit.stat_2753985507","text":"#% to Critical Strike Chance while affected by Hatred","type":"explicit"},{"id":"explicit.stat_791125124","text":"1 Added Passive Skill is Bodyguards","type":"explicit"},{"id":"explicit.stat_1429385513","text":"# Armour per Summoned Totem","type":"explicit"},{"id":"explicit.stat_1023968711","text":"Hits with this Weapon gain #% of Physical Damage as Extra Cold or Lightning Damage","type":"explicit"},{"id":"explicit.stat_201731102","text":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Lightning Skills","type":"explicit"},{"id":"explicit.stat_2643562209","text":"Adds # to # Cold Damage while affected by Hatred","type":"explicit"},{"id":"explicit.stat_398940995","text":"Non-Chilled Enemies you inflict Bleeding on are Chilled","type":"explicit"},{"id":"explicit.stat_3772848194","text":"Your Hits Intimidate Enemies for 4 seconds while you are using Pride","type":"explicit"},{"id":"explicit.stat_4235333770","text":"#% increased Duration of Curses on you per 10 Devotion","type":"explicit"},{"id":"explicit.stat_1996775727","text":"Recover #% of Energy Shield when you lose a Spirit Charge","type":"explicit"},{"id":"explicit.stat_1704843611","text":"Regenerate # Life per second if you have at least 1000 Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_1802660259","text":"You are Chilled when you are Poisoned","type":"explicit"},{"id":"explicit.stat_3350228283","text":"Poisoned Enemies you Kill with Hits Shatter","type":"explicit"},{"id":"explicit.stat_1919069577","text":"Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry","type":"explicit"},{"id":"explicit.stat_3212859169","text":"1 Added Passive Skill is Arcing Shot","type":"explicit"},{"id":"explicit.stat_67132951","text":"You are Chilled while you are Bleeding","type":"explicit"},{"id":"explicit.stat_1592278124","text":"Anger has #% increased Aura Effect","type":"explicit"},{"id":"explicit.stat_1812251528","text":"Arrows that Pierce have 50% chance to inflict Bleeding","type":"explicit"},{"id":"explicit.stat_1997151732","text":"Arrows Pierce all Targets after Chaining","type":"explicit"},{"id":"explicit.stat_1476913894","text":"1 Added Passive Skill is Shifting Shadow","type":"explicit"},{"id":"explicit.stat_1101250813","text":"1 Added Passive Skill is Set and Forget","type":"explicit"},{"id":"explicit.stat_926444104","text":"Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Power Charge on Kill","type":"explicit"},{"id":"explicit.stat_3765507527","text":"# Energy Shield gained for each Enemy Hit while affected by Discipline","type":"explicit"},{"id":"explicit.stat_970844066","text":"Channelling Skills deal #% increased Damage per 10 Devotion","type":"explicit"},{"id":"explicit.stat_1011373762","text":"Spells fire an additional Projectile","type":"explicit"},{"id":"explicit.stat_387596329","text":"# seconds to Cat's Stealth Duration","type":"explicit"},{"id":"explicit.stat_1345136012","text":"#% chance to Dodge Spell Hits while affected by Haste","type":"explicit"},{"id":"explicit.stat_3750917270","text":"#% of Attack Damage Leeched as Life against Taunted Enemies","type":"explicit"},{"id":"explicit.stat_3111519953","text":"Damage Penetrates #% Fire Resistance while affected by Anger ","type":"explicit"},{"id":"explicit.stat_311641062","text":"#% chance for Flasks you use to not consume Charges","type":"explicit"},{"id":"explicit.stat_2337273077","text":"1 Added Passive Skill is Life from Death","type":"explicit"},{"id":"explicit.stat_1834455446","text":"You have Phasing while you have Cat's Stealth","type":"explicit"},{"id":"explicit.stat_2341811700","text":"Damage Penetrates #% of Fire Resistance if you have Blocked Recently","type":"explicit"},{"id":"explicit.stat_228455793","text":"1 Added Passive Skill is Doryani's Lesson","type":"explicit"},{"id":"explicit.stat_3850409117","text":"Aspect of the Cat Reserves no Mana","type":"explicit"},{"id":"explicit.stat_679080252","text":"Added Small Passive Skills also grant: #% increased Projectile Speed","type":"explicit"},{"id":"explicit.stat_1779027621","text":"#% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice","type":"explicit"},{"id":"explicit.stat_920385757","text":"# to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped","type":"explicit"},{"id":"explicit.stat_2699118751","text":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Elemental Skills","type":"explicit"},{"id":"explicit.stat_2894704558","text":"# to Maximum number of Crab Barriers","type":"explicit"},{"id":"explicit.stat_3585232432","text":"1 Added Passive Skill is Master the Fundamentals","type":"explicit"},{"id":"explicit.stat_881917501","text":"Bleeding Enemies you Kill with Hits Shatter","type":"explicit"},{"id":"explicit.stat_4122367945","text":"Grants Level # Vengeance Skill","type":"explicit"},{"id":"explicit.stat_4222265138","text":"1 Added Passive Skill is Assert Dominance","type":"explicit"},{"id":"explicit.stat_1724614884","text":"#% increased Area Damage per 10 Devotion","type":"explicit"},{"id":"explicit.stat_2710898947","text":"#% more Monster Life","type":"explicit"},{"id":"explicit.stat_2339022735","text":"Your Curses have #% increased Effect if 50% of Curse Duration expired","type":"explicit"},{"id":"explicit.stat_2068574831","text":"1 Added Passive Skill is Brutal Infamy","type":"explicit"},{"id":"explicit.stat_2308278768","text":"#% increased Cooldown Recovery Rate of Travel Skills","type":"explicit"},{"id":"explicit.stat_3643449791","text":"#% increased Recovery rate of Life and Energy Shield while affected by Malevolence","type":"explicit"},{"id":"explicit.stat_1653848515","text":"Cannot be Blinded while affected by Precision","type":"explicit"},{"id":"explicit.stat_2513293614","text":"Socketed Gems are Supported by Level # Vicious Projectiles","type":"explicit"},{"id":"explicit.stat_313419608","text":"Enemies Cursed by you are Hindered with #% reduced Movement\nSpeed if 25% of Curse Duration expired","type":"explicit"},{"id":"explicit.stat_2894476716","text":"Gain # Endurance Charge every second if you've been Hit Recently","type":"explicit"},{"id":"explicit.stat_4120821275","text":"Malevolence has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_1734275536","text":"1 Added Passive Skill is Peace Amidst Chaos","type":"explicit"},{"id":"explicit.stat_456502758","text":"1 Added Passive Skill is Careful Handling","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_caspiro","text":"Commissioned # coins to commemorate Caspiro","type":"explicit"},{"id":"explicit.stat_2622946553","text":"1 Added Passive Skill is Antifreeze","type":"explicit"},{"id":"explicit.stat_1433144735","text":"Increases and Reductions to Minion Damage also affect you at 150% of their value","type":"explicit"},{"id":"explicit.stat_2485187927","text":"Create a Blighted Spore when your Skills or Minions Kill a Rare Monster","type":"explicit"},{"id":"explicit.stat_3122505794","text":"1 Added Passive Skill is Combat Rhythm","type":"explicit"},{"id":"explicit.stat_212648555","text":"1 Added Passive Skill is Insulated","type":"explicit"},{"id":"explicit.stat_3492797685","text":"You have Crimson Dance while you have Cat's Stealth","type":"explicit"},{"id":"explicit.stat_1809329372","text":"Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead","type":"explicit"},{"id":"explicit.stat_1138813382","text":"#% to Chaos Resistance while affected by Purity of Elements","type":"explicit"},{"id":"explicit.stat_653107703","text":"#% Chance to Block Attack Damage while you have at least 10 Crab Barriers","type":"explicit"},{"id":"explicit.stat_3168635562","text":"Warcries have infinite Power","type":"explicit"},{"id":"explicit.stat_2562564343","text":"Despair has #% reduced Mana Reservation if Cast as an Aura","type":"explicit"},{"id":"explicit.stat_1237693206","text":"#% less Poison Duration","type":"explicit"},{"id":"explicit.stat_1354504703","text":"#% Chance to Block Attack Damage while you have at least 5 Crab Barriers","type":"explicit"},{"id":"explicit.stat_3593797653","text":"Socketed Gems are Supported by Level # Ignite Proliferation","type":"explicit"},{"id":"explicit.stat_291644318","text":"Spell Skills deal no Damage","type":"explicit"},{"id":"explicit.stat_3362665206","text":"#% increased Mine Arming Speed","type":"explicit"},{"id":"explicit.stat_3904970959","text":"1 Added Passive Skill is Insatiable Killer","type":"explicit"},{"id":"explicit.stat_1567542124","text":"Unaffected by Conductivity while affected by Purity of Lightning","type":"explicit"},{"id":"explicit.stat_1625939562","text":"1 Added Passive Skill is Advance Guard","type":"explicit"},{"id":"explicit.stat_3573591118","text":"Your Cold Damage can Ignite","type":"explicit"},{"id":"explicit.stat_2631806437","text":"1 Added Passive Skill is Tempered Arrowheads","type":"explicit"},{"id":"explicit.stat_693460617","text":"Socketed Golem Skills have Minions Regenerate #% of Life per second","type":"explicit"},{"id":"explicit.stat_1527893390","text":"Trigger Level # Lightning Warp on Hit with this Weapon","type":"explicit"},{"id":"explicit.stat_1103902353","text":"Regenerate # Life per second if you have at least 500 Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_1981749265","text":"Your Spells are disabled","type":"explicit"},{"id":"explicit.stat_2003753577","text":"Anger has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_1829869055","text":"#% chance that if you would gain a Crab Barrier, you instead gain up to\nyour maximum number of Crab Barriers","type":"explicit"},{"id":"explicit.stat_1616734644","text":"1 Added Passive Skill is Wicked Pall","type":"explicit"},{"id":"explicit.stat_2806391472","text":"Unaffected by Temporal Chains while affected by Haste","type":"explicit"},{"id":"explicit.stat_2867050084","text":"Grants Level # Grace Skill","type":"explicit"},{"id":"explicit.stat_713280739","text":"Added Small Passive Skills also grant: #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_183591019","text":"1 Added Passive Skill is Disease Vector","type":"explicit"},{"id":"explicit.stat_250961191","text":"Pride has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_3091072796","text":"Your Hits cannot Penetrate or ignore Elemental Resistances","type":"explicit"},{"id":"explicit.stat_1173690938","text":"Unaffected by Flammability while affected by Purity of Fire","type":"explicit"},{"id":"explicit.stat_2647344903","text":"Unaffected by Chilled Ground while affected by Purity of Ice","type":"explicit"},{"id":"explicit.stat_877233648","text":"Cannot be Stunned if you have at least 10 Crab Barriers","type":"explicit"},{"id":"explicit.stat_2554328719","text":"Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight","type":"explicit"},{"id":"explicit.stat_3549734978","text":"Nearby Enemies have Lightning Resistance equal to yours","type":"explicit"},{"id":"explicit.stat_3520223758","text":"Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed","type":"explicit"},{"id":"explicit.stat_146924886","text":"# to Level of all Dexterity Skill Gems","type":"explicit"},{"id":"explicit.stat_1028754276","text":"1 Added Passive Skill is Numbing Elixir","type":"explicit"},{"id":"explicit.stat_478612089","text":"Zealotry has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_1575519214","text":"Gain Accuracy Rating equal to your Strength","type":"explicit"},{"id":"explicit.stat_3507915723","text":"Enemies take #% increased Elemental Damage from your Hits for\neach Withered you have inflicted on them","type":"explicit"},{"id":"explicit.stat_3523867985","text":"#% increased Armour, Evasion and Energy Shield (Local)","type":"explicit"},{"id":"explicit.stat_1019038967","text":"#% increased Damage per Crab Barrier","type":"explicit"},{"id":"explicit.stat_2437476305","text":"Left ring slot: Projectiles from Spells Fork","type":"explicit"},{"id":"explicit.stat_1853636813","text":"Non-Channelling Skills have # to Total Mana Cost while affected by Clarity","type":"explicit"},{"id":"explicit.stat_2443492284","text":"Ignites you inflict deal Damage #% faster","type":"explicit"},{"id":"explicit.stat_2028847114","text":"Curse Enemies with Elemental Weakness on Hit, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_775689239","text":"1 Added Passive Skill is Blessed","type":"explicit"},{"id":"explicit.stat_2720072724","text":"Immune to Freeze while affected by Purity of Ice","type":"explicit"},{"id":"explicit.stat_509677462","text":"Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Frenzy Charge on Kill","type":"explicit"},{"id":"explicit.stat_1535051459","text":"#% to Critical Strike Chance against Enemies on Consecrated Ground during Effect","type":"explicit"},{"id":"explicit.stat_3999959974","text":"Lightning Resistance does not affect Lightning Damage taken","type":"explicit"},{"id":"explicit.stat_2075742842","text":"Deal no Non-Lightning Damage","type":"explicit"},{"id":"explicit.stat_3846088475","text":"Socketed Gems deal #% more Damage over Time","type":"explicit"},{"id":"explicit.stat_2970902024","text":"Enemies you hit are destroyed on Kill","type":"explicit"},{"id":"explicit.stat_3844016207","text":"#% chance to Trigger Level 1 Raise Spiders on Kill","type":"explicit"},{"id":"explicit.stat_3992636701","text":"#% to Critical Strike Chance while affected by Aspect of the Cat","type":"explicit"},{"id":"explicit.stat_1122051203","text":"1 Added Passive Skill is Storm's Hand","type":"explicit"},{"id":"explicit.stat_3945685369","text":"Your Movement Speed is #% of its base value","type":"explicit"},{"id":"explicit.stat_693808153","text":"1 Added Passive Skill is Blast-Freeze","type":"explicit"},{"id":"explicit.stat_1546046884","text":"Gain a Flask Charge when you deal a Critical Strike","type":"explicit"},{"id":"explicit.stat_622362787","text":"1 Added Passive Skill is Primordial Bond","type":"explicit"},{"id":"explicit.stat_958088871","text":"#% of Damage Leeched as Life on Critical Strike","type":"explicit"},{"id":"explicit.stat_3747189159","text":"#% increased Damage with Hits and Ailments against Chilled Enemies","type":"explicit"},{"id":"explicit.stat_549215295","text":"Gain # Energy Shield for each Enemy you Hit which is affected by a Spider's Web","type":"explicit"},{"id":"explicit.stat_1313498929","text":"#% Chance to Block Spell Damage while affected by Discipline","type":"explicit"},{"id":"explicit.stat_2213584313","text":"#% chance to Curse Enemies with Vulnerability on Hit, with 40% increased Effect","type":"explicit"},{"id":"explicit.stat_2446580062","text":"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth","type":"explicit"},{"id":"explicit.stat_3081076859","text":"#% increased Global Critical Strike Chance per Level","type":"explicit"},{"id":"explicit.stat_3600749521","text":"Wrath has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_1866211373","text":"Consecrated Ground created during Effect applies #% increased Damage taken to Enemies","type":"explicit"},{"id":"explicit.stat_1379205566","text":"Adds Veteran's Awareness","type":"explicit"},{"id":"explicit.stat_2156210979","text":"Gain an Endurance Charge every 4 seconds while Stationary","type":"explicit"},{"id":"explicit.stat_2634885412","text":"Trigger Level # Bone Nova when you Hit a Bleeding Enemy","type":"explicit"},{"id":"explicit.stat_1926135629","text":"Added Small Passive Skills also grant: #% to Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_2048747572","text":"#% increased Attack Damage while affected by Precision","type":"explicit"},{"id":"explicit.stat_1147690586","text":"# to Level of all Lightning Skill Gems","type":"explicit"},{"id":"explicit.stat_1509532587","text":"Aspect of the Spider can inflict Spider's Web on Enemies an additional time","type":"explicit"},{"id":"explicit.stat_4104891138","text":"Unaffected by Bleeding while affected by Malevolence","type":"explicit"},{"id":"explicit.stat_1376530950","text":"Adds Hollow Palm Technique","type":"explicit"},{"id":"explicit.stat_1135194732","text":"Can have a second Enchantment Modifier","type":"explicit"},{"id":"explicit.stat_2957407601","text":"Offering Skills have #% increased Duration","type":"explicit"},{"id":"explicit.stat_3885409671","text":"#% of Fire Damage Leeched as Energy Shield","type":"explicit"},{"id":"explicit.stat_2194205899","text":"1 Added Passive Skill is Grim Oath","type":"explicit"},{"id":"explicit.stat_3215042347","text":"Purity of Fire has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_1645524575","text":"Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain an Endurance Charge on Kill","type":"explicit"},{"id":"explicit.stat_1869144397","text":"Trigger Level # Void Gaze when you use a Skill","type":"explicit"},{"id":"explicit.stat_783864527","text":"Right ring slot: You cannot Regenerate Mana","type":"explicit"},{"id":"explicit.stat_3984980429","text":"1 Added Passive Skill is Follow-Through","type":"explicit"},{"id":"explicit.stat_3705740723","text":"Immune to Burning Ground, Shocked Ground and Chilled Ground","type":"explicit"},{"id":"explicit.stat_1413864591","text":"#% increased Cold Damage while affected by Hatred","type":"explicit"},{"id":"explicit.stat_512740886","text":"#% more Elemental Damage taken per Raised Zombie","type":"explicit"},{"id":"explicit.stat_3788235244","text":"Area has a #% chance to contain Cadiro Perandus","type":"explicit"},{"id":"explicit.stat_1360925132","text":"Adds Nature's Patience","type":"explicit"},{"id":"explicit.stat_858460086","text":"Socketed Gems are Supported by Level # Meat Shield","type":"explicit"},{"id":"explicit.stat_2636728487","text":"You always Ignite while Burning","type":"explicit"},{"id":"explicit.stat_3777170562","text":"1 Added Passive Skill is Overshock","type":"explicit"},{"id":"explicit.stat_3998316","text":"1 Added Passive Skill is Ancestral Might","type":"explicit"},{"id":"explicit.stat_308127151","text":"#% of Lightning Damage Leeched as Energy Shield","type":"explicit"},{"id":"explicit.stat_273206351","text":"#% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web","type":"explicit"},{"id":"explicit.stat_1661253443","text":"Strike Skills target # additional nearby Enemy","type":"explicit"},{"id":"explicit.stat_1029319062","text":"#% of Fire Damage from Hits taken as Physical Damage","type":"explicit"},{"id":"explicit.stat_4230767876","text":"#% increased Damage with Poison per Power Charge","type":"explicit"},{"id":"explicit.stat_2733285506","text":"Channelling Skills deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_2310019673","text":"Added Small Passive Skills also grant: Minions have #% increased Attack and Cast Speed","type":"explicit"},{"id":"explicit.stat_2294919888","text":"1 Added Passive Skill is Hibernator","type":"explicit"},{"id":"explicit.stat_3806100539","text":"# to Maximum Life per 10 Dexterity","type":"explicit"},{"id":"explicit.stat_1798719926","text":"Adds Kineticism","type":"explicit"},{"id":"explicit.stat_2978494217","text":"1 Added Passive Skill is Martial Momentum","type":"explicit"},{"id":"explicit.stat_1290215329","text":"1 Added Passive Skill is Skeletal Atrophy","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_maxarius","text":"Carved to glorify # new faithful converted by High Templar Maxarius","type":"explicit"},{"id":"explicit.stat_2841027131","text":"Regenerate # Life per second while moving","type":"explicit"},{"id":"explicit.stat_3860869243","text":"Adds Disciple of Kitava","type":"explicit"},{"id":"explicit.stat_3832130495","text":"Aspect of the Spider inflicts Spider's Webs and Hinder every # Seconds instead","type":"explicit"},{"id":"explicit.stat_4025536654","text":"1 Added Passive Skill is Capacitor","type":"explicit"},{"id":"explicit.stat_882876854","text":"1 Added Passive Skill is Vicious Bite","type":"explicit"},{"id":"explicit.stat_3198006994","text":"1 Added Passive Skill is Brand Loyalty","type":"explicit"},{"id":"explicit.stat_2964800094","text":"Socketed Skills deal #% more Spell Damage","type":"explicit"},{"id":"explicit.stat_1790172543","text":"#% increased Damage with Hits and Ailments against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_2992087211","text":"#% chance to Poison per Power Charge","type":"explicit"},{"id":"explicit.stat_2384145996","text":"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed","type":"explicit"},{"id":"explicit.stat_3892608176","text":"Trigger Level # Intimidating Cry when you lose Cat's Stealth","type":"explicit"},{"id":"explicit.stat_2350900742","text":"1 Added Passive Skill is Grand Design","type":"explicit"},{"id":"explicit.stat_691431951","text":"1 Added Passive Skill is Remarkable","type":"explicit"},{"id":"explicit.stat_2269396414","text":"# to Accuracy against Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_599749213","text":"# to Level of all Fire Skill Gems","type":"explicit"},{"id":"explicit.stat_2091518682","text":"Critical Strikes Penetrate #% of Enemy Elemental Resistances while affected by Zealotry","type":"explicit"},{"id":"explicit.stat_1817023621","text":"#% to Critical Strike Multiplier while affected by Precision","type":"explicit"},{"id":"explicit.stat_3835483564","text":"Hatred has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_3319205340","text":"1 Added Passive Skill is Snaring Spirits","type":"explicit"},{"id":"explicit.stat_1264919148","text":"Skills supported by Unleash have # to maximum number of Seals","type":"explicit"},{"id":"explicit.stat_1896269067","text":"Deal no Chaos Damage","type":"explicit"},{"id":"explicit.stat_1285430327","text":"Purity of Lightning has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_2642917409","text":"Added Small Passive Skills also grant: #% increased Area of Effect of Aura Skills","type":"explicit"},{"id":"explicit.stat_3835551335","text":"Cannot be Poisoned","type":"explicit"},{"id":"explicit.stat_3667965781","text":"1 Added Passive Skill is Holistic Health","type":"explicit"},{"id":"explicit.stat_52953650","text":"Grants Level # Envy Skill","type":"explicit"},{"id":"explicit.stat_576528026","text":"#% increased Attack Physical Damage while using Pride","type":"explicit"},{"id":"explicit.stat_4139135963","text":"Curse Enemies with Temporal Chains on Hit","type":"explicit"},{"id":"explicit.stat_3187805501","text":"Added Small Passive Skills also grant: #% increased Flask Charges gained","type":"explicit"},{"id":"explicit.stat_3519807287","text":"Increases and Reductions to Light Radius also apply to Damage","type":"explicit"},{"id":"explicit.stat_1827657795","text":"#% increased Energy Shield Recharge Rate during any Flask Effect","type":"explicit"},{"id":"explicit.stat_2383914651","text":"1 Added Passive Skill is Stubborn Student","type":"explicit"},{"id":"explicit.stat_4096052153","text":"Zealotry has #% increased Aura Effect","type":"explicit"},{"id":"explicit.stat_806698863","text":"Consecrated Ground created by this Flask has Tripled Radius","type":"explicit"},{"id":"explicit.stat_3954735777","text":"#% chance to Poison on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_4173751044","text":"#% chance to Impale Enemies on Hit with Attacks while using Pride","type":"explicit"},{"id":"explicit.stat_241251790","text":"Cannot lose Crab Barriers if you have lost Crab Barriers Recently","type":"explicit"},{"id":"explicit.stat_3274973940","text":"Socketed Gems are Supported by Level # Blessing","type":"explicit"},{"id":"explicit.stat_34059570","text":"Unaffected by Poison while affected by Malevolence","type":"explicit"},{"id":"explicit.stat_1912660783","text":"#% slower start of Energy Shield Recharge during any Flask Effect","type":"explicit"},{"id":"explicit.stat_2731416566","text":"#% increased Maximum total Recovery per second from Energy Shield Leech while affected by Zealotry","type":"explicit"},{"id":"explicit.stat_1138742368","text":"Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value","type":"explicit"},{"id":"explicit.stat_2595115995","text":"1 Added Passive Skill is Mindfulness","type":"explicit"},{"id":"explicit.stat_358040686","text":"#% chance to create Chilled Ground when Hit with an Attack","type":"explicit"},{"id":"explicit.stat_1795365307","text":"#% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_1603621602","text":"1 Added Passive Skill is Dark Ideation","type":"explicit"},{"id":"explicit.stat_3177526694","text":"1 Added Passive Skill is Disciples","type":"explicit"},{"id":"explicit.stat_619213329","text":"# to Level of all Physical Skill Gems","type":"explicit"},{"id":"explicit.stat_2434030180","text":"Consecrated Ground you create while affected by Zealotry causes enemies to take #% increased Damage","type":"explicit"},{"id":"explicit.stat_2516869940","text":"Spell Skills cannot deal Critical Strikes except on final Repeat","type":"explicit"},{"id":"explicit.stat_3492924480","text":"1 Added Passive Skill is Prismatic Carapace","type":"explicit"},{"id":"explicit.stat_1336164384","text":"Cannot Leech","type":"explicit"},{"id":"explicit.stat_4263540840","text":"Left ring slot: You cannot Recharge or Regenerate Energy Shield","type":"explicit"},{"id":"explicit.stat_4015918489","text":"Socketed Gems are Supported by Level # Power Charge On Critical Strike","type":"explicit"},{"id":"explicit.stat_3676958605","text":"Right ring slot: Regenerate #% of Energy Shield per second","type":"explicit"},{"id":"explicit.stat_3738009328","text":"Spell Skills always deal Critical Strikes on final Repeat","type":"explicit"},{"id":"explicit.stat_2434330144","text":"Grants Level # Reckoning Skill","type":"explicit"},{"id":"explicit.stat_455217103","text":"You only lose # Crab Barriers when you take Physical Damage from a Hit","type":"explicit"},{"id":"explicit.stat_1678831767","text":"Recover # Life when you Block","type":"explicit"},{"id":"explicit.stat_1549898151","text":"Grace has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_1507409483","text":"1 Added Passive Skill is Pure Agony","type":"explicit"},{"id":"explicit.stat_2551779822","text":"# Armour while stationary","type":"explicit"},{"id":"explicit.stat_1316646496","text":"Socketed Gems are Supported by Level # Cast While Channelling","type":"explicit"},{"id":"explicit.stat_2261237498","text":"1 Added Passive Skill is Seeker Runes","type":"explicit"},{"id":"explicit.stat_4120556534","text":"1 Added Passive Skill is Aerodynamics","type":"explicit"},{"id":"explicit.stat_1464115829","text":"If you've Warcried Recently, you and nearby allies have #% increased Attack, Cast and Movement Speed","type":"explicit"},{"id":"explicit.stat_3303114033","text":"#% reduced Cold Damage taken","type":"explicit"},{"id":"explicit.stat_3029185248","text":"#% more Maximum Physical Attack Damage","type":"explicit"},{"id":"explicit.stat_3084359503","text":"1 Added Passive Skill is Basics of Pain","type":"explicit"},{"id":"explicit.stat_1274505521","text":"1 Added Passive Skill is Cold Conduction","type":"explicit"},{"id":"explicit.stat_3338465330","text":"Added Small Passive Skills also grant: #% increased Duration of Elemental Ailments on Enemies","type":"explicit"},{"id":"explicit.stat_2534405517","text":"1 Added Passive Skill is Daring Ideas","type":"explicit"},{"id":"explicit.stat_1996576560","text":"1 Added Passive Skill is Vast Power","type":"explicit"},{"id":"explicit.stat_1330109706","text":"Regenerate # Energy Shield per second","type":"explicit"},{"id":"explicit.stat_785655723","text":"Enemies affected by your Spider's Webs have #% to All Resistances","type":"explicit"},{"id":"explicit.stat_1560880986","text":"#% chance for Bleeding inflicted with this Weapon to deal 100% more Damage","type":"explicit"},{"id":"explicit.stat_3241234878","text":"Left ring slot: Regenerate # Mana per Second","type":"explicit"},{"id":"explicit.stat_3686780108","text":"#% increased Aspect of the Spider Area of Effect","type":"explicit"},{"id":"explicit.stat_417509375","text":"Right ring slot: # to maximum Mana","type":"explicit"},{"id":"explicit.stat_3231424461","text":"Enemies affected by your Spider's Webs deal #% reduced Damage","type":"explicit"},{"id":"explicit.stat_3481736410","text":"#% increased Area of Effect if you've Killed Recently","type":"explicit"},{"id":"explicit.stat_3772841281","text":"Gain a Flask Charge when you deal a Critical Strike while affected by Precision","type":"explicit"},{"id":"explicit.stat_1497601437","text":"Left ring slot: # to maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_2428334013","text":"1 Added Passive Skill is Astonishing Affliction","type":"explicit"},{"id":"explicit.stat_956384511","text":"#% to Critical Strike Multiplier per 1% Chance to Block Attack Damage","type":"explicit"},{"id":"explicit.stat_1149662934","text":"1 Added Passive Skill is Prismatic Dance","type":"explicit"},{"id":"explicit.stat_1821748178","text":"1 Added Passive Skill is Cry Wolf","type":"explicit"},{"id":"explicit.stat_713945233","text":"1 Added Passive Skill is Rot-Resistant","type":"explicit"},{"id":"explicit.stat_3589396689","text":"#% increased Maximum Recovery per Energy Shield Leech","type":"explicit"},{"id":"explicit.stat_2454339320","text":"1 Added Passive Skill is Forbidden Words","type":"explicit"},{"id":"explicit.stat_1512695141","text":"Immune to Freeze and Chill while Ignited","type":"explicit"},{"id":"explicit.stat_2200030809","text":"Discipline has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_325204898","text":"Allocated Small Passive Skills in Radius grant nothing","type":"explicit"},{"id":"explicit.stat_1064477264","text":"#% increased Damage if you've Frozen an Enemy Recently","type":"explicit"},{"id":"explicit.stat_1658498488","text":"Corrupted Blood cannot be inflicted on you","type":"explicit"},{"id":"explicit.stat_462115791","text":"1 Added Passive Skill is Dark Discourse","type":"explicit"},{"id":"explicit.stat_762154651","text":"#% chance for Energy Shield Recharge to start when you Block","type":"explicit"},{"id":"explicit.stat_1127706436","text":"1 Added Passive Skill is Blacksmith","type":"explicit"},{"id":"explicit.stat_4192058279","text":"With # Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead","type":"explicit"},{"id":"explicit.stat_56720831","text":"Adds Secrets of Suffering","type":"explicit"},{"id":"explicit.stat_2522672898","text":"#% of Fire Damage from Hits taken as Cold Damage","type":"explicit"},{"id":"explicit.stat_4268822436","text":"Tormented Spirits drop 1 additional Rare Item","type":"explicit"},{"id":"explicit.stat_3822878124","text":"Grants Level # Purity of Lightning Skill","type":"explicit"},{"id":"explicit.stat_121436064","text":"#% of Lightning Damage is Leeched as Energy Shield while affected by Wrath","type":"explicit"},{"id":"explicit.stat_3321235265","text":"Grants Level # Gluttony of Elements Skill","type":"explicit"},{"id":"explicit.stat_3245481061","text":"Critical Strikes deal no Damage","type":"explicit"},{"id":"explicit.stat_654274615","text":"Curse Enemies with Flammability on Hit","type":"explicit"},{"id":"explicit.stat_2043503530","text":"1 Added Passive Skill is Arcane Pyrotechnics","type":"explicit"},{"id":"explicit.stat_606940191","text":"#% chance to Scorch Enemies","type":"explicit"},{"id":"explicit.stat_467806158","text":"#% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds","type":"explicit"},{"id":"explicit.stat_1753916791","text":"Projectiles from Attacks have #% chance to Maim on Hit while\nyou have a Bestial Minion","type":"explicit"},{"id":"explicit.stat_2339012908","text":"# to Level of all Strength Skill Gems","type":"explicit"},{"id":"explicit.stat_332854027","text":"#% increased Aspect of the Spider Debuff Duration","type":"explicit"},{"id":"explicit.stat_3970432307","text":"Grants Level # Purity of Fire Skill","type":"explicit"},{"id":"explicit.stat_1976069869","text":"1 Added Passive Skill is One with the Shield","type":"explicit"},{"id":"explicit.stat_3597737983","text":"#% increased Attack and Movement Speed while you have a Bestial Minion","type":"explicit"},{"id":"explicit.stat_3998191356","text":"Non-Chilled Enemies you Poison are Chilled","type":"explicit"},{"id":"explicit.stat_3360430812","text":"Rhoa Feather Lure","type":"explicit"},{"id":"explicit.stat_3799759054","text":"Added Small Passive Skills also grant: Channelling Skills have #% increased Attack and Cast Speed","type":"explicit"},{"id":"explicit.stat_2083777017","text":"1 Added Passive Skill is Conservation of Energy","type":"explicit"},{"id":"explicit.stat_3802667447","text":"#% increased Quantity of Fish Caught","type":"explicit"},{"id":"explicit.stat_3191123893","text":"#% increased effect of Modifiers on non-unique Maps","type":"explicit"},{"id":"explicit.stat_2602585351","text":"Triggers Level # Elemental Aegis when Equipped","type":"explicit"},{"id":"explicit.stat_1483358825","text":"1 Added Passive Skill is Heart of Iron","type":"explicit"},{"id":"explicit.stat_2736708072","text":"#% to Damage over Time Multiplier while affected by Malevolence","type":"explicit"},{"id":"explicit.stat_3476327198","text":"#% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes","type":"explicit"},{"id":"explicit.stat_1153801980","text":"1 Added Passive Skill is Cremator","type":"explicit"},{"id":"explicit.stat_673704994","text":"#% increased Movement Speed while you have Cat's Stealth","type":"explicit"},{"id":"explicit.stat_532324017","text":"#% chance to Sap Enemies","type":"explicit"},{"id":"explicit.stat_2410501331","text":"1 Added Passive Skill is Surging Vitality","type":"explicit"},{"id":"explicit.stat_3451043685","text":"Triggers Level # Reflection when Equipped","type":"explicit"},{"id":"explicit.stat_1345659139","text":"#% increased Critical Strike Chance against Poisoned Enemies","type":"explicit"},{"id":"explicit.stat_150668988","text":"# to Level of Socketed Trap or Mine Gems","type":"explicit"},{"id":"explicit.stat_979288792","text":"Enemies inflict Elemental Ailments on you instead of nearby Allies","type":"explicit"},{"id":"explicit.stat_1043982313","text":"Gain 1 Rage on Critical Hit with attacks, no more than once every # seconds","type":"explicit"},{"id":"explicit.stat_1948127742","text":"Added Small Passive Skills also grant: Minions have #% increased Attack and Cast Speed while you are affected by a Herald","type":"explicit"},{"id":"explicit.stat_1431402553","text":"Gain #% of Physical Damage as Extra Fire Damage per 1 Rage","type":"explicit"},{"id":"explicit.stat_979973117","text":"Grants Level # Smite Skill","type":"explicit"},{"id":"explicit.stat_3284029342","text":"You have Far Shot while you do not have Iron Reflexes","type":"explicit"},{"id":"explicit.stat_4199402748","text":"#% increased Chill Duration on Enemies when in Off Hand","type":"explicit"},{"id":"explicit.stat_3957006524","text":"1 Added Passive Skill is Vivid Hues","type":"explicit"},{"id":"explicit.stat_1890969167","text":"Players have no Life or Mana Regeneration","type":"explicit"},{"id":"explicit.stat_3539175001","text":"1 Added Passive Skill is Savour the Moment","type":"explicit"},{"id":"explicit.stat_3491815140","text":"#% increased Spell Damage per 100 Player Maximum Life","type":"explicit"},{"id":"explicit.stat_2200114771","text":"Every 16 seconds you gain Iron Reflexes for 8 seconds","type":"explicit"},{"id":"explicit.stat_545408899","text":"Sacrifice #% of your Life when you Use or Trigger a Spell Skill","type":"explicit"},{"id":"explicit.stat_3371719014","text":"#% chance to deal Double Damage while using Pride","type":"explicit"},{"id":"explicit.stat_2223565123","text":"Socketed Gems are Supported by Level # Greater Volley","type":"explicit"},{"id":"explicit.stat_548721233","text":"Minions Leech #% of Damage as Life against Poisoned Enemies","type":"explicit"},{"id":"explicit.stat_74462130","text":"Life Recovery from Flasks also applies to Energy Shield during Flask Effect","type":"explicit"},{"id":"explicit.stat_304032021","text":"#% more Damage with Arrow Hits at Close Range while you have Iron Reflexes","type":"explicit"},{"id":"explicit.stat_2478282326","text":"1 Added Passive Skill is Rote Reinforcement","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_ahuana","text":"Bathed in the blood of # sacrificed in the name of Ahuana","type":"explicit"},{"id":"explicit.stat_737702863","text":"Grants all bonuses of Unallocated Small Passive Skills in Radius","type":"explicit"},{"id":"explicit.stat_1162352537","text":"1 Added Passive Skill is Will Shaper","type":"explicit"},{"id":"explicit.stat_2152491486","text":"Adds #-# Chaos Damage to Attacks while you have a Bestial Minion","type":"explicit"},{"id":"explicit.stat_3192966873","text":"Purity of Ice has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_383557755","text":"Acrobatics","type":"explicit"},{"id":"explicit.stat_4006301249","text":"Socketed Minion Gems are Supported by Level # Life Leech","type":"explicit"},{"id":"explicit.stat_1612414696","text":"1 Added Passive Skill is Blowback","type":"explicit"},{"id":"explicit.stat_2684385509","text":"Minions cannot be Blinded","type":"explicit"},{"id":"explicit.stat_3359218839","text":"All Damage inflicts Poison while affected by Glorious Madness","type":"explicit"},{"id":"explicit.stat_2939409392","text":"Minions have #% chance to Blind Enemies on hit","type":"explicit"},{"id":"explicit.stat_2195406641","text":"1 Added Passive Skill is Lead By Example","type":"explicit"},{"id":"explicit.stat_1505850286","text":"Adds Lone Messenger","type":"explicit"},{"id":"explicit.stat_542238572","text":"Added Small Passive Skills also grant: Minions Regenerate #% of Life per Second","type":"explicit"},{"id":"explicit.stat_4224978303","text":"#% chance to deal Double Damage if you have Stunned an Enemy Recently","type":"explicit"},{"id":"explicit.stat_1536266147","text":"#% chance to gain an Endurance Charge when you Hit a Bleeding Enemy","type":"explicit"},{"id":"explicit.stat_2611023406","text":"#% increased Area of Effect per 50 Strength","type":"explicit"},{"id":"explicit.stat_4252311791","text":"#% increased Cold Resistance","type":"explicit"},{"id":"explicit.stat_3909952544","text":"You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness","type":"explicit"},{"id":"explicit.stat_2780297117","text":"Enemies you Kill while affected by Glorious Madness have a #% chance to Explode, dealing a quarter of their Life as Chaos Damage","type":"explicit"},{"id":"explicit.stat_3827349913","text":"#% increased Global Armour while you have no Energy Shield","type":"explicit"},{"id":"explicit.stat_3020069394","text":"Found Magic Items drop Identified","type":"explicit"},{"id":"explicit.stat_3351136461","text":"1 Added Passive Skill is Disorienting Wounds","type":"explicit"},{"id":"explicit.stat_2043284086","text":"1 Added Passive Skill is Enduring Composure","type":"explicit"},{"id":"explicit.stat_3270663592","text":"#% increased Effect of Fortify on you while affected by Glorious Madness","type":"explicit"},{"id":"explicit.stat_113147867","text":"Lose #% of Mana when you use an Attack Skill","type":"explicit"},{"id":"explicit.stat_2636403786","text":"Projectiles Pierce all Targets while you have Phasing","type":"explicit"},{"id":"explicit.stat_684155617","text":"1 Added Passive Skill is Mage Bane","type":"explicit"},{"id":"explicit.stat_59547568","text":"Melee Movement Skills have #% chance to Fortify on Hit","type":"explicit"},{"id":"explicit.stat_2341828832","text":"1 Added Passive Skill is Hex Breaker","type":"explicit"},{"id":"explicit.stat_4266201818","text":"Poison Cursed Enemies on hit","type":"explicit"},{"id":"explicit.stat_1013470938","text":"1 Added Passive Skill is Deadly Repartee","type":"explicit"},{"id":"explicit.stat_3610263531","text":"Focus has #% increased Cooldown Recovery Rate","type":"explicit"},{"id":"explicit.pseudo_timeless_jewel_balbala","text":"Denoted service of # dekhara in the akhara of Balbala","type":"explicit"},{"id":"explicit.stat_1773891268","text":"Enemies have #% reduced Evasion if you have Hit them Recently","type":"explicit"},{"id":"explicit.stat_1065479853","text":"Immune to Elemental Ailments while affected by Glorious Madness","type":"explicit"},{"id":"explicit.stat_3468843137","text":"Damaging Ailments you inflict deal Damage #% faster while affected by Malevolence","type":"explicit"},{"id":"explicit.stat_2448279015","text":"#% increased Area of Effect per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2249211872","text":"#% increased Lightning Resistance","type":"explicit"},{"id":"explicit.stat_1299868012","text":"#% chance to deal Double Damage while affected by Glorious Madness","type":"explicit"},{"id":"explicit.stat_1649099067","text":"# Life gained for each Blinded Enemy Hit by this Weapon","type":"explicit"},{"id":"explicit.stat_2350430215","text":"1 Added Passive Skill is Flow of Life","type":"explicit"},{"id":"explicit.stat_1822142649","text":"#% increased Projectile Attack Damage while you have at least 200 Dexterity","type":"explicit"},{"id":"explicit.stat_2059771038","text":"Attacks always inflict Bleeding while you have Cat's Stealth","type":"explicit"},{"id":"explicit.stat_1302700515","text":"Attack Skills gain #% of Physical Damage as Extra Fire Damage per Socketed Red Gem","type":"explicit"},{"id":"explicit.stat_2596487673","text":"Added Small Passive Skills also grant: #% increased Warcry Duration","type":"explicit"},{"id":"explicit.stat_4263287206","text":"1 Added Passive Skill is Rend","type":"explicit"},{"id":"explicit.stat_4193390599","text":"Grants Level # Purity of Ice Skill","type":"explicit"},{"id":"explicit.stat_1488030420","text":"1 Added Passive Skill is Run Through","type":"explicit"},{"id":"explicit.stat_2445618239","text":"# to Total Mana Cost of Skills while affected by Clarity","type":"explicit"},{"id":"explicit.stat_4018305528","text":"1 Added Passive Skill is Compound Injury","type":"explicit"},{"id":"explicit.stat_2287264161","text":"Socketed Gems are Supported by Level # Arcane Surge","type":"explicit"},{"id":"explicit.stat_3422445312","text":"Monsters from Beyond have #% more Quantity and Rarity of Dropped Items","type":"explicit"},{"id":"explicit.stat_1820083363","text":"Manifest Dancing Dervish also manifests a copy of Dancing Dervish","type":"explicit"},{"id":"explicit.stat_242822230","text":"Adds #-# Physical Damage to Attacks while you have a Bestial Minion","type":"explicit"},{"id":"explicit.stat_1936135020","text":"1 Added Passive Skill is Victim Maker","type":"explicit"},{"id":"explicit.stat_3134222965","text":"1 Added Passive Skill is Fearsome Warrior","type":"explicit"},{"id":"explicit.stat_4212372504","text":"Unaffected by Temporal Chains","type":"explicit"},{"id":"explicit.stat_4281625943","text":"1 Added Passive Skill is Opportunistic Fusilade","type":"explicit"},{"id":"explicit.stat_729163974","text":"1 Added Passive Skill is Unspeakable Gifts","type":"explicit"},{"id":"explicit.stat_3462132936","text":"When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy","type":"explicit"},{"id":"explicit.stat_2017927451","text":"1 Added Passive Skill is Explosive Force","type":"explicit"},{"id":"explicit.stat_2020075345","text":"1 Added Passive Skill is Expendability","type":"explicit"},{"id":"explicit.stat_627889781","text":"Removes Elemental Ailments on Rampage","type":"explicit"},{"id":"explicit.stat_2916634441","text":"#% increased Maximum total Recovery per second from Life Leech","type":"explicit"},{"id":"explicit.stat_3100457893","text":"Gain Immunity to Physical Damage for # second on Rampage","type":"explicit"},{"id":"explicit.stat_2265469693","text":"Added Small Passive Skills also grant: #% increased Brand Attachment range","type":"explicit"},{"id":"explicit.stat_16924183","text":"Raise Zombie does not require a corpse","type":"explicit"},{"id":"explicit.stat_876846990","text":"1 Added Passive Skill is Seal Mender","type":"explicit"},{"id":"explicit.stat_1424794574","text":"1 Added Passive Skill is Blessed Rebirth","type":"explicit"},{"id":"explicit.stat_3308030688","text":"#% increased Mana Regeneration Rate while stationary","type":"explicit"},{"id":"explicit.stat_2135246244","text":"Added Small Passive Skills also grant: #% increased Trap and Mine Throwing Speed","type":"explicit"},{"id":"explicit.stat_3931143552","text":"Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Attack Damage at #% of its value","type":"explicit"},{"id":"explicit.stat_3467711950","text":"1 Added Passive Skill is Hulking Corpses","type":"explicit"},{"id":"explicit.stat_2373079502","text":"Cold Skills have #% chance to Poison on Hit","type":"explicit"},{"id":"explicit.stat_1038897629","text":"1 Added Passive Skill is Raze and Pillage","type":"explicit"},{"id":"explicit.stat_3951269079","text":"Your Raised Zombies count as corpses","type":"explicit"},{"id":"explicit.stat_927817294","text":"Raised Zombies have #% increased maximum Life","type":"explicit"},{"id":"explicit.stat_3184880507","text":"Gain Unholy Might on block for # seconds","type":"explicit"},{"id":"explicit.stat_3226074658","text":"1 Added Passive Skill is Supercharge","type":"explicit"},{"id":"explicit.stat_1462135249","text":"1 Added Passive Skill is Master of Fire","type":"explicit"},{"id":"explicit.stat_251446805","text":"Socketed Gems are Supported by Level # Iron Grip","type":"explicit"},{"id":"explicit.stat_550012797","text":"Area contains # additional Animated Weapon Packs","type":"explicit"},{"id":"explicit.stat_3743375737","text":"#% chance to Avoid Cold Damage from Hits","type":"explicit"},{"id":"explicit.stat_1938661964","text":"1 Added Passive Skill is Wind-up","type":"explicit"},{"id":"explicit.stat_1401233515","text":"Talismans found in this Area are Rare","type":"explicit"},{"id":"explicit.stat_1917124426","text":"Your Cold Damage can Poison","type":"explicit"},{"id":"explicit.stat_2935409762","text":"Trigger Level # Rain of Arrows when you Attack with a Bow","type":"explicit"},{"id":"explicit.stat_2889601846","text":"#% of Lightning Damage is Leeched as Mana while affected by Wrath","type":"explicit"},{"id":"explicit.stat_1509756274","text":"Enemies near corpses affected by your Curses are Blinded\nEnemies Killed near corpses affected by your Curses explode, dealing\n#% of their Life as Physical Damage","type":"explicit"},{"id":"explicit.stat_4022743870","text":"1 Added Passive Skill is Adrenaline","type":"explicit"},{"id":"explicit.stat_3500334379","text":"1 Added Passive Skill is Steady Torment","type":"explicit"},{"id":"explicit.stat_4058504226","text":"Projectiles from Attacks have #% chance to inflict Bleeding on Hit while\nyou have a Bestial Minion","type":"explicit"},{"id":"explicit.stat_1173537953","text":"Maximum # Fragile Regrowth","type":"explicit"},{"id":"explicit.stat_3967765261","text":"1 Added Passive Skill is Bloodscent","type":"explicit"},{"id":"explicit.stat_301746072","text":"Arrows fired from the third firing points Return to you","type":"explicit"},{"id":"explicit.stat_3560379096","text":"Area is inhabited by Redblade Warbands","type":"explicit"},{"id":"explicit.stat_3290081052","text":"Arrows fired from the second firing points Fork","type":"explicit"},{"id":"explicit.stat_2912949210","text":"1 Added Passive Skill is Alchemist","type":"explicit"},{"id":"explicit.stat_3169825297","text":"Nearby Enemies have #% reduced Stun and Block Recovery","type":"explicit"},{"id":"explicit.stat_3461563650","text":"When used in the Synthesiser, the new item will have an additional Herald Modifier","type":"explicit"},{"id":"explicit.stat_847744351","text":"Non-Aura Curses you inflict are not removed from Dying Enemies","type":"explicit"},{"id":"explicit.stat_810219447","text":"1 Added Passive Skill is Improvisor","type":"explicit"},{"id":"explicit.stat_3872380586","text":"1 Added Passive Skill is Inspired Oppression","type":"explicit"},{"id":"explicit.stat_1604984482","text":"Your Lightning Damage can Poison","type":"explicit"},{"id":"explicit.stat_1114411822","text":"Projectiles from Attacks have #% chance to Poison on Hit while\nyou have a Bestial Minion","type":"explicit"},{"id":"explicit.stat_792262925","text":"1 Added Passive Skill is Winter Commander","type":"explicit"},{"id":"explicit.stat_1657549833","text":"#% chance to gain an Endurance Charge when you Taunt an Enemy","type":"explicit"},{"id":"explicit.stat_949718413","text":"Lightning Skills have #% chance to Poison on Hit","type":"explicit"},{"id":"explicit.stat_2810286377","text":"Area contains an additional pack with a Rare monster","type":"explicit"},{"id":"explicit.stat_1570474940","text":"1 Added Passive Skill is Rapid Infusion","type":"explicit"},{"id":"explicit.stat_2168987271","text":"Arrows fired from the first firing points always Pierce","type":"explicit"},{"id":"explicit.stat_3372255769","text":"1 Added Passive Skill is Spiked Concoction","type":"explicit"},{"id":"explicit.stat_1985969957","text":"Your Fire Damage can Poison","type":"explicit"},{"id":"explicit.stat_1032751668","text":"You have Vaal Pact if you've dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_3205239847","text":"#% of Fire Damage from Hits taken as Physical Damage","type":"explicit"},{"id":"explicit.stat_2936435999","text":"Lose #% of Mana per Second","type":"explicit"},{"id":"explicit.stat_2614654450","text":"#% increased Global Physical Damage while Frozen","type":"explicit"},{"id":"explicit.stat_678245679","text":"#% reduced Soul Cost of Vaal Skills","type":"explicit"},{"id":"explicit.stat_1560540713","text":"Nearby Allies have Culling Strike","type":"explicit"},{"id":"explicit.stat_3131110290","text":"With at least 40 Intelligence in Radius, Magma Orb deals #% more Damage","type":"explicit"},{"id":"explicit.stat_4154709486","text":"1 Added Passive Skill is Militarism","type":"explicit"},{"id":"explicit.stat_2938895712","text":"1 Added Passive Skill is Cooked Alive","type":"explicit"},{"id":"explicit.stat_744783843","text":"1 Added Passive Skill is Cold to the Core","type":"explicit"},{"id":"explicit.stat_578355556","text":"1 Added Passive Skill is Warning Call","type":"explicit"},{"id":"explicit.stat_1048879642","text":"1 Added Passive Skill is Mob Mentality","type":"explicit"},{"id":"explicit.stat_2367560235","text":"#% chance to Dodge Attack and Spell Hits per 500 Maximum Mana, up to 20%","type":"explicit"},{"id":"explicit.stat_2522970386","text":"1 Added Passive Skill is Enduring Focus","type":"explicit"},{"id":"explicit.stat_1011863394","text":"Impales you inflict last # additional Hits while using Pride","type":"explicit"},{"id":"explicit.stat_3746703776","text":"1 Added Passive Skill is Ancestral Preservation","type":"explicit"},{"id":"explicit.stat_798853218","text":"You cannot be Shocked while Frozen","type":"explicit"},{"id":"explicit.stat_3251948367","text":"#% chance to Trigger Commandment of Inferno on Critical Strike","type":"explicit"},{"id":"explicit.stat_1309218394","text":"1 Added Passive Skill is Grounded Commander","type":"explicit"},{"id":"explicit.stat_90597215","text":"Your Hits can't be Evaded by Blinded Enemies","type":"explicit"},{"id":"explicit.stat_3257074218","text":"1 Added Passive Skill is Master of Command","type":"explicit"},{"id":"explicit.stat_3322709337","text":"Your Hits inflict Decay, dealing 500 Chaos Damage per second for 8 seconds","type":"explicit"},{"id":"explicit.stat_3392890360","text":"Damage Penetrates #% Elemental Resistances during any Flask Effect","type":"explicit"},{"id":"explicit.stat_1431238626","text":"#% of Physical Damage from Hits with this Weapon is Converted to a random Element","type":"explicit"},{"id":"explicit.stat_1470894892","text":"Hits with this Weapon deal #% increased Damage to Shocked Enemies","type":"explicit"},{"id":"explicit.stat_196313911","text":"Hits with this Weapon deal #% increased Damage to Frozen Enemies","type":"explicit"},{"id":"explicit.stat_4291434923","text":"1 Added Passive Skill is Mender's Wellspring","type":"explicit"},{"id":"explicit.stat_303219716","text":"With at least 40 Intelligence in Radius, #% of Damage taken gained as Mana over 4 seconds when Hit if you've Warcried Recently","type":"explicit"},{"id":"explicit.stat_1633583023","text":"Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant Chance to Dodge Attack Hits at #% of its value","type":"explicit"},{"id":"explicit.stat_1080855680","text":"Rogue Exiles deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_399295164","text":"Rogue Exiles have #% increased Attack, Cast and Movement Speed","type":"explicit"},{"id":"explicit.stat_2008953542","text":"Rogue Exiles have #% more Rarity of Items Dropped","type":"explicit"},{"id":"explicit.stat_3881737087","text":"1 Added Passive Skill is Summer Commander","type":"explicit"},{"id":"explicit.stat_3242537102","text":"You have Vaal Pact while all Socketed Gems are Red","type":"explicit"},{"id":"explicit.stat_226515115","text":"Arrows fired from the fourth firing points Chain # time","type":"explicit"},{"id":"explicit.stat_241783558","text":"1 Added Passive Skill is Wrapped in Flame","type":"explicit"},{"id":"explicit.stat_1356468153","text":"Nearby Allies' Action Speed cannot be modified to below base value","type":"explicit"},{"id":"explicit.stat_2056575682","text":"# to maximum number of Summoned Holy Relics","type":"explicit"},{"id":"explicit.stat_1583498502","text":"Summoned Holy Relics have #% reduced Cooldown Recovery Rate","type":"explicit"},{"id":"explicit.stat_1174243390","text":"You gain Divinity for # seconds on reaching maximum Divine Charges\nLose all Divine Charges when you gain Divinity","type":"explicit"},{"id":"explicit.stat_3095345438","text":"Hits with this Weapon deal #% increased Damage to Ignited Enemies","type":"explicit"},{"id":"explicit.stat_121093551","text":"Warbands have #% more Quantity of Items Dropped","type":"explicit"},{"id":"explicit.stat_3629143471","text":"Damage from Enemies Hitting you is Unlucky while you are on Full Life","type":"explicit"},{"id":"explicit.stat_751847284","text":"Warbands have #% more Rarity of Items Dropped","type":"explicit"},{"id":"explicit.stat_4272453892","text":"# Strength and Intelligence Requirement","type":"explicit"},{"id":"explicit.stat_1263384098","text":"Traps from Socketed Skills create a Smoke Cloud when triggered","type":"explicit"},{"id":"explicit.stat_108334292","text":"#% chance to gain a Divine Charge on Hit","type":"explicit"},{"id":"explicit.stat_3128318472","text":"You can only deal Damage with this Weapon or Ignite","type":"explicit"},{"id":"explicit.stat_578121324","text":"#% increased Critical Strike Chance while you have at least 200 Intelligence","type":"explicit"},{"id":"explicit.stat_931560398","text":"Glows while in an Area containing a Unique Fish","type":"explicit"},{"id":"explicit.stat_3527458221","text":"#% to Critical Strike Multiplier if you have Blocked Recently","type":"explicit"},{"id":"explicit.stat_3941376120","text":"Players have a #% chance when they Kill a Rare Monster to gain 1 of its Modifiers for 20 seconds","type":"explicit"},{"id":"explicit.stat_4249521944","text":"#% increased Spell Damage per 16 Strength","type":"explicit"},{"id":"explicit.stat_2008219439","text":"#% increased Physical Damage with Axes","type":"explicit"},{"id":"explicit.stat_3997368968","text":"# to maximum Divine Charges","type":"explicit"},{"id":"explicit.stat_3989400244","text":"1 Added Passive Skill is Low Tolerance","type":"explicit"},{"id":"explicit.stat_2304300603","text":"You count as on Low Life while you are Cursed with Vulnerability","type":"explicit"},{"id":"explicit.stat_2453554491","text":"Attacks with this Weapon deal # to # added Fire Damage to Bleeding Enemies","type":"explicit"},{"id":"explicit.stat_3148418088","text":"Attacks with this Weapon have #% chance to inflict Bleeding against Ignited Enemies","type":"explicit"},{"id":"explicit.stat_1177959871","text":"Nearby Enemies cannot deal Critical Strikes","type":"explicit"},{"id":"explicit.stat_2016708976","text":"#% to Quality","type":"explicit"},{"id":"explicit.stat_2918755450","text":"1 Added Passive Skill is Fan the Flames","type":"explicit"},{"id":"explicit.stat_2202639361","text":"Attacks with this Weapon deal # to # added Physical Damage to Ignited Enemies","type":"explicit"},{"id":"explicit.stat_1681904129","text":"Socketed Gems have #% Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_3936926420","text":"Removes Bleeding when you use a Warcry","type":"explicit"},{"id":"explicit.stat_252724319","text":"1 Added Passive Skill is Enduring Ward","type":"explicit"},{"id":"explicit.stat_1085167979","text":"1 Added Passive Skill is Blanketed Snow","type":"explicit"},{"id":"explicit.stat_3089506271","text":"Strongboxes each contain an additional random Rare Item","type":"explicit"},{"id":"explicit.stat_242161915","text":"#% to all Elemental Resistances per Grand Spectrum","type":"explicit"},{"id":"explicit.stat_125312907","text":"Triggers Level # Blinding Aura when Equipped","type":"explicit"},{"id":"explicit.stat_1015189426","text":"1 Added Passive Skill is Martial Mastery","type":"explicit"},{"id":"explicit.stat_354080151","text":"Inner Conviction","type":"explicit"},{"id":"explicit.stat_581013336","text":"Area contains an additional Magic Monster pack","type":"explicit"},{"id":"explicit.stat_3861913659","text":"#% of Damage Leeched as Life against Cursed Enemies","type":"explicit"},{"id":"explicit.stat_1871938116","text":"You have Onslaught while on Low Life","type":"explicit"},{"id":"explicit.stat_768124628","text":"#% chance for Poisons inflicted with this Weapon to deal 300% more Damage","type":"explicit"},{"id":"explicit.stat_1335713735","text":"Monsters Imprisoned around Essences in Area are Magic","type":"explicit"},{"id":"explicit.stat_411986876","text":"Increases and Reductions to Light Radius also apply to Accuracy","type":"explicit"},{"id":"explicit.stat_3977907993","text":"Adds # to # Fire Damage to Hits with this Weapon against Blinded Enemies","type":"explicit"},{"id":"explicit.stat_952897668","text":"Regenerate # Life per second while Ignited","type":"explicit"},{"id":"explicit.stat_254194892","text":"1 Added Passive Skill is Riot Queller","type":"explicit"},{"id":"explicit.stat_3470457445","text":"Chaos Damage can Ignite, Chill and Shock","type":"explicit"},{"id":"explicit.stat_3980924189","text":"#% to maximum Chance to Dodge Spell Hits","type":"explicit"},{"id":"explicit.stat_3679287686","text":"Monsters with Silver Coins drop an additional Silver Coin","type":"explicit"},{"id":"explicit.stat_1588674629","text":"Added Small Passive Skills also grant: #% increased Totem Placement speed","type":"explicit"},{"id":"explicit.stat_2331104018","text":"Damage from Blocked Hits cannot bypass Energy Shield\nDamage from Unblocked hits always bypasses Energy Shield","type":"explicit"},{"id":"explicit.stat_294153754","text":"# Energy Shield gained on Kill per Level","type":"explicit"},{"id":"explicit.stat_1064067689","text":"# Mana gained on Kill per Level","type":"explicit"},{"id":"explicit.stat_2519848087","text":"#% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_1680060098","text":"#% increased Fire Resistance","type":"explicit"},{"id":"explicit.stat_1726444796","text":"#% chance to Curse non-Cursed Enemies with a random Hex on Hit","type":"explicit"},{"id":"explicit.stat_1722463112","text":"Nearby Allies have #% increased Item Rarity","type":"explicit"},{"id":"explicit.stat_2390685262","text":"#% increased Quantity of Items found in Areas","type":"explicit"},{"id":"explicit.stat_4194900521","text":"#% increased Damage with Hits against Shocked Enemies","type":"explicit"},{"id":"explicit.stat_3144358296","text":"Adds # to # Fire Damage if you've dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_2396755365","text":"1 Added Passive Skill is Feast of Flesh","type":"explicit"},{"id":"explicit.stat_1819739544","text":"Monsters initially carrying a Talisman drop an additional Rare Item","type":"explicit"},{"id":"explicit.stat_301214136","text":"#% to maximum Chance to Dodge Attack Hits","type":"explicit"},{"id":"explicit.stat_200113086","text":"Nova Spells have #% more Area of Effect","type":"explicit"},{"id":"explicit.stat_3152714748","text":"Nearby Allies have #% to Critical Strike Multiplier","type":"explicit"},{"id":"explicit.stat_4137521191","text":"#% increased Attack Speed if you've been Hit Recently","type":"explicit"},{"id":"explicit.stat_3775574601","text":"#% increased Critical Strike Chance for Spells per 100 Player Maximum Life","type":"explicit"},{"id":"explicit.stat_2723101291","text":"Adds # to # Physical Damage if you've dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_3896241826","text":"Hits against Nearby Enemies have #% increased Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_161058250","text":"Gain Soul Eater for # seconds when you use a Vaal Skill","type":"explicit"},{"id":"explicit.stat_1061545609","text":"Players have #% increased Attack, Cast and Movement Speed while they have Onslaught","type":"explicit"},{"id":"explicit.stat_3757930834","text":"Monsters have #% chance to Avoid being Shocked","type":"explicit"},{"id":"explicit.stat_2955966707","text":"The Effect of Chill on you is reversed","type":"explicit"},{"id":"explicit.stat_2785835061","text":"1 Added Passive Skill is Intensity","type":"explicit"},{"id":"explicit.stat_2788729902","text":"Socketed Gems Chain # additional times","type":"explicit"},{"id":"explicit.stat_3089482869","text":"Brand Skills have #% increased Duration","type":"explicit"},{"id":"explicit.stat_763311546","text":"Fire Resistance is #%","type":"explicit"},{"id":"explicit.stat_4077883829","text":"A Monster in this Area will summon a Unique Monster from Beyond when Slain","type":"explicit"},{"id":"explicit.stat_445906009","text":"#% chance to lose a Frenzy Charge when you use a Travel Skill","type":"explicit"},{"id":"explicit.stat_3083201633","text":"#% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_4228691877","text":"# Life gained on Kill per Level","type":"explicit"},{"id":"explicit.stat_2094646950","text":"#% increased Elemental Damage per Level","type":"explicit"},{"id":"explicit.stat_3051860083","text":"Monsters have #% increased chance to spawn a Beyond Portal","type":"explicit"},{"id":"explicit.stat_3809896400","text":"Unaffected by Curses","type":"explicit"},{"id":"explicit.stat_221328679","text":"Summoned Raging Spirits' Melee Strikes deal Fire-only Splash\nDamage to Surrounding Targets","type":"explicit"},{"id":"explicit.stat_985999215","text":"Adds # to # Lightning Damage to Spells while no Life is Reserved","type":"explicit"},{"id":"explicit.stat_3171958921","text":"#% chance to Trigger a Socketed Bow Skill when you Attack with a Bow","type":"explicit"},{"id":"explicit.stat_1623397857","text":"You take Chaos Damage instead of Physical Damage from Bleeding","type":"explicit"},{"id":"explicit.stat_3738127245","text":"Monsters guarding Shrines are Magic","type":"explicit"},{"id":"explicit.stat_244825991","text":"Nearby Allies have Fortify","type":"explicit"},{"id":"explicit.stat_1827636152","text":"Your Minions use your Flasks when summoned","type":"explicit"},{"id":"explicit.stat_1984366275","text":"Invasion Bosses have #% more Quantity and Rarity of dropped Items","type":"explicit"},{"id":"explicit.stat_3195625581","text":"Creates Consecrated Ground on Critical Strike","type":"explicit"},{"id":"explicit.stat_897996059","text":"Adds # to # Cold Damage to Spells while no Life is Reserved","type":"explicit"},{"id":"explicit.stat_2306002879","text":"#% increased Rarity of Items found in this Area","type":"explicit"},{"id":"explicit.stat_1748657990","text":"Damage Penetrates #% Fire Resistance against Blinded Enemies","type":"explicit"},{"id":"explicit.stat_1654414582","text":"You cannot be Cursed with Silence","type":"explicit"},{"id":"explicit.stat_1932583315","text":"Minions have #% increased Flask Effect Duration","type":"explicit"},{"id":"explicit.stat_338643834","text":"Unique Boss is augmented by Player choices","type":"explicit"},{"id":"explicit.stat_2238831336","text":"Your Maximum Frenzy Charges is equal to your Maximum Power Charges","type":"explicit"},{"id":"explicit.stat_2387747995","text":"1 Added Passive Skill is Ancestral Guidance","type":"explicit"},{"id":"explicit.stat_2424717327","text":"Fire Skills have #% chance to Poison on Hit","type":"explicit"},{"id":"explicit.stat_1360359242","text":"While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances","type":"explicit"},{"id":"explicit.stat_1819086604","text":"#% chance to lose a Power Charge when you gain Elusive","type":"explicit"},{"id":"explicit.stat_3008104268","text":"Chaos Damage does not bypass Minions' Energy Shield","type":"explicit"},{"id":"explicit.stat_2054530657","text":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Cold Skills","type":"explicit"},{"id":"explicit.stat_3545269928","text":"#% increased Effect of Elusive on you per Power Charge","type":"explicit"},{"id":"explicit.stat_2420786978","text":"Skills which throw Traps have Blood Magic","type":"explicit"},{"id":"explicit.stat_1078455967","text":"# to Level of all Cold Skill Gems","type":"explicit"},{"id":"explicit.stat_496075050","text":"Cold Resistance is #%","type":"explicit"},{"id":"explicit.stat_3005800306","text":"Area contains a Stone Circle","type":"explicit"},{"id":"explicit.stat_3078065247","text":"1 Added Passive Skill is Wizardry","type":"explicit"},{"id":"explicit.stat_3550460467","text":"Enemies on Fungal Ground you Kill have #% chance to Explode, dealing 5% of their Life as Chaos Damage","type":"explicit"},{"id":"explicit.stat_531937370","text":"Unique Monsters from Beyond have a #% chance to Summon\nanother Unique Monster from Beyond when Slain","type":"explicit"},{"id":"explicit.stat_799872465","text":"You have Fungal Ground around you while stationary","type":"explicit"},{"id":"explicit.stat_1432093361","text":"Unique Boss drops an additional Harbinger Scroll","type":"explicit"},{"id":"explicit.stat_3159312340","text":"Trigger Level # Contaminate when you Kill an Enemy","type":"explicit"},{"id":"explicit.stat_2930706364","text":"Permanently Intimidate Enemies on Block","type":"explicit"},{"id":"explicit.stat_3302736916","text":"#% chance to Trigger a Socketed Spell when you Attack with a Bow","type":"explicit"},{"id":"explicit.stat_1094635162","text":"1 Added Passive Skill is Liquid Inspiration","type":"explicit"},{"id":"explicit.stat_2484082827","text":"1 Added Passive Skill is Fan of Blades","type":"explicit"},{"id":"explicit.stat_1719423857","text":"# to Level of Socketed Intelligence Gems","type":"explicit"},{"id":"explicit.stat_679682964","text":"Imprisoned Monsters have an additional Essence","type":"explicit"},{"id":"explicit.stat_2812925691","text":"Trigger Level # Icicle Burst when you Kill a Frozen Enemy","type":"explicit"},{"id":"explicit.stat_690707482","text":"#% increased Damage with Ailments","type":"explicit"},{"id":"explicit.stat_2978408106","text":"Area contains a Voidspawn of Abaxoth Bloodline Pack","type":"explicit"},{"id":"explicit.stat_2800333900","text":"Talismans found in this Area are 1 Tier higher","type":"explicit"},{"id":"explicit.stat_4284915962","text":"# to Maximum Life per 2 Intelligence","type":"explicit"},{"id":"explicit.stat_2546599258","text":"Intelligence provides no bonus to Maximum Mana","type":"explicit"},{"id":"explicit.stat_2290031712","text":"Strength provides no bonus to Maximum Life","type":"explicit"},{"id":"explicit.stat_1406039617","text":"#% increased Rampage Streak Duration","type":"explicit"},{"id":"explicit.stat_3097206473","text":"Rare Breach Monsters drop an additional Splinter","type":"explicit"},{"id":"explicit.stat_3209835461","text":"Invasion Bosses are guarded by a Magic Pack","type":"explicit"},{"id":"explicit.stat_1210760818","text":"Breaches have #% increased Monster density","type":"explicit"},{"id":"explicit.stat_760855772","text":"#% increased Quantity of Items found when on Low Life","type":"explicit"},{"id":"explicit.stat_4157714333","text":"Rare Monsters from Breaches have a #% chance to Drop a Breach Ring","type":"explicit"},{"id":"explicit.stat_1960833438","text":"Regenerate #% of Life per second per 500 Maximum Energy Shield","type":"explicit"},{"id":"explicit.stat_731840035","text":"1 Added Passive Skill is Non-Flammable","type":"explicit"},{"id":"explicit.stat_2813626504","text":"Spells have a #% chance to deal Double Damage","type":"explicit"},{"id":"explicit.stat_1543731719","text":"1 Added Passive Skill is Gladiatorial Combat","type":"explicit"},{"id":"explicit.stat_3310914132","text":"#% increased Rarity of Fish Caught","type":"explicit"},{"id":"explicit.stat_1942151132","text":"Lightning Resistance is #%","type":"explicit"},{"id":"explicit.stat_3045094957","text":"Players with at least 50 Rampage Kills take #% reduced Damage","type":"explicit"},{"id":"explicit.stat_1666896662","text":"You and Nearby Allies have # to # added Fire Damage per Red Socket","type":"explicit"},{"id":"explicit.stat_315697256","text":"1 Added Passive Skill is Skullbreaker","type":"explicit"},{"id":"explicit.stat_2057712935","text":"Modifiers to number of Projectiles instead apply\nto the number of targets Projectiles Split towards","type":"explicit"},{"id":"explicit.stat_1722480396","text":"1 Added Passive Skill is No Witnesses","type":"explicit"},{"id":"explicit.stat_1224928411","text":"Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Spell Damage at #% of its value","type":"explicit"},{"id":"explicit.stat_833719670","text":"Adds # to # Fire Damage to Spells while no Life is Reserved","type":"explicit"},{"id":"explicit.stat_3774108776","text":"#% increased Movement Speed per Power Charge","type":"explicit"},{"id":"explicit.stat_2947215268","text":"#% increased Damage during any Flask Effect","type":"explicit"},{"id":"explicit.stat_4144221848","text":"#% increased Life Recovery Rate per 10 Strength on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_1101403182","text":"#% reduced Damage taken from Damage Over Time","type":"explicit"},{"id":"explicit.stat_663610248","text":"Tormented Spirits have #% increased Duration","type":"explicit"},{"id":"explicit.stat_2894567787","text":"Spreads Tar when you Block","type":"explicit"},{"id":"explicit.stat_987588151","text":"#% increased Attack and Cast Speed per Power Charge","type":"explicit"},{"id":"explicit.stat_1037449707","text":"Strongboxes are Magic","type":"explicit"},{"id":"explicit.stat_2169345147","text":"1 Added Passive Skill is Quick and Deadly","type":"explicit"},{"id":"explicit.stat_725896422","text":"Socketed Gems are Supported by Level 10 Spell Echo","type":"explicit"},{"id":"explicit.stat_4072582319","text":"Warbands in this Area have an additional Member","type":"explicit"},{"id":"explicit.stat_2962051214","text":"An additional Currency Item drops when the first Invasion Boss is slain","type":"explicit"},{"id":"explicit.stat_810166817","text":"Trigger Level # Elemental Warding on Melee Hit while Cursed","type":"explicit"},{"id":"explicit.stat_3547189490","text":"Nearby Enemies grant #% increased Flask Charges","type":"explicit"},{"id":"explicit.stat_2144634814","text":"1 Added Passive Skill is Eternal Suffering","type":"explicit"},{"id":"explicit.stat_3916980068","text":"#% increased Maximum Energy Shield for each Corrupted Item Equipped","type":"explicit"},{"id":"explicit.stat_4169430079","text":"#% increased Maximum Life for each Corrupted Item Equipped","type":"explicit"},{"id":"explicit.stat_3100523498","text":"#% to all Resistances for each Corrupted Item Equipped","type":"explicit"},{"id":"explicit.stat_2489070122","text":"Has an additional Implicit Mod","type":"explicit"},{"id":"explicit.stat_1092546321","text":"#% increased Recovery rate of Life and Energy Shield","type":"explicit"},{"id":"explicit.stat_807450540","text":"#% of Damage dealt by your Mines is Leeched to you as Life","type":"explicit"},{"id":"explicit.stat_2854183975","text":"Socketed Gems are Supported by Level # Cluster Trap","type":"explicit"},{"id":"explicit.stat_728246008","text":"Nova Spells deal 30% less Damage to Players\nNova Spells Cast at the targeted location instead of around you","type":"explicit"},{"id":"explicit.stat_2299389484","text":"Area contains an additional Perandus Coffer","type":"explicit"},{"id":"explicit.stat_3387914367","text":"Area contains a Bearers of the Guardian Bloodline Pack","type":"explicit"},{"id":"explicit.stat_2576546039","text":"Players have Onslaught while using Flasks","type":"explicit"},{"id":"explicit.stat_3279574030","text":"Grants Level # Illusory Warp Skill","type":"explicit"},{"id":"explicit.stat_3993957711","text":"1 Added Passive Skill is Sleepless Sentries","type":"explicit"},{"id":"explicit.stat_1756017808","text":"You have Crimson Dance if you have dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_660404777","text":"#% increased Evasion Rating per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_3535403838","text":"Perandus Chests have #% more Rarity of Items Dropped","type":"explicit"},{"id":"explicit.stat_1849042097","text":"Added Small Passive Skills also grant: #% increased Attack and Cast Speed with Fire Skills","type":"explicit"},{"id":"explicit.stat_2013799819","text":"#% increased Maximum total Recovery per second from Energy Shield Leech","type":"explicit"},{"id":"explicit.stat_1532770406","text":"Perandus Chests have #% more Quantity of Items Dropped","type":"explicit"},{"id":"explicit.stat_3551025193","text":"Chance to Block Spell Damage is Unlucky","type":"explicit"},{"id":"explicit.stat_3530865840","text":"Lose a Power Charge each second if you have not Detonated Mines Recently","type":"explicit"},{"id":"explicit.stat_1061631617","text":"#% Chance to Block Attack Damage per 50 Strength","type":"explicit"},{"id":"explicit.stat_604671218","text":"#% increased Recovery rate of Life and Energy Shield per Power Charge","type":"explicit"},{"id":"explicit.stat_3045897926","text":"Players take #% reduced Damage from Monsters from Beyond","type":"explicit"},{"id":"explicit.stat_600723636","text":"Rogue Exiles drop # additional Currency Items","type":"explicit"},{"id":"explicit.stat_2449392400","text":"1 Added Passive Skill is Born of Chaos","type":"explicit"},{"id":"explicit.stat_1483753325","text":"#% increased Attack and Cast Speed if you've Hit an Enemy Recently","type":"explicit"},{"id":"explicit.stat_1282689888","text":"Players have #% chance to Dodge Spell Hits","type":"explicit"},{"id":"explicit.stat_2834490860","text":"1 Added Passive Skill is Chilling Presence","type":"explicit"},{"id":"explicit.stat_1003608257","text":"#% increased Attack Speed if you haven't Cast Dash recently","type":"explicit"},{"id":"explicit.stat_2482927318","text":"Bow Attacks fire # additional Arrows if you haven't Cast Dash recently","type":"explicit"},{"id":"explicit.stat_2653164718","text":"Rogue Exiles each have a Rogue Exile ally","type":"explicit"},{"id":"explicit.stat_3563824294","text":"Players have a #% chance to gain Onslaught on Kill For 4 seconds","type":"explicit"},{"id":"explicit.stat_2668070396","text":"Trigger Level # Shock Ground when Hit","type":"explicit"},{"id":"explicit.stat_1416455556","text":"Players have #% increased Movement Speed","type":"explicit"},{"id":"explicit.stat_2055715585","text":"1 Added Passive Skill is Lord of Drought","type":"explicit"},{"id":"explicit.stat_3875792669","text":"1 Added Passive Skill is Molten One's Mark","type":"explicit"},{"id":"explicit.stat_4143730600","text":"Rogue Exiles drop an additional Jewel","type":"explicit"},{"id":"explicit.stat_4179663748","text":"#% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy","type":"explicit"},{"id":"explicit.stat_2130441002","text":"Area contains an Uul-Netol Breach","type":"explicit"},{"id":"explicit.stat_3945147290","text":"#% chance to gain a Power Charge when you Block","type":"explicit"},{"id":"explicit.stat_2778228111","text":"Attack Skills have Added Lightning Damage equal to #% of maximum Mana","type":"explicit"},{"id":"explicit.stat_50129423","text":"1 Added Passive Skill is Exploit Weakness","type":"explicit"},{"id":"explicit.stat_2189382346","text":"#% increased Energy Shield per Power Charge","type":"explicit"},{"id":"explicit.stat_2071120096","text":"Your Offerings have #% increased Effect on you","type":"explicit"},{"id":"explicit.stat_1454648374","text":"#% to Damage over Time Multiplier for Bleeding from Critical Strikes","type":"explicit"},{"id":"explicit.stat_2119664154","text":"#% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges","type":"explicit"},{"id":"explicit.stat_1489997462","text":"Players have #% increased Rarity of Items Found per 15 Rampage Kills","type":"explicit"},{"id":"explicit.stat_3066073024","text":"Travel Skills other than Dash are Disabled","type":"explicit"},{"id":"explicit.stat_86122490","text":"Players have Blood Magic","type":"explicit"},{"id":"explicit.stat_1591995797","text":"1 Added Passive Skill is Gladiator's Fortitude","type":"explicit"},{"id":"explicit.stat_3726585224","text":"You and Nearby Allies have # to # added Lightning Damage per Blue Socket","type":"explicit"},{"id":"explicit.stat_3883691934","text":"Grants Level # Dash Skill","type":"explicit"},{"id":"explicit.stat_668145148","text":"Nearby Enemies have #% to all Resistances","type":"explicit"},{"id":"explicit.stat_3930242735","text":"1 Added Passive Skill is Confident Combatant","type":"explicit"},{"id":"explicit.stat_2659793306","text":"#% increased Movement Speed if you've Cast Dash recently","type":"explicit"},{"id":"explicit.stat_3232695173","text":"You and Nearby Allies have # to # added Chaos Damage per White Socket","type":"explicit"},{"id":"explicit.stat_1271391587","text":"Number of Perandus Coins dropped in this Area is Doubled","type":"explicit"},{"id":"explicit.stat_4290522695","text":"1 Added Passive Skill is Septic Spells","type":"explicit"},{"id":"explicit.stat_1939452467","text":"#% of Cold Damage Leeched as Energy Shield","type":"explicit"},{"id":"explicit.stat_4040152475","text":"Hits ignore Enemy Monster Fire Resistance while you are Ignited","type":"explicit"},{"id":"explicit.stat_1842038569","text":"#% increased Fishing Line Strength","type":"explicit"},{"id":"explicit.stat_3389184522","text":"Life and Mana Leech from Critical Strikes are instant","type":"explicit"},{"id":"explicit.stat_755881431","text":"1 Added Passive Skill is Winter Prowler","type":"explicit"},{"id":"explicit.stat_1859937391","text":"Socketed Gems gain #% of Physical Damage as extra Lightning Damage","type":"explicit"},{"id":"explicit.stat_180240697","text":"Minions have #% reduced Flask Charges used","type":"explicit"},{"id":"explicit.stat_2612056840","text":"#% increased Spell Damage per 16 Dexterity","type":"explicit"},{"id":"explicit.stat_2763732093","text":"1 Added Passive Skill is Genius","type":"explicit"},{"id":"explicit.stat_3072232736","text":"Determination has #% reduced Mana Reservation","type":"explicit"},{"id":"explicit.stat_176085824","text":"If you have Blocked Recently, you and nearby Allies Regenerate #% of Life per second","type":"explicit"},{"id":"explicit.stat_1945607273","text":"If this Area contains any Unique Monsters, one is Possessed","type":"explicit"},{"id":"explicit.stat_710805027","text":"#% chance to gain an Endurance, Frenzy or Power Charge when any\nof your Traps are Triggered by an Enemy","type":"explicit"},{"id":"explicit.stat_1550015622","text":"#% increased Spell Damage if you've dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_164032122","text":"1 Added Passive Skill is Powerful Ward","type":"explicit"},{"id":"explicit.stat_3689836025","text":"Perandus Monsters have a #% chance to drop Perandus Coins","type":"explicit"},{"id":"explicit.stat_2116250000","text":"#% increased Movement Speed per Endurance Charge","type":"explicit"},{"id":"explicit.stat_1243114410","text":"#% increased Critical Strike Chance for Spells if you've Killed Recently","type":"explicit"},{"id":"explicit.stat_200299748","text":"When a Bloodline Pack is Slain, it drops a Currency Item","type":"explicit"},{"id":"explicit.stat_1550221644","text":"#% reduced Fishing Pool Consumption","type":"explicit"},{"id":"explicit.stat_648923098","text":"The first Strongbox Opened in this Area is guarded by an additional Rare Monster","type":"explicit"},{"id":"explicit.stat_2305944553","text":"Shrines drop a Currency Item when used","type":"explicit"},{"id":"explicit.stat_2688118197","text":"#% increased Physical Damage per 10 Rage","type":"explicit"},{"id":"explicit.stat_995332031","text":"Socketed Gems are Supported by Level # Minion Speed","type":"explicit"},{"id":"explicit.stat_3848677307","text":"1 Added Passive Skill is Aerialist","type":"explicit"},{"id":"explicit.stat_1447080724","text":"#% increased Armour per Endurance Charge","type":"explicit"},{"id":"explicit.stat_1594755360","text":"Shrines grant a random additional Shrine Effect","type":"explicit"},{"id":"explicit.stat_2589977608","text":"Area contains a Rare Monster carrying a Tier 2 Talisman","type":"explicit"},{"id":"explicit.stat_3618888098","text":"#% increased Attack and Cast Speed per Endurance Charge","type":"explicit"},{"id":"explicit.stat_1834588299","text":"Gain # Mana when you hit a Taunted Enemy","type":"explicit"},{"id":"explicit.stat_719626796","text":"Strike Skills also target the previous location they were Used","type":"explicit"},{"id":"explicit.stat_2418322751","text":"#% more Attack Speed","type":"explicit"},{"id":"explicit.stat_3025453294","text":"1 Added Passive Skill is Self-Control","type":"explicit"},{"id":"explicit.stat_195090426","text":"Left ring slot: #% increased Mana Regeneration Rate","type":"explicit"},{"id":"explicit.stat_1436593527","text":"#% More Quantity of Items Dropped by Imprisoned Monsters","type":"explicit"},{"id":"explicit.stat_615595418","text":"Regenerate #% of Energy Shield per Second for\nevery 10 Intelligence on Allocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_2580101523","text":"You gain Onslaught for # seconds on Killing Taunted Enemies","type":"explicit"},{"id":"explicit.stat_78985352","text":"#% chance to Intimidate Enemies for 4 seconds on Hit","type":"explicit"},{"id":"explicit.stat_1866911844","text":"Socketed Gems are Supported by Level # Inspiration","type":"explicit"},{"id":"explicit.stat_2178803872","text":"Socketed Gems are supported by Level # Chance to Bleed","type":"explicit"},{"id":"explicit.stat_1073314277","text":"#% increased Spell Damage per 10 Strength","type":"explicit"},{"id":"explicit.stat_482341163","text":"Area contains Yama the White","type":"explicit"},{"id":"explicit.stat_3877259945","text":"Monsters with Silver Coins drop an additional Rare Item","type":"explicit"},{"id":"explicit.stat_2134207902","text":"Armour also applies to Lightning Damage taken from Hits","type":"explicit"},{"id":"explicit.stat_2156472123","text":"Perandus Chests are guarded by additional Rare monsters","type":"explicit"},{"id":"explicit.stat_1795260970","text":"With at least 40 Dexterity in Radius, Dual Strike has #% increased Attack\nSpeed while wielding a Claw","type":"explicit"},{"id":"explicit.stat_2353201291","text":"You have Unholy Might while you have no Energy Shield","type":"explicit"},{"id":"explicit.stat_2665149933","text":"You and Nearby Allies have # to # added Cold Damage per Green Socket","type":"explicit"},{"id":"explicit.stat_438351187","text":"#% chance for Kills to count twice for Rampage","type":"explicit"},{"id":"explicit.stat_329336318","text":"The first time a Player reaches # Rampage Kills in this Area, they will encounter a Powerful Monster","type":"explicit"},{"id":"explicit.stat_3130378100","text":"#% more Rarity of Items Dropped by Imprisoned Monsters","type":"explicit"},{"id":"explicit.stat_2250169390","text":"1 Added Passive Skill is Overlord","type":"explicit"},{"id":"explicit.stat_3726536628","text":"Gain # Life when you Taunt an Enemy","type":"explicit"},{"id":"explicit.stat_170497091","text":"#% increased Fishing Range","type":"explicit"},{"id":"explicit.stat_592020238","text":"#% increased Damage when on Full Life","type":"explicit"},{"id":"explicit.stat_2713233613","text":"#% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges","type":"explicit"},{"id":"explicit.stat_2344590267","text":"Vaal Skills used during effect do not apply Soul Gain Prevention","type":"explicit"},{"id":"explicit.stat_49998574","text":"Area contains a Gemcutter's Strongbox","type":"explicit"},{"id":"explicit.stat_1276918229","text":"#% reduced Lightning Damage taken","type":"explicit"},{"id":"explicit.stat_2054162825","text":"Karui Stone Hook","type":"explicit"},{"id":"explicit.stat_2228913626","text":"Skills used by Mines have #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_414379784","text":"#% increased Damage while you have no Energy Shield","type":"explicit"},{"id":"explicit.stat_4003821677","text":"Imprisoned Monsters take #% increased Damage","type":"explicit"},{"id":"explicit.stat_712621072","text":"Imprisoned Monsters have #% reduced Action Speed","type":"explicit"},{"id":"explicit.stat_1504513372","text":"Skills Supported by Unleash have #% increased Seal gain frequency","type":"explicit"},{"id":"explicit.stat_438083873","text":"Vitality Reserves no Mana","type":"explicit"},{"id":"explicit.stat_2908391015","text":"Players deal #% increased Damage with Hits to Breach Monsters","type":"explicit"},{"id":"explicit.stat_1755438602","text":"Players take #% reduced Damage from Breach Monsters","type":"explicit"},{"id":"explicit.stat_4147528862","text":"Vaal Skills deal #% more Damage during Effect","type":"explicit"},{"id":"explicit.stat_2748763342","text":"Gains no Charges during effect of any Soul Ripper Flask","type":"explicit"},{"id":"explicit.stat_3266549586","text":"Rare Monsters have #% chance to drop a Rare Prismatic Ring","type":"explicit"},{"id":"explicit.stat_898094766","text":"Items dropped by Rogue Exiles are fully Linked","type":"explicit"},{"id":"explicit.stat_2250543633","text":"Clarity Reserves no Mana","type":"explicit"},{"id":"explicit.stat_3031766225","text":"Players take # Chaos Damage per second","type":"explicit"},{"id":"explicit.stat_382360671","text":"1 Added Passive Skill is Uncompromising","type":"explicit"},{"id":"explicit.stat_470688636","text":"Triggers Level 20 Spectral Spirits when Equipped","type":"explicit"},{"id":"explicit.stat_28821524","text":"Socketed Gems are Supported by Level # Intensify","type":"explicit"},{"id":"explicit.stat_607308532","text":"Strongboxes in Area have #% chance to contain an additional Vaal Orb","type":"explicit"},{"id":"explicit.stat_120895749","text":"# Life gained for each Ignited Enemy hit by your Attacks","type":"explicit"},{"id":"explicit.stat_1183247801","text":"Monsters with Silver Coins drop an additional Currency Item","type":"explicit"},{"id":"explicit.stat_117667746","text":"#% increased Mine Duration","type":"explicit"},{"id":"explicit.stat_637101875","text":"Monsters Fracture","type":"explicit"},{"id":"explicit.stat_1621470436","text":"#% chance to Cast Level 20 Fire Burst on Hit","type":"explicit"},{"id":"explicit.stat_2309624770","text":"When a Bloodline Pack is Slain, it drops a Rare Item","type":"explicit"},{"id":"explicit.stat_2760138143","text":"Regenerate # Mana per second if all Equipped Items are Corrupted","type":"explicit"},{"id":"explicit.stat_1662669872","text":"Trigger Level # Stalking Pustule on Kill","type":"explicit"},{"id":"explicit.stat_1102362593","text":"Life and Mana Leech are instant during effect","type":"explicit"},{"id":"explicit.stat_3190223614","text":"Rare Monsters drop an additional Rare Item","type":"explicit"},{"id":"explicit.stat_1260064327","text":"Players gain Onslaught for # seconds when they Kill a Rare Monster","type":"explicit"},{"id":"explicit.stat_1826480903","text":"Purity of Elements Reserves no Mana","type":"explicit"},{"id":"explicit.stat_4156715241","text":"Regenerate # Energy Shield per second if all Equipped items are Corrupted","type":"explicit"},{"id":"explicit.stat_2473016979","text":"Monsters near Shrines are Chilled","type":"explicit"},{"id":"explicit.stat_2266636761","text":"#% Chaos Resistance against Damage Over Time","type":"explicit"},{"id":"explicit.stat_3795004497","text":"Rogue Exiles each drop a Skill Gem with Quality","type":"explicit"},{"id":"explicit.stat_1471580517","text":"You can catch Exotic Fish","type":"explicit"},{"id":"explicit.stat_2047177714","text":"Items dropped by Rogue Exiles are Mirrored","type":"explicit"},{"id":"explicit.stat_1957711555","text":"#% chance to inflict Withered for 2 seconds on Hit","type":"explicit"},{"id":"explicit.stat_3916799917","text":"Gain #% of Cold Damage as Extra Chaos Damage per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_1731620212","text":"Cannot gain Life during effect","type":"explicit"},{"id":"explicit.stat_1363668533","text":"1 Added Passive Skill is Wall of Muscle","type":"explicit"},{"id":"explicit.stat_3884309250","text":"Area contains a Tormented Embezzler","type":"explicit"},{"id":"explicit.stat_2471600316","text":"Area contains a Keepers of the Trove Bloodline Pack","type":"explicit"},{"id":"explicit.stat_707887043","text":"#% increased Critical Strike Chance per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_2278589942","text":"Purity of Fire Reserves no Mana","type":"explicit"},{"id":"explicit.stat_3425934849","text":"Socketed Skills have #% increased Cast Speed","type":"explicit"},{"id":"explicit.stat_115109959","text":"Regenerate #% of Energy Shield per second while on Low Life","type":"explicit"},{"id":"explicit.stat_495713612","text":"#% increased Duration of Shrine Effects on Players","type":"explicit"},{"id":"explicit.stat_3961213398","text":"Regenerate #% of Life per second per Power Charge","type":"explicit"},{"id":"explicit.stat_3848992177","text":"#% increased Maximum total Recovery per second from Energy Shield Leech while affected by Zealotry","type":"explicit"},{"id":"explicit.stat_1698276268","text":"Projectiles that have Chained gain #% of Non-Chaos Damage as extra Chaos Damage","type":"explicit"},{"id":"explicit.stat_4169318921","text":"#% increased Movement Speed per 10 Dexterity on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_100820057","text":"+# to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_2148784747","text":"#% Chance to Block Attack Damage per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_776020689","text":"Loses all Charges when you enter a new area","type":"explicit"},{"id":"explicit.stat_261224780","text":"Monsters Possessed by Tormented Spirits take #% increased Damage","type":"explicit"},{"id":"explicit.stat_1324450398","text":"#% chance to gain Onslaught when you use a Flask","type":"explicit"},{"id":"explicit.stat_2996332612","text":"Essences found in this Area are a higher level","type":"explicit"},{"id":"explicit.stat_3115319277","text":"Gain #% of Lightning Damage as Extra Chaos Damage per Power Charge","type":"explicit"},{"id":"explicit.stat_3900181441","text":"Area contains an additional Magic Pack of Wealth","type":"explicit"},{"id":"explicit.stat_1655460656","text":"Gain Vaal Souls equal to Charges Consumed when used","type":"explicit"},{"id":"explicit.stat_1874553720","text":"#% reduced Chill Duration on you","type":"explicit"},{"id":"explicit.stat_3856468419","text":"Adds # to # Physical Damage to Attacks against Frozen Enemies","type":"explicit"},{"id":"explicit.stat_3986347319","text":"#% additional Physical Damage Reduction per Power Charge","type":"explicit"},{"id":"explicit.stat_2189891129","text":"Anger Reserves no Mana","type":"explicit"},{"id":"explicit.stat_2163273007","text":"#% chance to Dodge Attack Hits per Power Charge","type":"explicit"},{"id":"explicit.stat_2503479316","text":"Envy Reserves no Mana","type":"explicit"},{"id":"explicit.stat_604298782","text":"#% of Physical Attack Damage Leeched as Mana per Power Charge","type":"explicit"},{"id":"explicit.stat_3879236300","text":"Magic Monsters are Maimed","type":"explicit"},{"id":"explicit.stat_468681962","text":"Area contains a Tormented Vaal Cultist","type":"explicit"},{"id":"explicit.stat_3056215807","text":"Magic Monsters take #% increased Damage","type":"explicit"},{"id":"explicit.stat_1688834903","text":"Socketed Spells have #% reduced Mana Cost","type":"explicit"},{"id":"explicit.stat_1865987277","text":"Wrath Reserves no Mana","type":"explicit"},{"id":"explicit.stat_2856326982","text":"#% Chance to Block Attack Damage per Power Charge","type":"explicit"},{"id":"explicit.stat_1263158408","text":"Elemental Equilibrium","type":"explicit"},{"id":"explicit.stat_3072066782","text":"Players Regenerate #% of Life per second per 25 Rampage Kills","type":"explicit"},{"id":"explicit.stat_3426614534","text":"Consumes Maximum Charges to use","type":"explicit"},{"id":"explicit.stat_1077576866","text":"Area contains a Tormented Seditionist","type":"explicit"},{"id":"explicit.stat_1105638781","text":"Area contains an additional Perandus Jewellery Box","type":"explicit"},{"id":"explicit.stat_3574189159","text":"Elemental Overload","type":"explicit"},{"id":"explicit.stat_407139870","text":"# to Level of Socketed Trap Gems","type":"explicit"},{"id":"explicit.stat_326965591","text":"Iron Reflexes","type":"explicit"},{"id":"explicit.stat_3984519770","text":"Socketed Gems have #% chance to Ignite","type":"explicit"},{"id":"explicit.stat_1741242318","text":"Zealotry Reserves no Mana","type":"explicit"},{"id":"explicit.stat_1226049915","text":"#% additional Physical Damage Reduction per Frenzy Charge","type":"explicit"},{"id":"explicit.stat_3112480888","text":"Players gain #% chance to Dodge Attack Hits while under a Shrine Effect","type":"explicit"},{"id":"explicit.stat_992435560","text":"Hits against Nearby Enemies have 50% increased Critical Strike Chance","type":"explicit"},{"id":"explicit.stat_1109745356","text":"Gain #% of Fire Damage as Extra Chaos Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2388574377","text":"#% to maximum Chance to Block Spell Damage","type":"explicit"},{"id":"explicit.stat_2881124988","text":"Socketed Skills have #% increased Attack Speed","type":"explicit"},{"id":"explicit.stat_627339348","text":"Adds # to # Fire Damage to Attacks against Ignited Enemies","type":"explicit"},{"id":"explicit.stat_2606808909","text":"Arrow Dancing","type":"explicit"},{"id":"explicit.stat_3643076184","text":"Tempest Effects have #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_3884934810","text":"Perfect Agony","type":"explicit"},{"id":"explicit.stat_4203400545","text":"#% chance to gain Her Blessing for 3 seconds when you Ignite an Enemy","type":"explicit"},{"id":"explicit.stat_2327728343","text":"#% chance to Blind nearby Enemies when gaining Her Blessing","type":"explicit"},{"id":"explicit.stat_1093704472","text":"#% chance to Avoid being Frozen, Chilled or Ignited with Her Blessing","type":"explicit"},{"id":"explicit.stat_754005431","text":"Gain #% of Sword Physical Damage as Extra Fire Damage","type":"explicit"},{"id":"explicit.stat_478341845","text":"#% increased frequency of Tempest effects","type":"explicit"},{"id":"explicit.stat_2968804751","text":"#% increased Attack and Movement Speed with Her Blessing","type":"explicit"},{"id":"explicit.stat_464535071","text":"#% increased Trap and Mine Throwing Speed","type":"explicit"},{"id":"explicit.stat_2547511866","text":"#% increased Critical Strike Chance per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2269282877","text":"Socketed Gems are Supported by Level # Feeding Frenzy","type":"explicit"},{"id":"explicit.stat_2930404958","text":"Grace Reserves no Mana","type":"explicit"},{"id":"explicit.stat_729430714","text":"#% to Critical Strike Multiplier for Spells if you haven't Killed Recently","type":"explicit"},{"id":"explicit.stat_442509523","text":"Invasion Bosses are Duplicated","type":"explicit"},{"id":"explicit.stat_1622979279","text":"Purity of Ice Reserves no Mana","type":"explicit"},{"id":"explicit.stat_2355741828","text":"#% Chance to Block Attack Damage per Endurance Charge","type":"explicit"},{"id":"explicit.stat_1773553795","text":"Warbands in the Area have an additional Support Member","type":"explicit"},{"id":"explicit.stat_3708588508","text":"Discipline Reserves no Mana","type":"explicit"},{"id":"explicit.stat_237513297","text":"#% increased Evasion Rating if you've Cast Dash recently","type":"explicit"},{"id":"explicit.stat_3628993863","text":"Rare Monsters are Hindered, with #% reduced Movement Speed","type":"explicit"},{"id":"explicit.stat_1109343199","text":"Wicked Ward","type":"explicit"},{"id":"explicit.stat_787958710","text":"#% to Cold Damage over Time Multiplier while affected by Malevolence","type":"explicit"},{"id":"explicit.stat_3943945975","text":"Resolute Technique","type":"explicit"},{"id":"explicit.stat_321765853","text":"# Physical Damage taken from Hits","type":"explicit"},{"id":"explicit.stat_370321141","text":"Area contains a Chayula Breach","type":"explicit"},{"id":"explicit.stat_585622486","text":"Malevolence Reserves no Mana","type":"explicit"},{"id":"explicit.stat_300702212","text":"Crimson Dance","type":"explicit"},{"id":"explicit.stat_2308225900","text":"Purity of Lightning Reserves no Mana","type":"explicit"},{"id":"explicit.stat_2517911661","text":"A Strongbox in this Area is Corrupted","type":"explicit"},{"id":"explicit.stat_769468514","text":"#% to Damage over Time Multiplier for Bleeding per Rage while wielding an Axe","type":"explicit"},{"id":"explicit.stat_1893852470","text":"#% chance to Dodge Attack Hits per Endurance Charge","type":"explicit"},{"id":"explicit.stat_2449723897","text":"#% of Damage Leeched as Life for Skills used by Totems","type":"explicit"},{"id":"explicit.stat_1994121713","text":"#% to Damage over Time Multiplier per 10 Intelligence on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_2911866787","text":"Grants Level # Frostblink Skill","type":"explicit"},{"id":"explicit.stat_3941271999","text":"Frostblink has #% increased Duration","type":"explicit"},{"id":"explicit.stat_1391583476","text":"Hatred Reserves no Mana","type":"explicit"},{"id":"explicit.stat_2648570028","text":"Ancestral Bond","type":"explicit"},{"id":"explicit.stat_2244724505","text":"Area contains 3 additional Magic Packs which\nhave #% increased Attack, Cast and Movement Speed, and drop #% more items","type":"explicit"},{"id":"explicit.stat_1358697130","text":"Determination Reserves no Mana","type":"explicit"},{"id":"explicit.stat_1384838464","text":"Essences found in this Area are Corrupted","type":"explicit"},{"id":"explicit.stat_593279674","text":"#% of Damage against Frozen Enemies Leeched as Life","type":"explicit"},{"id":"explicit.stat_2257118425","text":"Vaal Pact","type":"explicit"},{"id":"explicit.stat_112201073","text":"#% of Damage against Shocked Enemies Leeched as Mana","type":"explicit"},{"id":"explicit.stat_3381731475","text":"Area contains an additional Fangjaw Talisman","type":"explicit"},{"id":"explicit.stat_359450079","text":"Socketed Gems are Supported by Level # Greater Multiple Projectiles","type":"explicit"},{"id":"explicit.stat_433293234","text":"Minion Instability","type":"explicit"},{"id":"explicit.stat_2257141320","text":"Vaal Skills deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_639595152","text":"Nearby Enemies take #% increased Elemental Damage","type":"explicit"},{"id":"explicit.indexable_support_90","text":"Socketed Gems are Supported by Level # Elemental Focus","type":"explicit"},{"id":"explicit.stat_1421267186","text":"Supreme Ego","type":"explicit"},{"id":"explicit.indexable_support_97","text":"Socketed Gems are Supported by Level # Controlled Destruction","type":"explicit"},{"id":"explicit.stat_2270693644","text":"Area contains an additional Clutching Talisman","type":"explicit"},{"id":"explicit.stat_279246355","text":"Area is inhabited by an additional Invasion Boss","type":"explicit"},{"id":"explicit.stat_761598374","text":"You can apply an additional Curse while at maximum Power Charges","type":"explicit"},{"id":"explicit.stat_1439347620","text":"#% increased Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius","type":"explicit"},{"id":"explicit.stat_1415399260","text":"Area is controlled by a Warband Boss","type":"explicit"},{"id":"explicit.indexable_support_69","text":"Socketed Gems are Supported by Level # Increased Area of Effect","type":"explicit"},{"id":"explicit.indexable_support_66","text":"Socketed Gems are Supported by Level # Increased Critical Strikes","type":"explicit"},{"id":"explicit.stat_3955574239","text":"Area contains an additional Perandus Treasury","type":"explicit"},{"id":"explicit.stat_751322171","text":"Haste Reserves no Mana","type":"explicit"},{"id":"explicit.stat_4048158159","text":"The first time a Player reaches # Rampage Kills in this Area, 6 Currency Items will drop","type":"explicit"},{"id":"explicit.stat_3628411738","text":"Warbands in the Area have an additional Elite Member","type":"explicit"},{"id":"explicit.indexable_support_98","text":"Socketed Gems are Supported by Level # Concentrated Effect","type":"explicit"},{"id":"explicit.indexable_support_30","text":"Socketed Gems are Supported by Level # Power Charge On Critical","type":"explicit"},{"id":"explicit.indexable_support_42","text":"Socketed Gems are Supported by Level # Spell Echo","type":"explicit"},{"id":"explicit.stat_4080245957","text":"Runebinder","type":"explicit"},{"id":"explicit.indexable_support_41","text":"Socketed Gems are Supported by Level # Multistrike","type":"explicit"},{"id":"explicit.stat_881914531","text":"#% chance to gain a Frenzy Charge when Hit","type":"explicit"},{"id":"explicit.indexable_support_70","text":"Socketed Gems are Supported by Level # Impale","type":"explicit"},{"id":"explicit.stat_3554614456","text":"Pride Reserves no Mana","type":"explicit"},{"id":"explicit.indexable_support_127","text":"Socketed Gems are Supported by Level # Added Cold Damage","type":"explicit"},{"id":"explicit.stat_341698555","text":"At least one Perandus Chest is guarded by a Unique Monster","type":"explicit"},{"id":"explicit.indexable_support_74","text":"Socketed Gems are Supported by Level # Hypothermia","type":"explicit"},{"id":"explicit.stat_1959271744","text":"Area is a Maze","type":"explicit"},{"id":"explicit.indexable_support_94","text":"Socketed Gems are Supported by Level # Deadly Ailments","type":"explicit"},{"id":"explicit.stat_511024200","text":"#% reduced Physical Damage taken over time","type":"explicit"},{"id":"explicit.indexable_support_108","text":"Socketed Gems are Supported by Level # Cast while Channelling","type":"explicit"},{"id":"explicit.stat_308309328","text":"#% chance to Recover 10% of Mana when you use a Skill","type":"explicit"},{"id":"explicit.stat_1441799693","text":"The Impaler","type":"explicit"},{"id":"explicit.indexable_support_46","text":"Socketed Gems are Supported by Level # Melee Physical Damage","type":"explicit"},{"id":"explicit.indexable_support_123","text":"Socketed Gems are Supported by Level # Arcane Surge","type":"explicit"},{"id":"explicit.indexable_support_16","text":"Socketed Gems are Supported by Level # Intensify","type":"explicit"},{"id":"explicit.indexable_support_114","text":"Socketed Gems are Supported by Level # Brutality","type":"explicit"},{"id":"explicit.indexable_support_32","text":"Socketed Gems are Supported by Level # Point Blank","type":"explicit"},{"id":"explicit.indexable_support_84","text":"Socketed Gems are Supported by Level # Faster Projectiles","type":"explicit"},{"id":"explicit.indexable_support_64","text":"Socketed Gems are Supported by Level # Minion Damage","type":"explicit"},{"id":"explicit.indexable_support_115","text":"Socketed Gems are Supported by Level # Bonechill","type":"explicit"},{"id":"explicit.indexable_support_23","text":"Socketed Gems are Supported by Level # Blastchain Mine","type":"explicit"},{"id":"explicit.stat_3592330380","text":"Cannot be Shocked or Ignited while moving","type":"explicit"},{"id":"explicit.stat_424026624","text":"Adds # to # Physical Damage against Poisoned Enemies","type":"explicit"},{"id":"explicit.indexable_support_18","text":"Socketed Gems are Supported by Level # Slower Projectiles","type":"explicit"},{"id":"explicit.stat_663447087","text":"Items dropped by Rogue Exiles are Corrupted","type":"explicit"},{"id":"explicit.indexable_support_62","text":"Socketed Gems are Supported by Level # Minion Speed","type":"explicit"},{"id":"explicit.indexable_support_51","text":"Socketed Gems are Supported by Level # Lightning Penetration","type":"explicit"},{"id":"explicit.indexable_support_130","text":"Socketed Gems are Supported by Level # Swiftbrand","type":"explicit"},{"id":"explicit.indexable_support_35","text":"Socketed Gems are Supported by Level # Vicious Projectiles","type":"explicit"},{"id":"explicit.indexable_support_13","text":"Socketed Gems are Supported by Level # Infused Channelling","type":"explicit"},{"id":"explicit.indexable_support_126","text":"Socketed Gems are Supported by Level # Added Fire Damage","type":"explicit"},{"id":"explicit.indexable_support_92","text":"Socketed Gems are Supported by Level # Decay","type":"explicit"},{"id":"explicit.indexable_support_80","text":"Socketed Gems are Supported by Level # Fork","type":"explicit"},{"id":"explicit.indexable_support_26","text":"Socketed Gems are Supported by Level # Swift Affliction","type":"explicit"},{"id":"explicit.indexable_support_28","text":"Socketed Gems are Supported by Level # Rage","type":"explicit"},{"id":"explicit.indexable_support_93","text":"Socketed Gems are Supported by Level # Predator","type":"explicit"},{"id":"explicit.indexable_support_50","text":"Socketed Gems are Supported by Level # Maim","type":"explicit"},{"id":"explicit.indexable_support_89","text":"Socketed Gems are Supported by Level # Elemental Proliferation","type":"explicit"},{"id":"explicit.indexable_support_34","text":"Socketed Gems are Supported by Level # Physical to Lightning","type":"explicit"},{"id":"explicit.indexable_support_47","text":"Socketed Gems are Supported by Level # Damage on Full Life","type":"explicit"},{"id":"explicit.indexable_support_95","text":"Socketed Gems are Supported by Level # Curse On Hit","type":"explicit"},{"id":"explicit.indexable_support_76","text":"Socketed Gems are Supported by Level # Elemental Damage with Attacks","type":"explicit"},{"id":"explicit.indexable_support_96","text":"Socketed Gems are Supported by Level # Culling Strike","type":"explicit"},{"id":"explicit.indexable_support_55","text":"Socketed Gems are Supported by Level # Lesser Multiple Projectiles","type":"explicit"},{"id":"explicit.stat_1876857497","text":"You have Mind over Matter while at maximum Power Charges","type":"explicit"},{"id":"explicit.indexable_support_85","text":"Socketed Gems are Supported by Level # Faster Casting","type":"explicit"},{"id":"explicit.indexable_support_128","text":"Socketed Gems are Supported by Level # Added Chaos Damage","type":"explicit"},{"id":"explicit.stat_588560583","text":"Regenerate #% of Energy Shield per second if you've Hit an Enemy Recently","type":"explicit"},{"id":"explicit.indexable_support_60","text":"Socketed Gems are Supported by Level # Innervate","type":"explicit"},{"id":"explicit.indexable_support_82","text":"Socketed Gems are Supported by Level # Fire Penetration","type":"explicit"},{"id":"explicit.stat_2408544213","text":"#% chance to Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges","type":"explicit"},{"id":"explicit.indexable_support_104","text":"Socketed Gems are Supported by Level # Withering Touch","type":"explicit"},{"id":"explicit.indexable_support_10","text":"Socketed Gems are Supported by Level # Summon Phantasm","type":"explicit"},{"id":"explicit.indexable_support_129","text":"Socketed Gems are Supported by Level # Fist of War","type":"explicit"},{"id":"explicit.indexable_support_43","text":"Socketed Gems are Supported by Level # Mirage Archer","type":"explicit"},{"id":"explicit.indexable_support_11","text":"Socketed Gems are Supported by Level # Elemental Army","type":"explicit"},{"id":"explicit.indexable_support_75","text":"Socketed Gems are Supported by Level # Greater Volley","type":"explicit"},{"id":"explicit.indexable_support_83","text":"Socketed Gems are Supported by Level # Feeding Frenzy","type":"explicit"},{"id":"explicit.stat_1012100113","text":"Area is #% larger","type":"explicit"},{"id":"explicit.stat_1308467455","text":"Eternal Youth","type":"explicit"},{"id":"explicit.indexable_support_39","text":"Socketed Gems are Supported by Level # Multiple Traps","type":"explicit"},{"id":"explicit.indexable_support_3","text":"Socketed Gems are Supported by Level # Vile Toxins","type":"explicit"},{"id":"explicit.indexable_support_2","text":"Socketed Gems are Supported by Level # Void Manipulation","type":"explicit"},{"id":"explicit.indexable_support_7","text":"Socketed Gems are Supported by Level # Trap and Mine Damage","type":"explicit"},{"id":"explicit.indexable_support_37","text":"Socketed Gems are Supported by Level # Onslaught","type":"explicit"},{"id":"explicit.indexable_support_121","text":"Socketed Gems are Supported by Level # Arrow Nova","type":"explicit"},{"id":"explicit.indexable_support_17","text":"Socketed Gems are Supported by Level # Spell Cascade","type":"explicit"},{"id":"explicit.indexable_support_71","text":"Socketed Gems are Supported by Level # Immolate","type":"explicit"},{"id":"explicit.indexable_support_29","text":"Socketed Gems are Supported by Level # Pulverise","type":"explicit"},{"id":"explicit.indexable_support_99","text":"Socketed Gems are Supported by Level # Cold to Fire","type":"explicit"},{"id":"explicit.stat_3355479537","text":"#% chance to create Shocked Ground when Hit","type":"explicit"},{"id":"explicit.indexable_support_91","text":"Socketed Gems are Supported by Level # Efficacy","type":"explicit"},{"id":"explicit.indexable_support_38","text":"Socketed Gems are Supported by Level # Nightblade","type":"explicit"},{"id":"explicit.indexable_support_56","text":"Socketed Gems are Supported by Level # Knockback","type":"explicit"},{"id":"explicit.indexable_support_61","text":"Socketed Gems are Supported by Level # Infernal Legion","type":"explicit"},{"id":"explicit.indexable_support_49","text":"Socketed Gems are Supported by Level # Mana Leech","type":"explicit"},{"id":"explicit.indexable_support_101","text":"Socketed Gems are Supported by Level # Cluster Traps","type":"explicit"},{"id":"explicit.stat_3049760680","text":"#% chance to gain Onslaught for 3 seconds when Hit","type":"explicit"},{"id":"explicit.indexable_support_58","text":"Socketed Gems are Supported by Level # Iron Will","type":"explicit"},{"id":"explicit.indexable_support_25","text":"Socketed Gems are Supported by Level # Less Duration","type":"explicit"},{"id":"explicit.indexable_support_110","text":"Socketed Gems are Supported by Level # Cast on Melee Kill","type":"explicit"},{"id":"explicit.indexable_support_65","text":"Socketed Gems are Supported by Level # Increased Duration","type":"explicit"},{"id":"explicit.indexable_support_45","text":"Socketed Gems are Supported by Level # Melee Splash","type":"explicit"},{"id":"explicit.stat_571003610","text":"Area contains an Arcanist's Strongbox","type":"explicit"},{"id":"explicit.indexable_support_1","text":"Socketed Gems are Supported by Level # Greater Multiple Projectiles","type":"explicit"},{"id":"explicit.indexable_support_117","text":"Socketed Gems are Supported by Level # Bloodlust","type":"explicit"},{"id":"explicit.indexable_support_31","text":"Socketed Gems are Supported by Level # Poison","type":"explicit"},{"id":"explicit.stat_445988468","text":"Area contains an Essence of Hysteria","type":"explicit"},{"id":"explicit.indexable_support_54","text":"Socketed Gems are Supported by Level # Lesser Poison","type":"explicit"},{"id":"explicit.indexable_support_124","text":"Socketed Gems are Supported by Level # Additional Accuracy","type":"explicit"},{"id":"explicit.indexable_support_87","text":"Socketed Gems are Supported by Level # Energy Leech","type":"explicit"},{"id":"explicit.stat_4170338365","text":"Wind Dancer","type":"explicit"},{"id":"explicit.stat_2935548106","text":"# to Evasion Rating if Hit an Enemy Recently","type":"explicit"},{"id":"explicit.indexable_support_8","text":"Socketed Gems are Supported by Level # Trap","type":"explicit"},{"id":"explicit.indexable_support_77","text":"Socketed Gems are Supported by Level # Generosity","type":"explicit"},{"id":"explicit.indexable_support_120","text":"Socketed Gems are Supported by Level # Barrage","type":"explicit"},{"id":"explicit.indexable_support_72","text":"Socketed Gems are Supported by Level # Ignite Proliferation","type":"explicit"},{"id":"explicit.indexable_support_122","text":"Socketed Gems are Supported by Level # Archmage","type":"explicit"},{"id":"explicit.stat_1314418188","text":"You have Vaal Pact while at maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_11106713","text":"#% of Spell Damage Leeched as Energy Shield","type":"explicit"},{"id":"explicit.indexable_support_67","text":"Socketed Gems are Supported by Level # Increased Critical Damage","type":"explicit"},{"id":"explicit.indexable_support_44","text":"Socketed Gems are Supported by Level # Minefield","type":"explicit"},{"id":"explicit.stat_488900289","text":"Breaches contain a Breachlord's Clasped Hand","type":"explicit"},{"id":"explicit.indexable_support_88","text":"Socketed Gems are Supported by Level # Endurance Charge on Melee Stun","type":"explicit"},{"id":"explicit.indexable_support_78","text":"Socketed Gems are Supported by Level # Charged Traps","type":"explicit"},{"id":"explicit.stat_1243613350","text":"Create Profane Ground instead of Consecrated Ground","type":"explicit"},{"id":"explicit.stat_514705332","text":"Socketed Gems are Supported by Level # Elemental Army Support","type":"explicit"},{"id":"explicit.indexable_support_36","text":"Socketed Gems are Supported by Level # Volley","type":"explicit"},{"id":"explicit.indexable_support_109","text":"Socketed Gems are Supported by Level # Cast when Stunned","type":"explicit"},{"id":"explicit.indexable_support_118","text":"Socketed Gems are Supported by Level # Blind","type":"explicit"},{"id":"explicit.stat_1311723478","text":"Ignore all Movement Penalties from Armour","type":"explicit"},{"id":"explicit.stat_3561676020","text":"Socketed Gems are Supported by Level 10 Intensify","type":"explicit"},{"id":"explicit.stat_598809739","text":"Monsters grant #% increased Experience","type":"explicit"},{"id":"explicit.stat_1990354706","text":"You have Iron Reflexes while at maximum Frenzy Charges","type":"explicit"},{"id":"explicit.indexable_support_119","text":"Socketed Gems are Supported by Level # Blasphemy","type":"explicit"},{"id":"explicit.stat_3909654181","text":"Monsters have #% increased Attack, Cast and Movement Speed","type":"explicit"},{"id":"explicit.indexable_support_57","text":"Socketed Gems are Supported by Level # Item Rarity","type":"explicit"},{"id":"explicit.indexable_support_27","text":"Socketed Gems are Supported by Level # Ballista Totem","type":"explicit"},{"id":"explicit.indexable_support_81","text":"Socketed Gems are Supported by Level # Chance to Flee","type":"explicit"},{"id":"explicit.stat_3581578643","text":"Socketed Gems are Supported by Level # Empower","type":"explicit"},{"id":"explicit.indexable_support_22","text":"Socketed Gems are Supported by Level # High-Impact Mine","type":"explicit"},{"id":"explicit.stat_3371432622","text":"#% chance to gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges","type":"explicit"},{"id":"explicit.stat_1386808918","text":"Breaches each contain a Breachlord","type":"explicit"},{"id":"explicit.stat_2877370216","text":"#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges","type":"explicit"},{"id":"explicit.stat_1519665289","text":"Projectiles from Socketed Gems Fork","type":"explicit"},{"id":"explicit.stat_2368149582","text":"# to Armour if you've Hit an Enemy Recently","type":"explicit"},{"id":"explicit.stat_3425526049","text":"Socketed Gems are Supported by Level 10 Controlled Destruction","type":"explicit"},{"id":"explicit.stat_2960683632","text":"#% reduced Chaos Damage taken","type":"explicit"},{"id":"explicit.indexable_support_9","text":"Socketed Gems are Supported by Level # Swift Assembly","type":"explicit"},{"id":"explicit.stat_813119588","text":"#% chance to Gain Arcane Surge on Hit with Spells while at maximum Power Charges","type":"explicit"},{"id":"explicit.indexable_support_111","text":"Socketed Gems are Supported by Level # Cast on Death","type":"explicit"},{"id":"explicit.stat_684268017","text":"Warcry Skills' Cooldown Time is 4 seconds","type":"explicit"},{"id":"explicit.stat_2004028089","text":"Items dropped by Invasion Bosses are fully Linked","type":"explicit"},{"id":"explicit.stat_301625329","text":"#% increased Rarity of Items found during any Flask Effect","type":"explicit"},{"id":"explicit.stat_1866583932","text":"Socketed Gems are Supported by Level # Void Manipulation","type":"explicit"},{"id":"explicit.indexable_support_103","text":"Socketed Gems are Supported by Level # Charged Mines","type":"explicit"},{"id":"explicit.stat_2602865453","text":"Regenerate #% of Mana per second if you've Hit an Enemy Recently","type":"explicit"},{"id":"explicit.stat_444117960","text":"Items dropped by Invasion Bosses have an additional Socket","type":"explicit"},{"id":"explicit.stat_3577248251","text":"You and your Minions take #% reduced Reflected Damage","type":"explicit"},{"id":"explicit.stat_899928542","text":"Invasion Bosses drop an additional Vaal Orb","type":"explicit"},{"id":"explicit.stat_2530071726","text":"Area contains an additional Three Rat Talisman","type":"explicit"},{"id":"explicit.stat_2693266036","text":"#% additional Physical Damage Reduction during any Flask Effect","type":"explicit"},{"id":"explicit.stat_3780437763","text":"You cannot be Stunned while at maximum Endurance Charges","type":"explicit"},{"id":"explicit.indexable_support_63","text":"Socketed Gems are Supported by Level # Minion Life","type":"explicit"},{"id":"explicit.stat_1636220212","text":"Socketed Gems are Supported by Level # Swift Affliction","type":"explicit"},{"id":"explicit.stat_1135493957","text":"Socketed Gems are Supported by Level # Culling Strike","type":"explicit"},{"id":"explicit.stat_3079007202","text":"#% chance to Trigger a Socketed Spell when you Use a Skill","type":"explicit"},{"id":"explicit.stat_406887685","text":"# to Maximum Rage while wielding a Sword","type":"explicit"},{"id":"explicit.indexable_support_12","text":"Socketed Gems are Supported by Level # Stun","type":"explicit"},{"id":"explicit.stat_88817332","text":"#% increased Global Evasion Rating when on Full Life","type":"explicit"},{"id":"explicit.indexable_support_19","text":"Socketed Gems are Supported by Level # Shockwave","type":"explicit"},{"id":"explicit.stat_3057529096","text":"Area contains a Rare Monster with Inner Treasure","type":"explicit"},{"id":"explicit.stat_3846810663","text":"#% reduced Reflected Damage taken","type":"explicit"},{"id":"explicit.stat_1928796626","text":"A Beyond Unique drops when the first Unique Monster from Beyond is slain","type":"explicit"},{"id":"explicit.stat_3868073741","text":"Imbalanced Guard","type":"explicit"},{"id":"explicit.stat_2937093415","text":"Enemies Taunted by your Warcries have #% chance to Explode on death, dealing 8% of their maximum Life as Chaos Damage","type":"explicit"},{"id":"explicit.stat_1390113017","text":"Reward Room Monsters deal #% increased damage","type":"explicit"},{"id":"explicit.stat_628032624","text":"Cannot be Chilled or Frozen while moving","type":"explicit"},{"id":"explicit.stat_194037675","text":"Area contains a Unique Strongbox","type":"explicit"},{"id":"explicit.stat_3595254837","text":"Drops Burning Ground while moving, dealing # Fire Damage per second for # second","type":"explicit"},{"id":"explicit.stat_1521863824","text":"#% increased Movement speed while on Burning, Chilled or Shocked ground","type":"explicit"},{"id":"explicit.stat_2959369472","text":"Grants Level # Vaal Impurity of Lightning Skill","type":"explicit"},{"id":"explicit.stat_2700934265","text":"Grants Level # Vaal Impurity of Fire Skill","type":"explicit"},{"id":"explicit.stat_643741006","text":"Area is inhabited by Bandits","type":"explicit"},{"id":"explicit.stat_4004160031","text":"#% increased time before Lockdown","type":"explicit"},{"id":"explicit.stat_3859593448","text":"#% reduced Elemental Damage Taken while stationary","type":"explicit"},{"id":"explicit.stat_703341733","text":"#% increased raising of Alert Level","type":"explicit"},{"id":"explicit.stat_1551563177","text":"Players are Cursed with Despair, with #% increased Effect","type":"explicit"},{"id":"explicit.stat_1828254451","text":"Socketed Gems are Supported by Level # Combustion","type":"explicit"},{"id":"explicit.stat_2978905446","text":"#% increased Job speed","type":"explicit"},{"id":"explicit.indexable_support_105","text":"Socketed Gems are Supported by Level # Combustion","type":"explicit"},{"id":"explicit.stat_1859333175","text":"Can have up to 3 Crafted Modifiers","type":"explicit"},{"id":"explicit.stat_388696990","text":"Socketed Gems are Supported by Level # Decay","type":"explicit"},{"id":"explicit.stat_873692616","text":"Guards take #% increased Damage","type":"explicit"},{"id":"explicit.stat_807186595","text":"Socketed Gems are Supported by Level # Multiple Totems","type":"explicit"},{"id":"explicit.stat_1669870438","text":"A Monster in this Area will summon Abaxoth when Slain","type":"explicit"},{"id":"explicit.stat_1300125165","text":"Grants Level # Vaal Impurity of Ice Skill","type":"explicit"},{"id":"explicit.stat_462691314","text":"The Agnostic","type":"explicit"},{"id":"explicit.stat_4048257027","text":"Socketed Gems are Supported by Level # Infused Channelling","type":"explicit"},{"id":"explicit.stat_2126431157","text":"Socketed Gems are Supported by Level # Damage On Full Life","type":"explicit"},{"id":"explicit.stat_4082662318","text":"Socketed Gems are Supported by Level # Predator","type":"explicit"},{"id":"explicit.stat_2433615566","text":"Socketed Gems are supported by Level # Pierce","type":"explicit"},{"id":"explicit.stat_1296614065","text":"#% increased Fish Bite Sensitivity","type":"explicit"},{"id":"explicit.indexable_support_6","text":"Socketed Gems are Supported by Level # Advanced Traps","type":"explicit"},{"id":"explicit.stat_1900098804","text":"Socketed Gems are Supported by Level # Impale","type":"explicit"},{"id":"explicit.indexable_support_24","text":"Socketed Gems are Supported by Level # Inspiration","type":"explicit"},{"id":"explicit.indexable_support_125","text":"Socketed Gems are Supported by Level # Added Lightning Damage","type":"explicit"},{"id":"explicit.stat_2592686757","text":"Life Flasks gain # Charge every 3 seconds","type":"explicit"},{"id":"explicit.stat_2264655303","text":"#% of Life Recovery from Flasks is applied to nearby Allies instead of You","type":"explicit"},{"id":"explicit.indexable_support_53","text":"Socketed Gems are Supported by Level # Life Gain on Hit","type":"explicit"},{"id":"explicit.indexable_support_113","text":"Socketed Gems are Supported by Level # Cast On Critical Strike","type":"explicit"},{"id":"explicit.indexable_support_100","text":"Socketed Gems are Supported by Level # Cold Penetration","type":"explicit"},{"id":"explicit.stat_2787931289","text":"Players have #% more Armour per 25% Alert Level","type":"explicit"},{"id":"explicit.stat_3155072742","text":"Socketed Gems are Supported by Level # Summon Phantasm","type":"explicit"},{"id":"explicit.indexable_support_14","text":"Socketed Gems are Supported by Level # Ancestral Call","type":"explicit"},{"id":"explicit.indexable_support_102","text":"Socketed Gems are Supported by Level # Close Combat","type":"explicit"},{"id":"explicit.stat_3623716321","text":"Adds # to # Fire Damage if you've Blocked Recently","type":"explicit"},{"id":"explicit.indexable_support_48","text":"Socketed Gems are Supported by Level # Meat Shield","type":"explicit"},{"id":"explicit.indexable_support_68","text":"Socketed Gems are Supported by Level # Burning Damage","type":"explicit"},{"id":"explicit.stat_1466172118","text":"Players have #% more Life Recovery Rate per 25% Alert Level","type":"explicit"},{"id":"explicit.stat_3294034100","text":"Area contains an additional Perandus Archive","type":"explicit"},{"id":"explicit.indexable_support_106","text":"Socketed Gems are Supported by Level # Chance to Bleed","type":"explicit"},{"id":"explicit.indexable_support_131","text":"Socketed Gems are Supported by Level # Urgent Orders","type":"explicit"},{"id":"explicit.stat_725880290","text":"#% chance to Impale Enemies on Hit with Attacks","type":"explicit"},{"id":"explicit.stat_3956623857","text":"Area contains an additional Unique Talisman","type":"explicit"},{"id":"explicit.indexable_support_112","text":"Socketed Gems are Supported by Level # Cast when Damage Taken","type":"explicit"},{"id":"explicit.indexable_support_86","text":"Socketed Gems are Supported by Level # Faster Attacks","type":"explicit"},{"id":"explicit.indexable_support_52","text":"Socketed Gems are Supported by Level # Life Leech","type":"explicit"},{"id":"explicit.indexable_support_15","text":"Socketed Gems are Supported by Level # Spell Totem","type":"explicit"},{"id":"explicit.indexable_support_20","text":"Socketed Gems are Supported by Level # Second Wind","type":"explicit"},{"id":"explicit.stat_2643665787","text":"Socketed Gems are Supported by Level # Chain","type":"explicit"},{"id":"explicit.stat_986616727","text":"Hexes on Slain Enemies are transferred to a nearby Enemy","type":"explicit"},{"id":"explicit.indexable_support_40","text":"Socketed Gems are Supported by Level # Multiple Totems","type":"explicit"},{"id":"explicit.stat_3327487371","text":"Socketed Gems are Supported by Level # Physical To Lightning","type":"explicit"},{"id":"explicit.stat_1535006826","text":"Guards add additional Alert Level on Death","type":"explicit"},{"id":"explicit.stat_3287477747","text":"Socketed Gems are Supported by Level # Withering Touch","type":"explicit"},{"id":"explicit.indexable_support_4","text":"Socketed Gems are Supported by Level # Unleash","type":"explicit"},{"id":"explicit.stat_411810300","text":"Area contains an additional Perandus Locker","type":"explicit"},{"id":"explicit.stat_4197398087","text":"Area contains a Cartographer's Strongbox","type":"explicit"},{"id":"explicit.indexable_support_33","text":"Socketed Gems are Supported by Level # Pierce","type":"explicit"},{"id":"explicit.stat_583277599","text":"Chill Nearby Enemies when you Block","type":"explicit"},{"id":"explicit.stat_1238382441","text":"Players have #% more Evasion per 25% Alert Level","type":"explicit"},{"id":"explicit.stat_2818653316","text":"With at least 40 Intelligence in Radius, Discharge deals #% more Damage","type":"explicit"},{"id":"explicit.stat_799443127","text":"Socketed Gems are Supported by Level # Energy Leech","type":"explicit"},{"id":"explicit.stat_3081816887","text":"#% increased Effect of Lightning Ailments","type":"explicit"},{"id":"explicit.stat_1213084913","text":"With at least 40 Intelligence in Radius, Discharge Cooldown is # ms","type":"explicit"},{"id":"explicit.stat_2174134106","text":"Warcries cannot Exert Travel Skills","type":"explicit"},{"id":"explicit.stat_2556436882","text":"Socketed Gems are Supported by Level # Enhance","type":"explicit"},{"id":"explicit.stat_2045330446","text":"With at least 40 Intelligence in Radius, Discharge has #% more Area of Effect","type":"explicit"},{"id":"explicit.stat_2697741965","text":"Socketed Gems are Supported by Level # Hextouch","type":"explicit"},{"id":"explicit.stat_751773204","text":"Players have #% more Energy Shield Recovery Rate per 25% Alert Level","type":"explicit"},{"id":"explicit.stat_953449033","text":"Players have #% more Mana Recovery Rate per 25% Alert Level","type":"explicit"},{"id":"explicit.stat_1342271987","text":"Reinforcements have #% increased Movement Speed","type":"explicit"},{"id":"explicit.stat_1843941387","text":"Reinforcements have #% increased Cast Speed","type":"explicit"},{"id":"explicit.stat_1484471543","text":"#% increased Duration of Lightning Ailments","type":"explicit"},{"id":"explicit.stat_1482194094","text":"With at least 40 Intelligence in Radius, Fireball has #% chance to inflict scorch","type":"explicit"},{"id":"explicit.stat_1339532482","text":"Reinforcements have #% increased Attack Speed","type":"explicit"},{"id":"explicit.stat_3827538724","text":"Socketed Gems are Supported by Level # Barrage","type":"explicit"},{"id":"explicit.stat_3393628375","text":"#% to Cold and Chaos Resistances","type":"explicit"},{"id":"explicit.stat_3395273920","text":"Reward Room Monsters take #% increased Damage","type":"explicit"},{"id":"explicit.stat_2551600084","text":"# to Level of Socketed AoE Gems","type":"explicit"},{"id":"explicit.stat_4056408881","text":"Reward Rooms have #% increased Monsters","type":"explicit"},{"id":"explicit.stat_553402472","text":"#% increased Total Heist Fee","type":"explicit"},{"id":"explicit.stat_2065361612","text":"Socketed Gems are Supported by Level # Enlighten","type":"explicit"},{"id":"explicit.stat_402499111","text":"Socketed Gems are Supported by Level # Second Wind","type":"explicit"},{"id":"explicit.stat_804508379","text":"Socketed Gems are Supported by Level # Bloodlust","type":"explicit"},{"id":"explicit.stat_1876637240","text":"Socketed Gems are Supported by Level # Intensify","type":"explicit"},{"id":"explicit.stat_379779554","text":"Reward Room Monsters deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_2379781920","text":"#% increased Elemental Damage if you've dealt a Critical Strike Recently","type":"explicit"},{"id":"explicit.stat_536929014","text":"#% to Critical Strike Multiplier if you've Shattered an Enemy Recently","type":"explicit"},{"id":"explicit.stat_2908886986","text":"#% chance to deal Double Damage while Focussed","type":"explicit"},{"id":"explicit.stat_2629058372","text":"#% increased raising of Alert Level from Killing Monsters","type":"explicit"},{"id":"explicit.stat_3898799092","text":"Lose all Power Charges when you Block","type":"explicit"},{"id":"explicit.stat_3356013982","text":"Socketed Gems are Supported by Level # Unleash","type":"explicit"},{"id":"explicit.stat_1482070333","text":"#% increased Elemental Damage per Power charge","type":"explicit"},{"id":"explicit.stat_1786672841","text":"Socketed Gems are Supported by Level # Awakened Elemental Damage With Attacks","type":"explicit"},{"id":"explicit.stat_689720069","text":"Socketed Gems are supported by Level # Stun","type":"explicit"},{"id":"explicit.indexable_support_73","text":"Socketed Gems are Supported by Level # Ice Bite","type":"explicit"},{"id":"explicit.stat_746798754","text":"Heist Chests have a #% chance to Duplicate contained Catalysts","type":"explicit"},{"id":"explicit.stat_1149326139","text":"Cannot roll Caster Modifiers","type":"explicit"},{"id":"explicit.stat_1526625193","text":"#% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges","type":"explicit"},{"id":"explicit.stat_1277035917","text":"Total Recovery per second from Life Leech is Doubled","type":"explicit"},{"id":"explicit.stat_2500803699","text":"#% increased raising of Alert Level from opening Chests","type":"explicit"},{"id":"explicit.stat_1099200124","text":"Gain a Power Charge every Second if you haven't lost Power Charges Recently","type":"explicit"},{"id":"explicit.stat_2201102274","text":"Socketed Gems are Supported by Level # Infernal Legion","type":"explicit"},{"id":"explicit.stat_2257592286","text":"#% increased Hiring Fee of Rogues","type":"explicit"},{"id":"explicit.stat_573223427","text":"#% chance to gain Arcane Surge when you Kill an Enemy","type":"explicit"},{"id":"explicit.stat_2249251344","text":"Socketed Gems are Supported by Level # Awakened Chain","type":"explicit"},{"id":"explicit.stat_1982436039","text":"Patrol Packs have #% increased chance to be replaced by an Elite Patrol Pack","type":"explicit"},{"id":"explicit.stat_2569717992","text":"Guards deal #% increased Damage","type":"explicit"},{"id":"explicit.stat_2625134410","text":"#% more Power Charge Duration","type":"explicit"},{"id":"explicit.stat_4089933397","text":"Socketed Gems are Supported by Level # Awakened Swift Affliction","type":"explicit"},{"id":"explicit.stat_1803865171","text":"Socketed Gems are Supported by Level # Awakened Fork","type":"explicit"},{"id":"explicit.stat_3239503729","text":"Socketed Gems are Supported by Level # Mirage Archer","type":"explicit"},{"id":"explicit.stat_3031766858","text":"Shock nearby Enemies for # Seconds when you Focus","type":"explicit"},{"id":"explicit.stat_2865731079","text":"#% to Critical Strike Multiplier if you've gained a Power Charge Recently","type":"explicit"},{"id":"explicit.stat_3313284037","text":"#% chance to Avoid being Interrupted","type":"explicit"},{"id":"explicit.stat_2175178647","text":"Heist Chests have a #% chance to Duplicate contained Essences","type":"explicit"},{"id":"explicit.stat_2421446548","text":"Channelling Skills have # to Total Mana Cost","type":"explicit"},{"id":"explicit.stat_3144910208","text":"Patrolling Monsters deal #% increased Damage","type":"explicit"},{"id":"explicit.indexable_support_116","text":"Socketed Gems are Supported by Level # Blood Magic","type":"explicit"},{"id":"explicit.stat_3652278215","text":"Socketed Gems are Supported by Level # Archmage","type":"explicit"},{"id":"explicit.stat_3465022881","text":"#% to Lightning and Chaos Resistances","type":"explicit"},{"id":"explicit.stat_2238019079","text":"Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby","type":"explicit"},{"id":"explicit.stat_3904501306","text":"Trigger Level # Poacher's Mark when you Hit a Rare or Unique Enemy","type":"explicit"},{"id":"explicit.stat_2049471530","text":"Trigger Level # Warlords's Mark when you Hit a Rare or Unique Enemy","type":"explicit"},{"id":"explicit.stat_109671187","text":"Call of Steel has #% increased Use Speed","type":"explicit"},{"id":"explicit.stat_4122424929","text":"Cannot roll Attack Modifiers","type":"explicit"},{"id":"explicit.stat_248646071","text":"Socketed Gems are Supported by Level # Item Quantity","type":"explicit"},{"id":"explicit.stat_1177358866","text":"#% increased Movement Speed if you haven't been Hit Recently","type":"explicit"},{"id":"explicit.stat_314741699","text":"#% increased Attack Speed while a Rare or Unique Enemy is Nearby","type":"explicit"},{"id":"explicit.stat_2233905349","text":"Heist Chests have a #% chance to Duplicate contained Oils","type":"explicit"},{"id":"explicit.stat_2032386732","text":"Socketed Gems are Supported by Level # Life Gain On Hit","type":"explicit"},{"id":"explicit.stat_3967122169","text":"Heist Chests have a #% chance to Duplicate contained Map Fragments","type":"explicit"},{"id":"explicit.stat_293465345","text":"The Ring's Cut increased by #%","type":"explicit"},{"id":"explicit.stat_3464137628","text":"Suffixes Cannot Be Changed","type":"explicit"},{"id":"explicit.stat_3072303874","text":"# Life gained for each Cursed Enemy hit by your Attacks","type":"explicit"},{"id":"explicit.stat_2879593163","text":"Call of Steel causes #% increased Reflected Damage","type":"explicit"},{"id":"explicit.stat_3841984913","text":"Gain # Fragile Regrowth each second ","type":"explicit"},{"id":"explicit.stat_2087996552","text":"# Mana gained for each Cursed Enemy hit by your Attacks","type":"explicit"},{"id":"explicit.stat_3324747104","text":"#% of Damage Leeched as Life while Focussed","type":"explicit"},{"id":"explicit.indexable_support_5","text":"Socketed Gems are Supported by Level # Unbound Ailments","type":"explicit"},{"id":"explicit.stat_2001747092","text":"#% increased Damage with Hits and Ailments against Marked Enemy","type":"explicit"},{"id":"explicit.stat_2062753054","text":"Socketed Gems are supported by Level # Fork","type":"explicit"},{"id":"explicit.stat_2022851697","text":"You have Vaal Pact while Focussed","type":"explicit"},{"id":"explicit.stat_3828613551","text":"#% to Quality of Socketed Gems","type":"explicit"},{"id":"explicit.stat_3708045494","text":"#% increased Damage with Hits against Enemies on Full Life","type":"explicit"},{"id":"explicit.stat_1793818220","text":"#% increased Effect of Cold Ailments","type":"explicit"},{"id":"explicit.stat_1104120660","text":"Your Mark transfers to another Enemy when Marked Enemy dies","type":"explicit"},{"id":"explicit.stat_1519474779","text":"#% increased Effect of Non-Damaging Ailments on you","type":"explicit"},{"id":"explicit.stat_1070888079","text":"Enemies Shocked by you have #% of Physical Damage they deal converted to Lightning","type":"explicit"},{"id":"explicit.stat_3609854472","text":"Impale Damage dealt to Enemies Impaled by you Overwhelms #% Physical Damage Reduction","type":"explicit"},{"id":"explicit.stat_2150694455","text":"You have Culling Strike against Cursed Enemies","type":"explicit"},{"id":"explicit.stat_4021476585","text":"Socketed Gems are Supported by Level # Swift Assembly","type":"explicit"},{"id":"explicit.stat_3702411606","text":"Patrol Packs take #% increased damage","type":"explicit"},{"id":"explicit.stat_816079058","text":"Players gain #% increased Flask Charges per 25% Alert Level","type":"explicit"},{"id":"explicit.stat_1572897579","text":"You have Onslaught during Soul Gain Prevention","type":"explicit"},{"id":"explicit.stat_3754129682","text":"Socketed Gems are Supported by Level # Point Blank","type":"explicit"},{"id":"explicit.stat_2121053002","text":"Heist Chests have a #% chance to Duplicate contained Blighted Maps and Catalysts","type":"explicit"},{"id":"explicit.stat_694651314","text":"Socketed Gems are Supported by Level # Close Combat","type":"explicit"},{"id":"explicit.indexable_support_59","text":"Socketed Gems are Supported by Level # Iron Grip","type":"explicit"},{"id":"explicit.stat_1980028507","text":"Socketed Gems are Supported by Level # Awakened Greater Multiple Projectiles","type":"explicit"},{"id":"explicit.stat_2333301609","text":"Socketed Gems are Supported by Level # Awakened Increased Area Of Effect","type":"explicit"},{"id":"explicit.stat_590557979","text":"Heist Chests have a #% chance to Duplicate contained Sextants","type":"explicit"},{"id":"explicit.stat_4189061307","text":"Mark Skills have #% increased Cast Speed","type":"explicit"},{"id":"explicit.stat_2590156965","text":"#% chance to Dodge Attack Hits while Focussed","type":"explicit"},{"id":"explicit.indexable_support_79","text":"Socketed Gems are Supported by Level # Fortify","type":"explicit"},{"id":"explicit.stat_103909236","text":"Socketed Gems are Supported by Level # Deadly Ailments","type":"explicit"},{"id":"explicit.stat_3992439283","text":"#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby","type":"explicit"},{"id":"explicit.stat_3640956958","text":"Projectiles Pierce 2 additional Targets","type":"explicit"},{"id":"explicit.stat_2067717830","text":"Call of Steel deals Reflected Damage with #% increased Area of Effect","type":"explicit"},{"id":"explicit.stat_2116100988","text":"Socketed Gems are Supported by Level # High-Impact Mine","type":"explicit"},{"id":"explicit.stat_1870262721","text":"Heist Chests have a #% chance to Duplicate contained Delirium Orbs and Splinters","type":"explicit"},{"id":"explicit.stat_63302094","text":"Heist Chests have a #% chance to Duplicate contained Divination Cards","type":"explicit"},{"id":"explicit.stat_4216809421","text":"Heist Chests have a #% chance to Duplicate contained Scarabs","type":"explicit"},{"id":"explicit.stat_1331336999","text":"Socketed Gems are Supported by Level # Arrow Nova","type":"explicit"},{"id":"explicit.stat_339131601","text":"Socketed Gems are Supported by Level # Awakened Added Fire Damage","type":"explicit"},{"id":"explicit.stat_2100048639","text":"Socketed Gems are Supported by Level # Awakened Minion Damage","type":"explicit"},{"id":"explicit.stat_2062792091","text":"#% chance to Trigger Socketed Spells when you Focus","type":"explicit"},{"id":"explicit.stat_3924520095","text":"Trigger Level # Assassin's Mark when you Hit a Rare or Unique Enemy","type":"explicit"},{"id":"explicit.stat_2462090973","text":"Heist Chests have a #% chance to Duplicate contained Jewels","type":"explicit"},{"id":"explicit.stat_2847917427","text":"#% increased Demolition speed","type":"explicit"},{"id":"explicit.indexable_support_107","text":"Socketed Gems are Supported by Level # Chain","type":"explicit"},{"id":"explicit.stat_479453859","text":"Socketed Gems are Supported by Level # Charged Traps","type":"explicit"},{"id":"explicit.stat_668504404","text":"Heist Chests have a #% chance to Duplicate contained Breach Splinters","type":"explicit"},{"id":"explicit.stat_1579578270","text":"#% increased Trap Disarmament speed","type":"explicit"},{"id":"explicit.stat_1272032962","text":"Enemies Ignited by you have #% of Physical Damage they deal converted to Fire","type":"explicit"},{"id":"explicit.stat_369650395","text":"Socketed Gems are Supported by Level # Rage","type":"explicit"},{"id":"explicit.stat_1046449631","text":"Socketed Gems are Supported by Level # Awakened Blasphemy","type":"explicit"},{"id":"explicit.stat_3312732077","text":"#% increased Lockpicking speed","type":"explicit"},{"id":"explicit.stat_2885763444","text":"Heist Chests have a #% chance to Duplicate contained Maps","type":"explicit"},{"id":"explicit.stat_2904116257","text":"#% increased Travel Fee","type":"explicit"},{"id":"explicit.indexable_support_21","text":"Socketed Gems are Supported by Level # Ruthless","type":"explicit"},{"id":"explicit.stat_1349659520","text":"Your Critical Strike Chance is Lucky while Focussed","type":"explicit"},{"id":"explicit.stat_145701647","text":"Heist Chests have a #% chance to Duplicate contained Legion Splinters","type":"explicit"},{"id":"explicit.stat_839556554","text":"Reward Room Monsters take #% increased damage","type":"explicit"},{"id":"explicit.stat_1583385065","text":"Non-Vaal Skills deal #% increased Damage during Soul Gain Prevention","type":"explicit"},{"id":"explicit.stat_2805586447","text":"Socketed Gems are Supported by Level # Minefield","type":"explicit"},{"id":"explicit.stat_3429304534","text":"Socketed Gems are Supported by Level # Awakened Added Lightning Damage","type":"explicit"},{"id":"explicit.stat_3909846940","text":"Item drops on Death if Equipped by an Animated Guardian","type":"explicit"},{"id":"explicit.stat_3610200044","text":"Socketed Gems are Supported by Level # Awakened Brutality","type":"explicit"},{"id":"explicit.stat_3267282390","text":"#% increased Effect of Fortify on you while Focussed","type":"explicit"},{"id":"explicit.stat_1544417021","text":"Eldritch Battery during Flask effect","type":"explicit"},{"id":"explicit.stat_511417258","text":"Socketed Gems are Supported by Level # Awakened Multistrike","type":"explicit"},{"id":"explicit.stat_1365328494","text":"Socketed Gems are Supported by Level # Charged Mines","type":"explicit"},{"id":"explicit.stat_2173069393","text":"Socketed Gems are Supported by Level # Awakened Melee Physical Damage","type":"explicit"},{"id":"explicit.stat_2253550081","text":"Socketed Gems are Supported by Level # Awakened Melee Splash","type":"explicit"},{"id":"explicit.stat_14664297","text":"Heist Chests have a #% chance to Duplicate contained Currency","type":"explicit"},{"id":"explicit.stat_378817135","text":"#% to Fire and Chaos Resistances","type":"explicit"},{"id":"explicit.stat_1966051190","text":"Socketed Gems are Supported by Level # Block Chance Reduction","type":"explicit"},{"id":"explicit.stat_3016436615","text":"Socketed Gems are Supported by Level # Multiple Traps","type":"explicit"},{"id":"explicit.stat_2316658489","text":"# to Armour and Evasion Rating","type":"explicit"},{"id":"explicit.stat_2628163981","text":"#% increased Attack and Cast Speed while Focussed","type":"explicit"},{"id":"explicit.stat_2861649515","text":"Socketed Gems are Supported by Level # Nightblade","type":"explicit"},{"id":"explicit.stat_2879723104","text":"Prefixes Cannot Be Changed","type":"explicit"},{"id":"explicit.stat_2509486489","text":"Socketed Gems are Supported by Level # Awakened Added Cold Damage","type":"explicit"}]},{"label":"Implicit","entries":[{"id":"implicit.stat_2974417149","text":"#% increased Spell Damage","type":"implicit"},{"id":"implicit.stat_587431675","text":"#% increased Global Critical Strike Chance","type":"implicit"},{"id":"implicit.stat_3299347043","text":"# to maximum Life","type":"implicit"},{"id":"implicit.stat_3489782002","text":"# to maximum Energy Shield","type":"implicit"},{"id":"implicit.stat_3917489142","text":"#% increased Rarity of Items found","type":"implicit"},{"id":"implicit.stat_3141070085","text":"#% increased Elemental Damage","type":"implicit"},{"id":"implicit.stat_2915988346","text":"#% to Fire and Cold Resistances","type":"implicit"},{"id":"implicit.stat_624954515","text":"#% increased Global Accuracy Rating","type":"implicit"},{"id":"implicit.stat_4277795662","text":"#% to Cold and Lightning Resistances","type":"implicit"},{"id":"implicit.stat_1379411836","text":"# to all Attributes","type":"implicit"},{"id":"implicit.stat_3441501978","text":"#% to Fire and Lightning Resistances","type":"implicit"},{"id":"implicit.stat_3032590688","text":"Adds # to # Physical Damage to Attacks","type":"implicit"},{"id":"implicit.stat_4080418644","text":"# to Strength","type":"implicit"},{"id":"implicit.stat_2901986750","text":"#% to all Elemental Resistances","type":"implicit"},{"id":"implicit.stat_1001829678","text":"#% Chance to Block Attack Damage while wielding a Staff (Staves)","type":"implicit"},{"id":"implicit.stat_3527617737","text":"Has # Abyssal Sockets","type":"implicit"},{"id":"implicit.stat_3372524247","text":"#% to Fire Resistance","type":"implicit"},{"id":"implicit.stat_1671376347","text":"#% to Lightning Resistance","type":"implicit"},{"id":"implicit.stat_4220027924","text":"#% to Cold Resistance","type":"implicit"},{"id":"implicit.stat_2300185227","text":"# to Dexterity and Intelligence","type":"implicit"},{"id":"implicit.stat_1310194496","text":"#% increased Global Physical Damage","type":"implicit"},{"id":"implicit.stat_2517001139","text":"#% increased Stun Duration on Enemies","type":"implicit"},{"id":"implicit.stat_3261801346","text":"# to Dexterity","type":"implicit"},{"id":"implicit.stat_328541901","text":"# to Intelligence","type":"implicit"},{"id":"implicit.stat_821021828","text":"# Life gained for each Enemy hit by Attacks","type":"implicit"},{"id":"implicit.stat_4077843608","text":"Has 1 Socket","type":"implicit"},{"id":"implicit.stat_1050105434","text":"# to maximum Mana","type":"implicit"},{"id":"implicit.stat_2250533757","text":"#% increased Movement Speed","type":"implicit"},{"id":"implicit.stat_789117908","text":"#% increased Mana Regeneration Rate","type":"implicit"},{"id":"implicit.stat_3556824919","text":"#% to Global Critical Strike Multiplier","type":"implicit"},{"id":"implicit.stat_691932474","text":"# to Accuracy Rating (Local)","type":"implicit"},{"id":"implicit.stat_1535626285","text":"# to Strength and Intelligence","type":"implicit"},{"id":"implicit.stat_1443060084","text":"#% reduced Enemy Stun Threshold","type":"implicit"},{"id":"implicit.stat_3325883026","text":"Regenerate # Life per second","type":"implicit"},{"id":"implicit.stat_538848803","text":"# to Strength and Dexterity","type":"implicit"},{"id":"implicit.stat_2375316951","text":"#% increased Critical Strike Chance","type":"implicit"},{"id":"implicit.stat_1792283443","text":"Area is influenced by #","type":"implicit","option":{"options":[{"id":"1","text":"The Shaper"},{"id":"2","text":"The Elder"}]}},{"id":"implicit.stat_2923486259","text":"#% to Chaos Resistance","type":"implicit"},{"id":"implicit.stat_299373046","text":"Area is infested with Fungal Growths","type":"implicit"},{"id":"implicit.stat_2511217560","text":"#% increased Stun and Block Recovery","type":"implicit"},{"id":"implicit.stat_2656027173","text":"Natural inhabitants of this area have been removed","type":"implicit"},{"id":"implicit.stat_387439868","text":"#% increased Elemental Damage with Attack Skills","type":"implicit"},{"id":"implicit.stat_983749596","text":"#% increased maximum Life","type":"implicit"},{"id":"implicit.stat_202275580","text":"Properties are doubled while in a Breach","type":"implicit"},{"id":"implicit.stat_2146730404","text":"Creates Consecrated Ground on Use","type":"implicit"},{"id":"implicit.stat_1760576992","text":"Adds # to # Physical Damage to Bow Attacks","type":"implicit"},{"id":"implicit.stat_2994708956","text":"Can roll Minion Modifiers","type":"implicit"},{"id":"implicit.stat_369183568","text":"#% increased Block Recovery","type":"implicit"},{"id":"implicit.stat_280731498","text":"#% increased Area of Effect","type":"implicit"},{"id":"implicit.stat_3624393862","text":"Map is occupied by #","type":"implicit","option":{"options":[{"id":"1","text":"The Enslaver"},{"id":"2","text":"The Eradicator"},{"id":"3","text":"The Constrictor"},{"id":"4","text":"The Purifier"}]}},{"id":"implicit.stat_3423006863","text":"Arrows Pierce an additional Target","type":"implicit"},{"id":"implicit.stat_3593843976","text":"#% of Physical Attack Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_538730182","text":"Creates a Smoke Cloud on Use","type":"implicit"},{"id":"implicit.stat_2154246560","text":"#% increased Damage","type":"implicit"},{"id":"implicit.stat_2891184298","text":"#% increased Cast Speed","type":"implicit"},{"id":"implicit.stat_1589917703","text":"Minions deal #% increased Damage","type":"implicit"},{"id":"implicit.stat_2162876159","text":"#% increased Projectile Attack Damage","type":"implicit"},{"id":"implicit.stat_2101383955","text":"Damage Penetrates #% Elemental Resistances","type":"implicit"},{"id":"implicit.stat_696707743","text":"#% chance to Dodge Spell Hits","type":"implicit"},{"id":"implicit.stat_2749862839","text":"#% chance to Dodge Attack Hits","type":"implicit"},{"id":"implicit.stat_2748665614","text":"#% increased maximum Mana","type":"implicit"},{"id":"implicit.stat_1658498488","text":"Corrupted Blood cannot be inflicted on you","type":"implicit"},{"id":"implicit.stat_1002362373","text":"#% increased Melee Damage","type":"implicit"},{"id":"implicit.stat_3120164895","text":"Adds # to # Fire Damage to Bow Attacks","type":"implicit"},{"id":"implicit.stat_836936635","text":"Regenerate #% of Life per second","type":"implicit"},{"id":"implicit.stat_3291658075","text":"#% increased Cold Damage","type":"implicit"},{"id":"implicit.stat_734614379","text":"#% increased Strength","type":"implicit"},{"id":"implicit.stat_1126826428","text":"You cannot be Maimed","type":"implicit"},{"id":"implicit.stat_721014846","text":"You cannot be Hindered","type":"implicit"},{"id":"implicit.stat_1654414582","text":"You cannot be Cursed with Silence","type":"implicit"},{"id":"implicit.stat_736967255","text":"#% increased Chaos Damage","type":"implicit"},{"id":"implicit.stat_656461285","text":"#% increased Intelligence","type":"implicit"},{"id":"implicit.stat_2227180465","text":"#% increased Mana Reserved","type":"implicit"},{"id":"implicit.stat_640052854","text":"# Mana gained for each Enemy hit by Attacks","type":"implicit"},{"id":"implicit.stat_2231156303","text":"#% increased Lightning Damage","type":"implicit"},{"id":"implicit.stat_1652515349","text":"# to maximum number of Raised Zombies","type":"implicit"},{"id":"implicit.stat_4139681126","text":"#% increased Dexterity","type":"implicit"},{"id":"implicit.stat_2482852589","text":"#% increased maximum Energy Shield","type":"implicit"},{"id":"implicit.stat_2797971005","text":"# Life gained for each Enemy hit by your Attacks","type":"implicit"},{"id":"implicit.stat_2495041954","text":"Overwhelm #% Physical Damage Reduction","type":"implicit"},{"id":"implicit.stat_3962278098","text":"#% increased Fire Damage","type":"implicit"},{"id":"implicit.stat_2653955271","text":"Damage Penetrates #% Fire Resistance","type":"implicit"},{"id":"implicit.stat_818778753","text":"Damage Penetrates #% Lightning Resistance","type":"implicit"},{"id":"implicit.stat_782230869","text":"#% increased Effect of Non-Damaging Ailments","type":"implicit"},{"id":"implicit.stat_2843100721","text":"# to Level of Socketed Gems","type":"implicit"},{"id":"implicit.stat_2763429652","text":"#% chance to Maim on Hit","type":"implicit"},{"id":"implicit.stat_2843214518","text":"#% increased Attack Damage","type":"implicit"},{"id":"implicit.stat_2672805335","text":"#% increased Attack and Cast Speed","type":"implicit"},{"id":"implicit.stat_681332047","text":"#% increased Attack Speed","type":"implicit"},{"id":"implicit.stat_2316658489","text":"# to Armour and Evasion Rating","type":"implicit"},{"id":"implicit.stat_2551600084","text":"# to Level of Socketed AoE Gems","type":"implicit"},{"id":"implicit.stat_2530372417","text":"#% Chance to Block Attack Damage","type":"implicit"},{"id":"implicit.stat_2452998583","text":"# to Level of Socketed Aura Gems","type":"implicit"},{"id":"implicit.stat_3513534186","text":"Item sells for much more to vendors","type":"implicit"},{"id":"implicit.stat_3691695237","text":"# to Level of Socketed Curse Gems","type":"implicit"},{"id":"implicit.stat_2115168758","text":"# to Level of Socketed Duration Gems","type":"implicit"},{"id":"implicit.stat_4251717817","text":"#% increased Area Damage","type":"implicit"},{"id":"implicit.stat_1519615863","text":"#% chance to cause Bleeding on Hit","type":"implicit"},{"id":"implicit.stat_2176571093","text":"# to Level of Socketed Projectile Gems","type":"implicit"},{"id":"implicit.stat_3311869501","text":"Creates Chilled Ground on Use","type":"implicit"},{"id":"implicit.stat_4078695","text":"# to Maximum Frenzy Charges","type":"implicit"},{"id":"implicit.stat_210067635","text":"#% increased Attack Speed (Local)","type":"implicit"},{"id":"implicit.stat_1672793731","text":"# to Level of Socketed Warcry Gems","type":"implicit"},{"id":"implicit.stat_788317702","text":"Discipline has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_3143208761","text":"#% increased Attributes","type":"implicit"},{"id":"implicit.stat_3417711605","text":"Damage Penetrates #% Cold Resistance","type":"implicit"},{"id":"implicit.stat_1592278124","text":"Anger has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_397427740","text":"Grace has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_3967845372","text":"Curse Enemies with Vulnerability on Hit, with #% increased Effect","type":"implicit"},{"id":"implicit.stat_884586851","text":"#% increased Quantity of Items found","type":"implicit"},{"id":"implicit.stat_3653400807","text":"Determination has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_2067062068","text":"Projectiles Pierce # additional Targets","type":"implicit"},{"id":"implicit.stat_2028847114","text":"Curse Enemies with Elemental Weakness on Hit, with #% increased Effect","type":"implicit"},{"id":"implicit.stat_3767873853","text":"Reflects # Physical Damage to Melee Attackers","type":"implicit"},{"id":"implicit.stat_3848282610","text":"#% of Fire Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_3433724931","text":"Curse Enemies with Temporal Chains on Hit, with #% increased Effect","type":"implicit"},{"id":"implicit.stat_4096052153","text":"Zealotry has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_80079005","text":"#% of Lightning Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_472520716","text":"#% of Damage taken gained as Mana over 4 seconds when Hit","type":"implicit"},{"id":"implicit.stat_3999401129","text":"#% of Cold Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_2622251413","text":"#% chance to double Stun Duration","type":"implicit"},{"id":"implicit.stat_1625819882","text":"Curse Enemies with Enfeeble on Hit, with #% increased Effect","type":"implicit"},{"id":"implicit.stat_1783006896","text":"#% chance to Avoid being Ignited","type":"implicit"},{"id":"implicit.stat_3742945352","text":"Hatred has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_1515657623","text":"# to Maximum Endurance Charges","type":"implicit"},{"id":"implicit.stat_1900164129","text":"Area contains a Monster possessed by an Ancient Talisman","type":"implicit"},{"id":"implicit.stat_1050286373","text":"Area contains up to 1 Monster imprisoned by Essences","type":"implicit"},{"id":"implicit.stat_30642521","text":"You can apply one fewer Curse","type":"implicit"},{"id":"implicit.stat_2181791238","text":"Wrath has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_3023957681","text":"#% chance to gain Onslaught for 4 seconds on Kill","type":"implicit"},{"id":"implicit.stat_3377888098","text":"#% increased Skill Effect Duration","type":"implicit"},{"id":"implicit.stat_3753703249","text":"Gain #% of Physical Damage as Extra Damage of a random Element","type":"implicit"},{"id":"implicit.stat_392469782","text":"Area contains a Breach","type":"implicit"},{"id":"implicit.stat_1389153006","text":"#% increased Global Defences","type":"implicit"},{"id":"implicit.stat_1837040413","text":"Slaying Enemies close together can attract monsters from Beyond this realm","type":"implicit"},{"id":"implicit.stat_150668988","text":"# to Level of Socketed Trap or Mine Gems","type":"implicit"},{"id":"implicit.stat_548865797","text":"Area contains a Rogue Exile","type":"implicit"},{"id":"implicit.stat_2949489150","text":"Area contains a Tormented Spirit","type":"implicit"},{"id":"implicit.stat_791835907","text":"#% to Spell Critical Strike Chance","type":"implicit"},{"id":"implicit.stat_3907094951","text":"Area contains at least 1 Warband Pack","type":"implicit"},{"id":"implicit.stat_561307714","text":"#% Chance to Block Spell Damage","type":"implicit"},{"id":"implicit.stat_1509134228","text":"#% increased Physical Damage","type":"implicit"},{"id":"implicit.stat_2570943032","text":"Area contains a Strongbox","type":"implicit"},{"id":"implicit.stat_240289863","text":"#% to Critical Strike Multiplier during any Flask Effect","type":"implicit"},{"id":"implicit.stat_1170174456","text":"#% increased Endurance Charge Duration","type":"implicit"},{"id":"implicit.stat_452077019","text":"Slaying Enemies in a kill streak grants Rampage bonuses","type":"implicit"},{"id":"implicit.stat_569299859","text":"#% to all maximum Resistances","type":"implicit"},{"id":"implicit.stat_304970526","text":"#% increased Movement Speed during any Flask Effect","type":"implicit"},{"id":"implicit.stat_49787903","text":"Area contains a Perandus Chest","type":"implicit"},{"id":"implicit.stat_2878321598","text":"Area contains up to 1 Shrine","type":"implicit"},{"id":"implicit.stat_97115311","text":"Magic Monster Packs each have a Bloodline Mod","type":"implicit"},{"id":"implicit.stat_581013336","text":"Area contains an additional Magic Monster pack","type":"implicit"},{"id":"implicit.stat_800141891","text":"#% chance to Freeze, Shock and Ignite","type":"implicit"},{"id":"implicit.stat_3788235244","text":"Area has a #% chance to contain Cadiro Perandus","type":"implicit"},{"id":"implicit.stat_585159631","text":"Area contains a Silver Coin","type":"implicit"},{"id":"implicit.stat_2257141320","text":"Vaal Skills deal #% increased Damage","type":"implicit"},{"id":"implicit.stat_3338298622","text":"#% increased Frenzy Charge Duration","type":"implicit"},{"id":"implicit.stat_770672621","text":"Minions have #% increased maximum Life","type":"implicit"},{"id":"implicit.stat_2866361420","text":"#% increased Armour","type":"implicit"},{"id":"implicit.stat_3336890334","text":"Adds # to # Lightning Damage (Local)","type":"implicit"},{"id":"implicit.stat_3511815065","text":"Grants Level # Clarity Skill","type":"implicit"},{"id":"implicit.stat_1826802197","text":"#% chance to gain a Frenzy Charge on Kill","type":"implicit"},{"id":"implicit.stat_4015621042","text":"#% increased Energy Shield (Local)","type":"implicit"},{"id":"implicit.stat_1172810729","text":"#% chance to deal Double Damage","type":"implicit"},{"id":"implicit.stat_742529963","text":"Bow Attacks fire an additional Arrow","type":"implicit"},{"id":"implicit.stat_3771516363","text":"#% additional Physical Damage Reduction","type":"implicit"},{"id":"implicit.stat_2339757871","text":"#% increased Energy Shield Recharge Rate","type":"implicit"},{"id":"implicit.stat_1940865751","text":"Adds # to # Physical Damage (Local)","type":"implicit"},{"id":"implicit.stat_709508406","text":"Adds # to # Fire Damage (Local)","type":"implicit"},{"id":"implicit.stat_2810286377","text":"Area contains an additional pack with a Rare monster","type":"implicit"},{"id":"implicit.stat_1170386874","text":"# to Level of Socketed Vaal Gems","type":"implicit"},{"id":"implicit.stat_2391261970","text":"Rare Monsters each have a Nemesis Mod","type":"implicit"},{"id":"implicit.stat_1037193709","text":"Adds # to # Cold Damage (Local)","type":"implicit"},{"id":"implicit.stat_2223678961","text":"Adds # to # Chaos Damage (Local)","type":"implicit"},{"id":"implicit.stat_1365052901","text":"#% increased Attack Speed during any Flask Effect","type":"implicit"},{"id":"implicit.stat_105466375","text":"Grants Level # Purity of Elements Skill","type":"implicit"},{"id":"implicit.stat_3441651621","text":"# Physical Damage taken from Attack Hits","type":"implicit"},{"id":"implicit.stat_3849207804","text":"Area contains an Invasion Boss","type":"implicit"},{"id":"implicit.stat_2524254339","text":"Culling Strike","type":"implicit"},{"id":"implicit.stat_895264825","text":"#% increased Area of Effect of Aura Skills","type":"implicit"},{"id":"implicit.stat_674553446","text":"Adds # to # Chaos Damage to Attacks","type":"implicit"},{"id":"implicit.stat_4053951709","text":"#% chance to Avoid being Poisoned","type":"implicit"},{"id":"implicit.stat_986397080","text":"#% reduced Ignite Duration on you","type":"implicit"},{"id":"implicit.stat_1277237365","text":"Monsters have Onslaught","type":"implicit"},{"id":"implicit.stat_4175197580","text":"Malevolence has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_2390685262","text":"#% increased Quantity of Items found in Areas","type":"implicit"},{"id":"implicit.stat_2106365538","text":"#% increased Evasion Rating","type":"implicit"},{"id":"implicit.stat_1514829491","text":"#% chance to Avoid being Frozen","type":"implicit"},{"id":"implicit.stat_614758785","text":"# Fire Damage taken from Hits","type":"implicit"},{"id":"implicit.stat_2764915899","text":"Curse Enemies with Despair on Hit, with #% increased Effect","type":"implicit"},{"id":"implicit.stat_3855016469","text":"You take #% reduced Extra Damage from Critical Strikes","type":"implicit"},{"id":"implicit.stat_4247488219","text":"Pride has #% increased Aura Effect","type":"implicit"},{"id":"implicit.stat_3801067695","text":"#% increased Effect of Shock on you","type":"implicit"},{"id":"implicit.stat_690135178","text":"#% increased total Recovery per second from Mana Leech","type":"implicit"},{"id":"implicit.stat_690707482","text":"#% increased Damage with Ailments","type":"implicit"},{"id":"implicit.stat_3695891184","text":"# Life gained on Kill","type":"implicit"},{"id":"implicit.stat_2572042788","text":"Attacks have #% to Critical Strike Chance","type":"implicit"},{"id":"implicit.stat_3970432307","text":"Grants Level # Purity of Fire Skill","type":"implicit"},{"id":"implicit.stat_3483999943","text":"#% chance to Avoid being Chilled","type":"implicit"},{"id":"implicit.stat_2898434123","text":"#% increased Critical Strike Chance during any Flask Effect","type":"implicit"},{"id":"implicit.stat_2865550257","text":"Socketed Skill Gems get a #% Mana Multiplier","type":"implicit"},{"id":"implicit.stat_1368271171","text":"# Mana gained on Kill","type":"implicit"},{"id":"implicit.stat_3943945975","text":"Resolute Technique","type":"implicit"},{"id":"implicit.stat_1478653032","text":"#% reduced Effect of Chill on you","type":"implicit"},{"id":"implicit.stat_4052037485","text":"# to maximum Energy Shield (Local)","type":"implicit"},{"id":"implicit.stat_4193390599","text":"Grants Level # Purity of Ice Skill","type":"implicit"},{"id":"implicit.stat_3374165039","text":"#% increased Totem Placement speed","type":"implicit"},{"id":"implicit.stat_1062208444","text":"#% increased Armour (Local)","type":"implicit"},{"id":"implicit.stat_124859000","text":"#% increased Evasion Rating (Local)","type":"implicit"},{"id":"implicit.stat_3736589033","text":"# to Total Mana Cost of Skills","type":"implicit"},{"id":"implicit.stat_3814876985","text":"#% chance to gain a Power Charge on Critical Strike","type":"implicit"},{"id":"implicit.stat_1290399200","text":"#% increased Damage with Poison","type":"implicit"},{"id":"implicit.stat_2896346114","text":"Point Blank","type":"implicit"},{"id":"implicit.stat_174664100","text":"Minions have #% increased Movement Speed","type":"implicit"},{"id":"implicit.stat_4291461939","text":"Regenerate # Mana per second","type":"implicit"},{"id":"implicit.stat_1994684426","text":"#% increased Damage while Leeching Mana","type":"implicit"},{"id":"implicit.stat_261654754","text":"# Cold Damage taken from Hits","type":"implicit"},{"id":"implicit.stat_369494213","text":"Gain #% of Physical Damage as Extra Fire Damage","type":"implicit"},{"id":"implicit.stat_3591306273","text":"#% increased Damage while Leeching Life","type":"implicit"},{"id":"implicit.stat_3562211447","text":"#% chance to gain Unholy Might for 3 seconds on Kill","type":"implicit"},{"id":"implicit.stat_74338099","text":"Skills fire an additional Projectile","type":"implicit"},{"id":"implicit.stat_252194507","text":"#% increased Cast Speed during any Flask Effect","type":"implicit"},{"id":"implicit.stat_1166417447","text":"Grants Fortify on Melee hit","type":"implicit"},{"id":"implicit.stat_2839036860","text":"#% increased Endurance, Frenzy and Power Charge Duration","type":"implicit"},{"id":"implicit.stat_3822878124","text":"Grants Level # Purity of Lightning Skill","type":"implicit"},{"id":"implicit.stat_2885144362","text":"Adds # to # Lightning Damage to Spells and Attacks","type":"implicit"},{"id":"implicit.stat_1662717006","text":"Adds # to # Cold Damage to Spells and Attacks","type":"implicit"},{"id":"implicit.stat_227523295","text":"# to Maximum Power Charges","type":"implicit"},{"id":"implicit.stat_1923210508","text":"Projectiles deal #% increased Damage for each time they have Chained","type":"implicit"},{"id":"implicit.stat_2181129193","text":"#% additional Physical Damage Reduction while stationary","type":"implicit"},{"id":"implicit.stat_1871765599","text":"#% chance to Avoid being Shocked","type":"implicit"},{"id":"implicit.stat_1040269876","text":"Adds # to # Lightning Damage to Bow Attacks","type":"implicit"},{"id":"implicit.stat_215124030","text":"Adds # to # Cold Damage to Bow Attacks","type":"implicit"},{"id":"implicit.stat_3577248251","text":"You and your Minions take #% reduced Reflected Damage","type":"implicit"},{"id":"implicit.stat_3964634628","text":"Adds # to # Fire Damage to Spells and Attacks","type":"implicit"},{"id":"implicit.stat_3815042054","text":"#% increased total Recovery per second from Life Leech for each Corrupted Item Equipped","type":"implicit"},{"id":"implicit.stat_484879947","text":"Grants Level # Anger Skill","type":"implicit"},{"id":"implicit.stat_3237923082","text":"Socketed Gems are Supported by Level # Onslaught","type":"implicit"},{"id":"implicit.stat_1188846263","text":"Grants Level # Haste Skill","type":"implicit"},{"id":"implicit.stat_4004011170","text":"#% increased Chaos Damage for each Corrupted Item Equipped","type":"implicit"},{"id":"implicit.stat_350598685","text":"# to Weapon Range","type":"implicit"},{"id":"implicit.stat_2224292784","text":"Can have up to # additional Trap placed at a time","type":"implicit"},{"id":"implicit.stat_2265307453","text":"Grants Level # Wrath Skill","type":"implicit"},{"id":"implicit.stat_2483795307","text":"#% chance to gain a Power Charge on Kill","type":"implicit"},{"id":"implicit.stat_979246511","text":"Gain #% of Physical Damage as Extra Cold Damage","type":"implicit"},{"id":"implicit.stat_2679819855","text":"#% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped","type":"implicit"},{"id":"implicit.stat_2148556029","text":"Grants Level # Malevolence Skill","type":"implicit"},{"id":"implicit.stat_2325632050","text":"Socketed Gems are supported by Level # Cast On Critical Strike","type":"implicit"},{"id":"implicit.stat_4212255859","text":"Cannot be Knocked Back","type":"implicit"},{"id":"implicit.stat_339179093","text":"# to Level of Socketed Fire Gems","type":"implicit"},{"id":"implicit.stat_883169830","text":"Projectiles deal #% increased Damage for each Enemy Pierced","type":"implicit"},{"id":"implicit.stat_3375859421","text":"#% of Lightning Damage from Hits taken as Fire Damage","type":"implicit"},{"id":"implicit.stat_1017730114","text":"#% of Lightning Damage from Hits taken as Cold Damage","type":"implicit"},{"id":"implicit.stat_2120297997","text":"#% Chance to Block Spell Damage while wielding a Staff","type":"implicit"},{"id":"implicit.stat_2960683632","text":"#% reduced Chaos Damage taken","type":"implicit"},{"id":"implicit.stat_2160282525","text":"#% reduced Freeze Duration on you","type":"implicit"},{"id":"implicit.stat_3868549606","text":"Gain a Frenzy Charge after Spending a total of 200 Mana","type":"implicit"},{"id":"implicit.stat_3668351662","text":"#% increased Shock Duration on Enemies","type":"implicit"},{"id":"implicit.stat_1276918229","text":"#% reduced Lightning Damage taken","type":"implicit"},{"id":"implicit.stat_2841027131","text":"Regenerate # Life per second while moving","type":"implicit"},{"id":"implicit.stat_1169502663","text":"Grants Level # Frostbite Skill","type":"implicit"},{"id":"implicit.stat_3582580206","text":"#% increased Damage while Dead","type":"implicit"},{"id":"implicit.stat_3158958938","text":"#% reduced Reflected Physical Damage taken","type":"implicit"},{"id":"implicit.stat_682182849","text":"#% chance to Dodge Spell Hits while moving","type":"implicit"},{"id":"implicit.stat_2429546158","text":"Grants Level # Hatred Skill","type":"implicit"},{"id":"implicit.stat_3825877290","text":"# to Global Evasion Rating while moving","type":"implicit"},{"id":"implicit.stat_496011033","text":"# Chaos Damage taken","type":"implicit"},{"id":"implicit.stat_3484657501","text":"# to Armour (Local)","type":"implicit"},{"id":"implicit.stat_845428765","text":"#% chance to Dodge Attack Hits while moving","type":"implicit"},{"id":"implicit.stat_1263695895","text":"#% increased Light Radius","type":"implicit"},{"id":"implicit.stat_1874553720","text":"#% reduced Chill Duration on you","type":"implicit"},{"id":"implicit.stat_219391121","text":"Gain #% of Physical Damage as Extra Lightning Damage","type":"implicit"},{"id":"implicit.stat_99927264","text":"#% reduced Shock Duration on you","type":"implicit"},{"id":"implicit.stat_1745952865","text":"#% reduced Elemental Ailment Duration on you","type":"implicit"},{"id":"implicit.stat_2166444903","text":"#% Chance to Block Attack Damage while Dual Wielding","type":"implicit"},{"id":"implicit.stat_53045048","text":"# to Evasion Rating (Local)","type":"implicit"},{"id":"implicit.stat_1582887649","text":"#% chance to gain an Endurance Charge when you Stun an Enemy","type":"implicit"},{"id":"implicit.stat_2551779822","text":"# Armour while stationary","type":"implicit"},{"id":"implicit.stat_1313503107","text":"#% of Cold Damage from Hits taken as Lightning Damage","type":"implicit"},{"id":"implicit.stat_2902845638","text":"Projectiles Pierce # additional Targets","type":"implicit"},{"id":"implicit.stat_107118693","text":"Socketed Gems are Supported by Level # Fortify","type":"implicit"},{"id":"implicit.stat_165218607","text":"Hits have #% increased Critical Strike Chance against you","type":"implicit"},{"id":"implicit.stat_2044547677","text":"Grants Level # Despair Skill","type":"implicit"},{"id":"implicit.stat_1420170973","text":"# Life and Mana gained for each Enemy hit","type":"implicit"},{"id":"implicit.stat_1079148723","text":"Socketed Gems are supported by Level # Cast when Stunned","type":"implicit"},{"id":"implicit.stat_1189760108","text":"#% of Cold Damage from Hits taken as Fire Damage","type":"implicit"},{"id":"implicit.stat_1645459191","text":"# to Level of Socketed Cold Gems","type":"implicit"},{"id":"implicit.stat_1408638732","text":"#% increased Character Size","type":"implicit"},{"id":"implicit.stat_737908626","text":"#% increased Critical Strike Chance for Spells","type":"implicit"},{"id":"implicit.stat_1436284579","text":"Cannot be Blinded","type":"implicit"},{"id":"implicit.stat_2209668839","text":"Grants Level # Flammability Skill","type":"implicit"},{"id":"implicit.stat_828179689","text":"#% increased Effect of Chill","type":"implicit"},{"id":"implicit.stat_465051235","text":"# Lightning Damage taken from Hits","type":"implicit"},{"id":"implicit.stat_1054322244","text":"#% chance to gain an Endurance Charge on Kill","type":"implicit"},{"id":"implicit.stat_3736925508","text":"Grants Level # Assassin's Mark Skill","type":"implicit"},{"id":"implicit.stat_3743301799","text":"#% increased Fire Damage taken","type":"implicit"},{"id":"implicit.stat_461472247","text":"Grants Level # Conductivity Skill","type":"implicit"},{"id":"implicit.stat_3303114033","text":"#% reduced Cold Damage taken","type":"implicit"},{"id":"implicit.stat_4184565463","text":"Grants Level # Pride Skill","type":"implicit"},{"id":"implicit.stat_1175385867","text":"#% increased Burning Damage","type":"implicit"},{"id":"implicit.stat_940324562","text":"Grants Level # Temporal Chains Skill","type":"implicit"},{"id":"implicit.stat_3181974858","text":"#% chance to Cause Monsters to Flee","type":"implicit"},{"id":"implicit.stat_820939409","text":"# Mana gained for each Enemy hit by your Attacks","type":"implicit"},{"id":"implicit.stat_2410613176","text":"Grants Level # Vitality Skill","type":"implicit"},{"id":"implicit.stat_2522672898","text":"#% of Fire Damage from Hits taken as Cold Damage","type":"implicit"},{"id":"implicit.stat_4043416969","text":"# to Level of Socketed Lightning Gems","type":"implicit"},{"id":"implicit.stat_3835551335","text":"Cannot be Poisoned","type":"implicit"},{"id":"implicit.stat_1504091975","text":"#% of Fire Damage from Hits taken as Lightning Damage","type":"implicit"},{"id":"implicit.stat_2527686725","text":"#% increased Effect of Shock","type":"implicit"},{"id":"implicit.stat_989800292","text":"Regenerate #% of Life per second per Endurance Charge","type":"implicit"},{"id":"implicit.stat_1811422871","text":"Socketed Gems are supported by Level # Melee Splash","type":"implicit"},{"id":"implicit.stat_4253454700","text":"#% Chance to Block (Shields)","type":"implicit"},{"id":"implicit.stat_474294393","text":"#% reduced Mana Cost of Skills","type":"implicit"},{"id":"implicit.stat_2877754099","text":"#% to Quality of Socketed Dexterity Gems","type":"implicit"},{"id":"implicit.stat_827329571","text":"#% increased Spell Damage per Power Charge","type":"implicit"},{"id":"implicit.stat_3174776455","text":"#% to Quality of Socketed Intelligence Gems","type":"implicit"},{"id":"implicit.stat_3342989455","text":"#% of Physical Damage from Hits taken as Fire Damage","type":"implicit"},{"id":"implicit.stat_425242359","text":"#% of Physical Damage from Hits taken as Lightning Damage","type":"implicit"},{"id":"implicit.stat_1396421504","text":"#% to Quality of Socketed Melee Gems","type":"implicit"},{"id":"implicit.stat_3872306017","text":"#% increased Power Charge Duration","type":"implicit"},{"id":"implicit.stat_767196662","text":"#% increased Damage if Corrupted","type":"implicit"},{"id":"implicit.stat_1425651005","text":"#% reduced Damage taken from Projectiles","type":"implicit"},{"id":"implicit.stat_1619454789","text":"Onslaught","type":"implicit"},{"id":"implicit.stat_1573130764","text":"Adds # to # Fire Damage to Attacks","type":"implicit"},{"id":"implicit.stat_3944782785","text":"#% increased Attack Damage against Bleeding Enemies","type":"implicit"},{"id":"implicit.stat_3224664127","text":"Grants Level # Zealotry Skill","type":"implicit"},{"id":"implicit.stat_2831165374","text":"Adds # to # Lightning Damage to Spells","type":"implicit"},{"id":"implicit.stat_1567462963","text":"Socketed Gems are supported by Level # Additional Accuracy","type":"implicit"},{"id":"implicit.stat_3240769289","text":"#% of Physical Damage Converted to Lightning Damage","type":"implicit"},{"id":"implicit.stat_1533563525","text":"#% of Physical Damage Converted to Fire Damage","type":"implicit"},{"id":"implicit.stat_2133341901","text":"#% of Physical Damage Converted to Cold Damage","type":"implicit"},{"id":"implicit.stat_3536689603","text":"Grants Level # Sniper's Mark Skill","type":"implicit"},{"id":"implicit.stat_2223640518","text":"Socketed Gems are supported by Level # Blind","type":"implicit"},{"id":"implicit.stat_1133016593","text":"Adds # to # Fire Damage to Spells","type":"implicit"},{"id":"implicit.stat_4064396395","text":"Attacks with this Weapon Penetrate #% Elemental Resistances","type":"implicit"},{"id":"implicit.stat_1618589784","text":"#% chance to avoid Bleeding","type":"implicit"},{"id":"implicit.stat_1787073323","text":"Skills Chain # times","type":"implicit"},{"id":"implicit.stat_4262448838","text":"#% chance to Avoid being Stunned","type":"implicit"},{"id":"implicit.stat_2341269061","text":"Grants Level # Discipline Skill","type":"implicit"},{"id":"implicit.stat_3257279374","text":"#% increased Damage against Abyssal Monsters","type":"implicit"},{"id":"implicit.stat_99089516","text":"Socketed Gems are supported by Level # Faster Projectiles","type":"implicit"},{"id":"implicit.stat_967627487","text":"#% increased Damage over Time","type":"implicit"},{"id":"implicit.stat_3828613551","text":"#% to Quality of Socketed Gems","type":"implicit"},{"id":"implicit.stat_3648858570","text":"# to # Cold Damage per Frenzy Charge","type":"implicit"},{"id":"implicit.stat_3759663284","text":"#% increased Projectile Speed","type":"implicit"},{"id":"implicit.stat_3594640492","text":"Regenerate #% of Energy Shield per second","type":"implicit"},{"id":"implicit.stat_122841557","text":"#% to Quality of Socketed Strength Gems","type":"implicit"},{"id":"implicit.stat_1866911844","text":"Socketed Gems are Supported by Level # Inspiration","type":"implicit"},{"id":"implicit.stat_2867050084","text":"Grants Level # Grace Skill","type":"implicit"},{"id":"implicit.stat_768982451","text":"#% to Quality of Socketed AoE Gems","type":"implicit"},{"id":"implicit.stat_2011656677","text":"#% increased Poison Duration","type":"implicit"},{"id":"implicit.stat_4265392510","text":"Grants Level # Determination Skill","type":"implicit"},{"id":"implicit.stat_1754445556","text":"Adds # to # Lightning Damage to Attacks","type":"implicit"},{"id":"implicit.stat_4129825612","text":"#% of Physical Damage from Hits taken as Chaos Damage","type":"implicit"},{"id":"implicit.stat_1782086450","text":"#% faster start of Energy Shield Recharge","type":"implicit"},{"id":"implicit.stat_2633745731","text":"#% increased total Recovery per second from Life Leech","type":"implicit"},{"id":"implicit.stat_1871056256","text":"#% of Physical Damage from Hits taken as Cold Damage","type":"implicit"},{"id":"implicit.stat_821241191","text":"#% increased Life Recovery from Flasks","type":"implicit"},{"id":"implicit.stat_2428621158","text":"#% to Quality of Socketed Projectile Gems","type":"implicit"},{"id":"implicit.stat_4067062424","text":"Adds # to # Cold Damage to Attacks","type":"implicit"},{"id":"implicit.stat_2718698372","text":"# to Level of Socketed Dexterity Gems","type":"implicit"},{"id":"implicit.stat_2034658008","text":"#% increased Damage per Power Charge","type":"implicit"},{"id":"implicit.stat_2062835769","text":"#% to Quality of Socketed Chaos Gems","type":"implicit"},{"id":"implicit.stat_1335054179","text":"#% chance to Ignite","type":"implicit"},{"id":"implicit.stat_1294118672","text":"#% increased Damage with Bleeding","type":"implicit"},{"id":"implicit.stat_3422008440","text":"#% to Quality of Socketed Fire Gems","type":"implicit"},{"id":"implicit.stat_4124805414","text":"#% to maximum Chance to Block Attack Damage","type":"implicit"},{"id":"implicit.stat_2501237765","text":"Socketed Gems are supported by Level # Multistrike","type":"implicit"},{"id":"implicit.stat_2514424018","text":"You gain Onslaught for # seconds on Hit","type":"implicit"},{"id":"implicit.stat_4154259475","text":"# to Level of Socketed Support Gems","type":"implicit"},{"id":"implicit.stat_3001376862","text":"#% reduced Area Damage taken from Hits","type":"implicit"},{"id":"implicit.stat_1065580342","text":"#% to Quality of Socketed Lightning Gems","type":"implicit"},{"id":"implicit.stat_803737631","text":"# to Accuracy Rating","type":"implicit"},{"id":"implicit.stat_1419713278","text":"You and nearby Allies deal #% increased Damage","type":"implicit"},{"id":"implicit.stat_2122183138","text":"# Mana gained when you Block","type":"implicit"},{"id":"implicit.stat_248838155","text":"#% reduced Reflected Elemental Damage taken","type":"implicit"},{"id":"implicit.stat_1220361974","text":"Enemies you Kill Explode, dealing #% of their Life as Physical Damage","type":"implicit"},{"id":"implicit.stat_2881111359","text":"#% Chance to Block Spell Damage (Legacy)","type":"implicit"},{"id":"implicit.stat_4208096430","text":"#% chance to Gain Arcane Surge on Hit with Spells","type":"implicit"},{"id":"implicit.stat_1702195217","text":"#% Chance to Block Attack Damage","type":"implicit"},{"id":"implicit.stat_338121249","text":"Curse Enemies with Flammability on Hit, with #% increased Effect","type":"implicit"},{"id":"implicit.stat_458438597","text":"#% of Damage is taken from Mana before Life","type":"implicit"},{"id":"implicit.stat_426847518","text":"Curse Enemies with Frostbite on Hit, with #% increased Effect","type":"implicit"},{"id":"implicit.stat_310246444","text":"#% increased Damage while Leeching","type":"implicit"},{"id":"implicit.stat_2929101122","text":"Socketed Gems are Supported by Level # Elemental Proliferation","type":"implicit"},{"id":"implicit.stat_3165492062","text":"#% increased Vaal Skill Critical Strike Chance","type":"implicit"},{"id":"implicit.stat_1962922582","text":"#% chance to gain an additional Vaal Soul on Kill","type":"implicit"},{"id":"implicit.stat_3792821911","text":"Grants Level # Elemental Weakness Skill","type":"implicit"},{"id":"implicit.stat_3237948413","text":"#% of Physical Attack Damage Leeched as Mana","type":"implicit"},{"id":"implicit.stat_4293455942","text":"Enemies Cannot Leech Life From you","type":"implicit"},{"id":"implicit.stat_4223377453","text":"#% increased Brand Attachment range","type":"implicit"},{"id":"implicit.stat_3741323227","text":"#% increased Flask Effect Duration","type":"implicit"},{"id":"implicit.stat_3005472710","text":"#% chance to Avoid Elemental Ailments","type":"implicit"},{"id":"implicit.stat_3922006600","text":"Socketed Gems are Supported by Level # Blood Magic","type":"implicit"},{"id":"implicit.stat_2062753054","text":"Socketed Gems are supported by Level # Fork","type":"implicit"},{"id":"implicit.stat_891277550","text":"Socketed Gems are supported by Level # Life Leech","type":"implicit"},{"id":"implicit.stat_3438201750","text":"#% chance to Intimidate Enemies for 4 seconds on Hit with Attacks","type":"implicit"},{"id":"implicit.stat_660404777","text":"#% increased Evasion Rating per Frenzy Charge","type":"implicit"},{"id":"implicit.stat_3846810663","text":"#% reduced Reflected Damage taken","type":"implicit"},{"id":"implicit.stat_2387423236","text":"Adds # to # Cold Damage","type":"implicit"},{"id":"implicit.stat_1954526925","text":"Immune to Curses if Corrupted","type":"implicit"},{"id":"implicit.stat_1334060246","text":"Adds # to # Lightning Damage","type":"implicit"},{"id":"implicit.stat_3666934677","text":"#% increased Experience gain","type":"implicit"},{"id":"implicit.stat_744082851","text":"#% of Chaos Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_3531280422","text":"Adds # to # Chaos Damage","type":"implicit"},{"id":"implicit.stat_720395808","text":"#% of Elemental Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_3515686789","text":"#% increased Damage per Endurance Charge","type":"implicit"},{"id":"implicit.stat_1538773178","text":"#% chance to Shock","type":"implicit"},{"id":"implicit.stat_3764265320","text":"#% of Physical Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_902747843","text":"#% increased Damage per Frenzy Charge","type":"implicit"},{"id":"implicit.stat_2479683456","text":"Minions Regenerate #% of Life per second","type":"implicit"},{"id":"implicit.stat_1435748744","text":"Curse Skills have #% increased Skill Effect Duration","type":"implicit"},{"id":"implicit.stat_2907156609","text":"Poisons you inflict deal Damage #% faster","type":"implicit"},{"id":"implicit.stat_3828375170","text":"Bleeding you inflict deals Damage #% faster","type":"implicit"},{"id":"implicit.stat_321077055","text":"Adds # to # Fire Damage","type":"implicit"},{"id":"implicit.stat_2032386732","text":"Socketed Gems are Supported by Level # Life Gain On Hit","type":"implicit"},{"id":"implicit.stat_1030153674","text":"Recover #% of Mana on Kill","type":"implicit"},{"id":"implicit.stat_2469416729","text":"Adds # to # Cold Damage to Spells","type":"implicit"},{"id":"implicit.stat_710372469","text":"Curse Enemies with Conductivity on Hit, with #% increased Effect","type":"implicit"},{"id":"implicit.stat_2443492284","text":"Ignites you inflict deal Damage #% faster","type":"implicit"},{"id":"implicit.stat_3041288981","text":"Recover #% of your maximum Mana when you Block","type":"implicit"},{"id":"implicit.stat_4055307827","text":"#% to Chaos Damage over Time Multiplier","type":"implicit"},{"id":"implicit.stat_762600725","text":"# Life gained when you Block","type":"implicit"},{"id":"implicit.stat_4095671657","text":"#% to maximum Fire Resistance","type":"implicit"},{"id":"implicit.stat_3293699237","text":"#% increased Attack Speed with Swords","type":"implicit"},{"id":"implicit.stat_2382196858","text":"#% increased Cast Speed while Dual Wielding","type":"implicit"},{"id":"implicit.stat_1896971621","text":"#% increased Mine Throwing Speed","type":"implicit"},{"id":"implicit.stat_1880071428","text":"#% increased effect of Non-Curse Auras from your Skills","type":"implicit"},{"id":"implicit.stat_1612163368","text":"#% increased Cast Speed while holding a Shield","type":"implicit"},{"id":"implicit.stat_3759735052","text":"#% increased Attack Speed with Bows","type":"implicit"},{"id":"implicit.stat_3496944181","text":"#% increased Spell Damage while wielding a Staff","type":"implicit"},{"id":"implicit.stat_3188455409","text":"Regenerate #% of Mana per second","type":"implicit"},{"id":"implicit.stat_2066542501","text":"#% increased Cast Speed while wielding a Staff","type":"implicit"},{"id":"implicit.stat_1719423857","text":"# to Level of Socketed Intelligence Gems","type":"implicit"},{"id":"implicit.stat_1950806024","text":"#% to Cold Damage over Time Multiplier","type":"implicit"},{"id":"implicit.stat_3067892458","text":"Triggered Spells deal #% increased Spell Damage","type":"implicit"},{"id":"implicit.stat_149574107","text":"Adds # to # Cold Damage to Attacks with this Weapon per 10 Dexterity","type":"implicit"},{"id":"implicit.stat_2442647190","text":"Recover #% of Life when you Block","type":"implicit"},{"id":"implicit.stat_3720627346","text":"#% increased Attack Speed with Wands","type":"implicit"},{"id":"implicit.stat_916797432","text":"# to Level of Socketed Strength Gems","type":"implicit"},{"id":"implicit.stat_644456512","text":"#% reduced Flask Charges used","type":"implicit"},{"id":"implicit.stat_2347923784","text":"#% increased Attack Damage if Corrupted","type":"implicit"},{"id":"implicit.stat_2089652545","text":"#% chance to Intimidate Enemies for 4 seconds on Hit","type":"implicit"},{"id":"implicit.stat_1423749435","text":"#% to Damage over Time Multiplier for Bleeding","type":"implicit"},{"id":"implicit.stat_2027269580","text":"# to Level of Socketed Bow Gems","type":"implicit"},{"id":"implicit.stat_1443215722","text":"#% increased Frostbite Curse Effect","type":"implicit"},{"id":"implicit.stat_795138349","text":"#% chance to Poison on Hit","type":"implicit"},{"id":"implicit.stat_1423639565","text":"Minions have #% to all Elemental Resistances","type":"implicit"},{"id":"implicit.stat_3390848861","text":"Adds # to # Lightning Damage to Attacks with this Weapon per 10 Intelligence","type":"implicit"},{"id":"implicit.stat_3280600715","text":"#% to Quality of Socketed Bow Gems","type":"implicit"},{"id":"implicit.stat_1447222021","text":"Grants Level # Vulnerability Skill","type":"implicit"},{"id":"implicit.stat_2169938251","text":"Socketed Gems are Supported by Level # Faster Casting","type":"implicit"},{"id":"implicit.stat_3550868361","text":"#% increased Attack Speed with Axes","type":"implicit"},{"id":"implicit.stat_1923879260","text":"Attacks cannot cause Bleeding","type":"implicit"},{"id":"implicit.stat_1108755349","text":"Socketed Gems are supported by Level # Increased Critical Damage","type":"implicit"},{"id":"implicit.stat_4000101551","text":"Minions have #% increased Cast Speed","type":"implicit"},{"id":"implicit.stat_1164882313","text":"#% to Quality of Socketed Cold Gems","type":"implicit"},{"id":"implicit.stat_2023107756","text":"Recover #% of Life on Kill","type":"implicit"},{"id":"implicit.stat_2947215268","text":"#% increased Damage during any Flask Effect","type":"implicit"},{"id":"implicit.stat_1678690824","text":"#% increased Spell Damage while Dual Wielding","type":"implicit"},{"id":"implicit.stat_1766142294","text":"#% increased Spell Damage while holding a Shield","type":"implicit"},{"id":"implicit.stat_1011760251","text":"#% to maximum Lightning Resistance","type":"implicit"},{"id":"implicit.stat_1718147982","text":"#% increased Minion Accuracy Rating","type":"implicit"},{"id":"implicit.stat_1421645223","text":"#% increased Attack Speed with Claws","type":"implicit"},{"id":"implicit.stat_2532625478","text":"Socketed Gems are supported by Level # Elemental Damage with Attacks","type":"implicit"},{"id":"implicit.stat_3492025235","text":"Arrows Pierce 1 additional Target","type":"implicit"},{"id":"implicit.stat_1296614065","text":"#% increased Fish Bite Sensitivity","type":"implicit"},{"id":"implicit.stat_1901158930","text":"Bleeding cannot be inflicted on you","type":"implicit"},{"id":"implicit.stat_2402136583","text":"Gain #% of Lightning Damage as Extra Chaos Damage","type":"implicit"},{"id":"implicit.stat_1073942215","text":"#% increased Freeze Duration on Enemies","type":"implicit"},{"id":"implicit.stat_2323242761","text":"#% chance to gain a Frenzy Charge on Hit","type":"implicit"},{"id":"implicit.stat_118398748","text":"#% increased Trap Throwing Speed","type":"implicit"},{"id":"implicit.stat_1328548975","text":"#% to Quality of Socketed Support Gems","type":"implicit"},{"id":"implicit.stat_689720069","text":"Socketed Gems are supported by Level # Stun","type":"implicit"},{"id":"implicit.stat_3319896421","text":"Gain #% of Physical Damage as Extra Chaos Damage","type":"implicit"},{"id":"implicit.stat_2320884914","text":"#% increased Attack and Cast Speed during Onslaught","type":"implicit"},{"id":"implicit.stat_3882531569","text":"#% increased Physical Damage with Daggers","type":"implicit"},{"id":"implicit.stat_3801128794","text":"#% increased Damage per 15 Intelligence","type":"implicit"},{"id":"implicit.stat_860668586","text":"#% increased Cold Damage with Attack Skills","type":"implicit"},{"id":"implicit.stat_2309614417","text":"#% chance to Freeze","type":"implicit"},{"id":"implicit.stat_2813626504","text":"Spells have a #% chance to deal Double Damage","type":"implicit"},{"id":"implicit.stat_402920808","text":"#% increased Physical Damage with Bows","type":"implicit"},{"id":"implicit.stat_3684879618","text":"#% increased Movement Speed while Phasing","type":"implicit"},{"id":"implicit.stat_1086147743","text":"#% increased Ignite Duration on Enemies","type":"implicit"},{"id":"implicit.stat_1459321413","text":"#% increased Bleeding Duration","type":"implicit"},{"id":"implicit.stat_2572192375","text":"Socketed Gems are Supported by Level # Added Fire Damage","type":"implicit"},{"id":"implicit.stat_4208907162","text":"#% increased Lightning Damage with Attack Skills","type":"implicit"},{"id":"implicit.stat_2200030809","text":"Discipline has #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_1599775597","text":"Gain #% of Fire Damage as Extra Chaos Damage","type":"implicit"},{"id":"implicit.stat_1809006367","text":"Totems gain #% to all Elemental Resistances","type":"implicit"},{"id":"implicit.stat_2894476716","text":"Gain # Endurance Charge every second if you've been Hit Recently","type":"implicit"},{"id":"implicit.stat_635761691","text":"#% increased Physical Damage with Claws","type":"implicit"},{"id":"implicit.stat_3289633055","text":"Socketed Gems have #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_3375935924","text":"Minions have #% increased Attack Speed","type":"implicit"},{"id":"implicit.stat_1999711879","text":"# to Minimum Power Charges","type":"implicit"},{"id":"implicit.stat_1712221299","text":"#% to Critical Strike Multiplier with Bows","type":"implicit"},{"id":"implicit.stat_3072232736","text":"Determination has #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_2468413380","text":"#% increased Fire Damage with Attack Skills","type":"implicit"},{"id":"implicit.stat_3731630482","text":"#% to all Elemental Resistances if Corrupted","type":"implicit"},{"id":"implicit.stat_3935031607","text":"#% increased Lightning Damage with Spell Skills","type":"implicit"},{"id":"implicit.stat_2276941637","text":"#% to Quality of Socketed Aura Gems","type":"implicit"},{"id":"implicit.stat_1452809865","text":"#% increased Flask Charges gained","type":"implicit"},{"id":"implicit.stat_3761858151","text":"#% increased Chaos Damage with Spell Skills","type":"implicit"},{"id":"implicit.stat_2021058489","text":"#% chance to Evade Attack Hits","type":"implicit"},{"id":"implicit.stat_3150705301","text":"#% increased Physical Damage with Staves","type":"implicit"},{"id":"implicit.stat_287491423","text":"#% additional Physical Damage Reduction against Abyssal Monsters","type":"implicit"},{"id":"implicit.stat_658456881","text":"# to Minimum Frenzy Charges","type":"implicit"},{"id":"implicit.stat_2538566497","text":"#% increased Attack Speed with Daggers","type":"implicit"},{"id":"implicit.stat_3676141501","text":"#% to maximum Cold Resistance","type":"implicit"},{"id":"implicit.stat_3814560373","text":"#% increased Physical Damage with Swords","type":"implicit"},{"id":"implicit.stat_3192966873","text":"Purity of Ice has #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_3215042347","text":"Purity of Fire has #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_3720936304","text":"Socketed Gems are Supported by Level # Increased Area of Effect","type":"implicit"},{"id":"implicit.stat_991194404","text":"Regenerate #% of Energy Shield per Second while affected by Discipline","type":"implicit"},{"id":"implicit.stat_3739863694","text":"#% chance to Impale Enemies on Hit with Attacks","type":"implicit"},{"id":"implicit.stat_3706959521","text":"# to Minimum Endurance Charges","type":"implicit"},{"id":"implicit.stat_2186994986","text":"#% increased Cold Damage with Spell Skills","type":"implicit"},{"id":"implicit.stat_2515515064","text":"#% increased Attack Speed with Maces or Sceptres","type":"implicit"},{"id":"implicit.stat_1122074043","text":"Vitality has #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_1482572705","text":"#% increased Effect of Socketed Jewels","type":"implicit"},{"id":"implicit.stat_3743438423","text":"#% of Physical Damage is taken from Mana before Life","type":"implicit"},{"id":"implicit.stat_1959092146","text":"#% increased Chaos Damage with Attack Skills","type":"implicit"},{"id":"implicit.stat_2266750692","text":"#% increased Physical Damage with Attack Skills","type":"implicit"},{"id":"implicit.stat_829382474","text":"# to Level of Socketed Melee Gems","type":"implicit"},{"id":"implicit.stat_96977651","text":"#% increased Maximum total Recovery per second from Mana Leech","type":"implicit"},{"id":"implicit.stat_1285430327","text":"Purity of Lightning has #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_169946467","text":"#% increased Accuracy Rating with Bows","type":"implicit"},{"id":"implicit.stat_361162316","text":"#% increased Fire Damage with Spell Skills","type":"implicit"},{"id":"implicit.stat_1653010703","text":"#% to Non-Ailment Chaos Damage over Time Multiplier","type":"implicit"},{"id":"implicit.stat_158779585","text":"#% increased Effect of Fortify on you","type":"implicit"},{"id":"implicit.stat_2769075491","text":"#% increased Physical Damage with Wands","type":"implicit"},{"id":"implicit.stat_1241396104","text":"#% to Critical Strike Multiplier with Wands","type":"implicit"},{"id":"implicit.stat_1394963553","text":"#% increased Attack Speed with Staves","type":"implicit"},{"id":"implicit.stat_1361343333","text":"Regenerate # Mana per Second while Dual Wielding","type":"implicit"},{"id":"implicit.stat_1301765461","text":"#% to maximum Chaos Resistance","type":"implicit"},{"id":"implicit.stat_2228518621","text":"Raised Zombies deal #% increased Damage","type":"implicit"},{"id":"implicit.stat_3059357595","text":"Skeletons deal #% increased Damage","type":"implicit"},{"id":"implicit.stat_318953428","text":"#% chance to Blind Enemies on Hit with Attacks","type":"implicit"},{"id":"implicit.stat_1388668644","text":"Regenerate # Mana per second while wielding a Staff","type":"implicit"},{"id":"implicit.stat_3629080637","text":"#% to Critical Strike Multiplier for Spells while wielding a Staff","type":"implicit"},{"id":"implicit.stat_3762868276","text":"Regenerate # Mana per Second while holding a Shield","type":"implicit"},{"id":"implicit.stat_3002506763","text":"#% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed","type":"implicit"},{"id":"implicit.stat_1060540099","text":"Adds # to # Fire Damage to Attacks with this Weapon per 10 Strength","type":"implicit"},{"id":"implicit.stat_3114492047","text":"#% to Critical Strike Multiplier with Swords","type":"implicit"},{"id":"implicit.stat_1683578560","text":"Unwavering Stance","type":"implicit"},{"id":"implicit.stat_1430255627","text":"#% increased Physical Damage with Spell Skills","type":"implicit"},{"id":"implicit.stat_3998601568","text":"#% to Critical Strike Multiplier with Daggers","type":"implicit"},{"id":"implicit.stat_3961014595","text":"#% increased Spell Damage per 16 Intelligence","type":"implicit"},{"id":"implicit.stat_2451060005","text":"You can catch Corrupted Fish","type":"implicit"},{"id":"implicit.stat_2675603254","text":"# to Level of Socketed Chaos Gems","type":"implicit"},{"id":"implicit.stat_3310914132","text":"#% increased Rarity of Fish Caught","type":"implicit"},{"id":"implicit.stat_141810208","text":"#% of Attack Damage Leeched as Life","type":"implicit"},{"id":"implicit.stat_2538120572","text":"#% increased Accuracy Rating with Axes","type":"implicit"},{"id":"implicit.stat_3348324479","text":"#% increased Elemental Weakness Curse Effect","type":"implicit"},{"id":"implicit.stat_458899422","text":"#% to Critical Strike Multiplier with Maces or Sceptres","type":"implicit"},{"id":"implicit.stat_11106713","text":"#% of Spell Damage Leeched as Energy Shield","type":"implicit"},{"id":"implicit.stat_2150183156","text":"#% increased Accuracy Rating with Wands","type":"implicit"},{"id":"implicit.stat_374116820","text":"#% increased Spell Damage if Corrupted","type":"implicit"},{"id":"implicit.stat_26867112","text":"#% increased Attack and Cast Speed if Corrupted","type":"implicit"},{"id":"implicit.stat_2008219439","text":"#% increased Physical Damage with Axes","type":"implicit"},{"id":"implicit.stat_4219746989","text":"#% to Critical Strike Multiplier with Axes","type":"implicit"},{"id":"implicit.stat_2880601380","text":"#% increased Movement Speed if Corrupted","type":"implicit"},{"id":"implicit.stat_4249521944","text":"#% increased Spell Damage per 16 Strength","type":"implicit"},{"id":"implicit.stat_1609570656","text":"#% increased Physical Damage while you have Unholy Might","type":"implicit"},{"id":"implicit.stat_2311200892","text":"#% to Critical Strike Multiplier for Spells while holding a Shield","type":"implicit"},{"id":"implicit.stat_977908611","text":"#% chance to Knock Enemies Back on hit","type":"implicit"},{"id":"implicit.stat_2054715690","text":"#% increased Accuracy Rating with Daggers","type":"implicit"},{"id":"implicit.stat_430248187","text":"#% increased Area of Effect if you have Stunned an Enemy Recently","type":"implicit"},{"id":"implicit.stat_3774831856","text":"#% increased Physical Damage with Maces or Sceptres","type":"implicit"},{"id":"implicit.stat_988575597","text":"#% increased Energy Shield Recovery rate","type":"implicit"},{"id":"implicit.stat_1474913037","text":"#% to Critical Strike Multiplier with Staves","type":"implicit"},{"id":"implicit.stat_282417259","text":"#% increased Flammability Curse Effect","type":"implicit"},{"id":"implicit.stat_3802667447","text":"#% increased Quantity of Fish Caught","type":"implicit"},{"id":"implicit.stat_2090868905","text":"#% increased Accuracy Rating with Swords","type":"implicit"},{"id":"implicit.stat_140429540","text":"#% increased Critical Strike Chance for Spells while wielding a Staff","type":"implicit"},{"id":"implicit.stat_3485067555","text":"#% increased Chill Duration on Enemies","type":"implicit"},{"id":"implicit.stat_1065909420","text":"#% increased Vulnerability Curse Effect","type":"implicit"},{"id":"implicit.stat_2349237916","text":"#% to Critical Strike Multiplier for Spells while Dual Wielding","type":"implicit"},{"id":"implicit.stat_3395908304","text":"#% increased Conductivity Curse Effect","type":"implicit"},{"id":"implicit.stat_327253797","text":"#% chance to Defend with Double Armour","type":"implicit"},{"id":"implicit.stat_2915373966","text":"Gain #% of Cold Damage as Extra Chaos Damage","type":"implicit"},{"id":"implicit.stat_4134865890","text":"#% increased Attack Damage per 500 Maximum Mana","type":"implicit"},{"id":"implicit.stat_3948776386","text":"#% increased Damage per 15 Strength","type":"implicit"},{"id":"implicit.stat_2062174346","text":"#% increased Damage per 15 Dexterity","type":"implicit"},{"id":"implicit.stat_3871212304","text":"Increases and Reductions to Damage of Vaal Skills also apply to Non-Vaal Skills","type":"implicit"},{"id":"implicit.stat_1617235962","text":"#% increased Accuracy Rating with Staves","type":"implicit"},{"id":"implicit.stat_211381198","text":"# Energy Shield gained for each Enemy hit by your Attacks","type":"implicit"},{"id":"implicit.stat_952509814","text":"#% increased Critical Strike Chance for Spells while holding a Shield","type":"implicit"},{"id":"implicit.stat_3555662994","text":"#% increased Spell Damage per 500 Maximum Mana","type":"implicit"},{"id":"implicit.stat_1297965523","text":"#% increased Accuracy Rating with Claws","type":"implicit"},{"id":"implicit.stat_3909846940","text":"Item drops on Death if Equipped by an Animated Guardian","type":"implicit"},{"id":"implicit.stat_2811834828","text":"#% to Critical Strike Multiplier with Claws","type":"implicit"},{"id":"implicit.stat_1218939541","text":"#% increased Critical Strike Chance for Spells while Dual Wielding","type":"implicit"},{"id":"implicit.stat_2962782530","text":"# to Armour and Evasion Rating while you have Fortify","type":"implicit"},{"id":"implicit.stat_3309607228","text":"#% reduced Damage taken if Corrupted","type":"implicit"},{"id":"implicit.stat_4118987751","text":"#% increased Maximum total Recovery per second from Life Leech","type":"implicit"},{"id":"implicit.stat_3208450870","text":"#% increased Accuracy Rating with Maces or Sceptres","type":"implicit"},{"id":"implicit.stat_1549898151","text":"Grace has #% reduced Mana Reservation","type":"implicit"},{"id":"implicit.stat_2889664727","text":"#% chance to Avoid Lightning Damage from Hits","type":"implicit"},{"id":"implicit.stat_2353576063","text":"#% increased Effect of your Curses","type":"implicit"},{"id":"implicit.stat_280213220","text":"#% chance to Taunt Enemies on Hit with Attacks","type":"implicit"},{"id":"implicit.stat_3240073117","text":"#% increased Life Recovery rate","type":"implicit"},{"id":"implicit.stat_3645693773","text":"Spectres have #% increased Damage","type":"implicit"},{"id":"implicit.stat_2013799819","text":"#% increased Maximum total Recovery per second from Energy Shield Leech","type":"implicit"},{"id":"implicit.stat_2477636501","text":"#% increased Damage taken per 250 Dexterity","type":"implicit"},{"id":"implicit.stat_3522931817","text":"#% increased Damage taken per 250 Intelligence","type":"implicit"},{"id":"implicit.stat_3604946673","text":"# to Level of Socketed Minion Gems","type":"implicit"},{"id":"implicit.stat_3743375737","text":"#% chance to Avoid Cold Damage from Hits","type":"implicit"},{"id":"implicit.stat_2612056840","text":"#% increased Spell Damage per 16 Dexterity","type":"implicit"},{"id":"implicit.stat_1443108510","text":"#% increased Damage taken per 250 Strength","type":"implicit"},{"id":"implicit.stat_1916706958","text":"#% chance to Avoid interruption from Stuns while Casting","type":"implicit"},{"id":"implicit.stat_42242677","text":"#% chance to Avoid Fire Damage from Hits","type":"implicit"},{"id":"implicit.stat_1839076647","text":"#% increased Projectile Damage","type":"implicit"},{"id":"implicit.stat_67280387","text":"Gain #% of Maximum Life as Extra Maximum Energy Shield","type":"implicit"},{"id":"implicit.stat_547412107","text":"#% increased Vaal Skill Effect Duration","type":"implicit"},{"id":"implicit.stat_3887484120","text":"#% increased maximum Life if Corrupted","type":"implicit"},{"id":"implicit.stat_703341733","text":"#% increased raising of Alert Level","type":"implicit"},{"id":"implicit.stat_561861132","text":"Remove Shock when you use a Flask","type":"implicit"},{"id":"implicit.stat_2221570601","text":"#% Global chance to Blind Enemies on hit","type":"implicit"},{"id":"implicit.stat_2094281311","text":"#% to Animated Guardian Elemental Resistances","type":"implicit"},{"id":"implicit.stat_1025108940","text":"#% increased maximum Energy Shield if Corrupted","type":"implicit"},{"id":"implicit.stat_3513180117","text":"#% increased Mana Recovery rate","type":"implicit"},{"id":"implicit.stat_3296873305","text":"Remove Chill and Freeze when you use a Flask","type":"implicit"},{"id":"implicit.stat_1643688236","text":"Unaffected by Burning Ground","type":"implicit"},{"id":"implicit.stat_1162425204","text":"Remove Ignite and Burning when you use a Flask","type":"implicit"},{"id":"implicit.stat_3885634897","text":"#% chance to Poison on Hit (Local)","type":"implicit"},{"id":"implicit.stat_1211769158","text":"Damage with Weapons Penetrates #% Cold Resistance","type":"implicit"},{"id":"implicit.stat_969576725","text":"#% chance to Evade Attack Hits while affected by Grace","type":"implicit"},{"id":"implicit.stat_3980924189","text":"#% to maximum Chance to Dodge Spell Hits","type":"implicit"},{"id":"implicit.stat_1873457881","text":"#% additional Physical Damage Reduction while affected by Determination","type":"implicit"},{"id":"implicit.stat_4023723828","text":"#% increased Global Critical Strike Chance if Corrupted","type":"implicit"},{"id":"implicit.stat_2818518881","text":"#% increased Spell Damage per 10 Intelligence","type":"implicit"},{"id":"implicit.stat_2264295449","text":"# to Melee Strike Range","type":"implicit"},{"id":"implicit.stat_2234049899","text":"Unaffected by Shocked Ground","type":"implicit"},{"id":"implicit.stat_1579578270","text":"#% increased Trap Disarmament speed","type":"implicit"},{"id":"implicit.stat_1073314277","text":"#% increased Spell Damage per 10 Strength","type":"implicit"},{"id":"implicit.stat_1123291426","text":"Damage with Weapons Penetrates #% Fire Resistance","type":"implicit"},{"id":"implicit.stat_3312732077","text":"#% increased Lockpicking speed","type":"implicit"},{"id":"implicit.stat_2241902512","text":"#% increased Fire Damage per 20 Strength","type":"implicit"},{"id":"implicit.stat_2388574377","text":"#% to maximum Chance to Block Spell Damage","type":"implicit"},{"id":"implicit.stat_3653191834","text":"Unaffected by Chilled Ground","type":"implicit"},{"id":"implicit.stat_1101403182","text":"#% reduced Damage taken from Damage Over Time","type":"implicit"},{"id":"implicit.stat_301214136","text":"#% to maximum Chance to Dodge Attack Hits","type":"implicit"},{"id":"implicit.stat_3301510262","text":"Damage with Weapons Penetrates #% Lightning Resistance","type":"implicit"},{"id":"implicit.stat_2847917427","text":"#% increased Demolition speed","type":"implicit"}]},{"label":"Fractured","entries":[{"id":"fractured.stat_3299347043","text":"# to maximum Life","type":"fractured"},{"id":"fractured.stat_4220027924","text":"#% to Cold Resistance","type":"fractured"},{"id":"fractured.stat_3372524247","text":"#% to Fire Resistance","type":"fractured"},{"id":"fractured.stat_1671376347","text":"#% to Lightning Resistance","type":"fractured"},{"id":"fractured.stat_2511217560","text":"#% increased Stun and Block Recovery","type":"fractured"},{"id":"fractured.stat_1050105434","text":"# to maximum Mana","type":"fractured"},{"id":"fractured.stat_4080418644","text":"# to Strength","type":"fractured"},{"id":"fractured.stat_3261801346","text":"# to Dexterity","type":"fractured"},{"id":"fractured.stat_328541901","text":"# to Intelligence","type":"fractured"},{"id":"fractured.stat_3325883026","text":"Regenerate # Life per second","type":"fractured"},{"id":"fractured.stat_691932474","text":"# to Accuracy Rating (Local)","type":"fractured"},{"id":"fractured.stat_4052037485","text":"# to maximum Energy Shield (Local)","type":"fractured"},{"id":"fractured.stat_803737631","text":"# to Accuracy Rating","type":"fractured"},{"id":"fractured.stat_2202161594","text":"Slaying Enemies close together has a #% chance to attract monsters from Beyond","type":"fractured"},{"id":"fractured.stat_3556824919","text":"#% to Global Critical Strike Multiplier","type":"fractured"},{"id":"fractured.stat_210067635","text":"#% increased Attack Speed (Local)","type":"fractured"},{"id":"fractured.stat_3336890334","text":"Adds # to # Lightning Damage (Local)","type":"fractured"},{"id":"fractured.stat_1509134228","text":"#% increased Physical Damage","type":"fractured"},{"id":"fractured.stat_709508406","text":"Adds # to # Fire Damage (Local)","type":"fractured"},{"id":"fractured.stat_3489782002","text":"# to maximum Energy Shield","type":"fractured"},{"id":"fractured.stat_3917489142","text":"#% increased Rarity of Items found","type":"fractured"},{"id":"fractured.stat_1037193709","text":"Adds # to # Cold Damage (Local)","type":"fractured"},{"id":"fractured.stat_1940865751","text":"Adds # to # Physical Damage (Local)","type":"fractured"},{"id":"fractured.stat_4015621042","text":"#% increased Energy Shield (Local)","type":"fractured"},{"id":"fractured.stat_53045048","text":"# to Evasion Rating (Local)","type":"fractured"},{"id":"fractured.stat_2375316951","text":"#% increased Critical Strike Chance","type":"fractured"},{"id":"fractured.stat_3484657501","text":"# to Armour (Local)","type":"fractured"},{"id":"fractured.stat_2517001139","text":"#% increased Stun Duration on Enemies","type":"fractured"},{"id":"fractured.stat_3695891184","text":"# Life gained on Kill","type":"fractured"},{"id":"fractured.stat_2974417149","text":"#% increased Spell Damage","type":"fractured"},{"id":"fractured.stat_3032590688","text":"Adds # to # Physical Damage to Attacks","type":"fractured"},{"id":"fractured.stat_2250533757","text":"#% increased Movement Speed","type":"fractured"},{"id":"fractured.stat_789117908","text":"#% increased Mana Regeneration Rate","type":"fractured"},{"id":"fractured.stat_3639275092","text":"#% increased Attribute Requirements","type":"fractured"},{"id":"fractured.stat_1368271171","text":"# Mana gained on Kill","type":"fractured"},{"id":"fractured.stat_1263695895","text":"#% increased Light Radius","type":"fractured"},{"id":"fractured.stat_2923486259","text":"#% to Chaos Resistance","type":"fractured"},{"id":"fractured.stat_2901986750","text":"#% to all Elemental Resistances","type":"fractured"},{"id":"fractured.stat_3767873853","text":"Reflects # Physical Damage to Melee Attackers","type":"fractured"},{"id":"fractured.stat_737908626","text":"#% increased Critical Strike Chance for Spells","type":"fractured"},{"id":"fractured.stat_124859000","text":"#% increased Evasion Rating (Local)","type":"fractured"},{"id":"fractured.stat_1379411836","text":"# to all Attributes","type":"fractured"},{"id":"fractured.stat_821021828","text":"# Life gained for each Enemy hit by Attacks","type":"fractured"},{"id":"fractured.stat_387439868","text":"#% increased Elemental Damage with Attack Skills","type":"fractured"},{"id":"fractured.stat_2891184298","text":"#% increased Cast Speed","type":"fractured"},{"id":"fractured.stat_1443060084","text":"#% reduced Enemy Stun Threshold","type":"fractured"},{"id":"fractured.stat_3321629045","text":"#% increased Armour and Energy Shield (Local)","type":"fractured"},{"id":"fractured.stat_1999113824","text":"#% increased Evasion and Energy Shield (Local)","type":"fractured"},{"id":"fractured.stat_1062208444","text":"#% increased Armour (Local)","type":"fractured"},{"id":"fractured.stat_2451402625","text":"#% increased Armour and Evasion (Local)","type":"fractured"},{"id":"fractured.stat_1294118672","text":"#% increased Damage with Bleeding","type":"fractured"},{"id":"fractured.stat_3962278098","text":"#% increased Fire Damage","type":"fractured"},{"id":"fractured.stat_2831165374","text":"Adds # to # Lightning Damage to Spells","type":"fractured"},{"id":"fractured.stat_3291658075","text":"#% increased Cold Damage","type":"fractured"},{"id":"fractured.stat_2231156303","text":"#% increased Lightning Damage","type":"fractured"},{"id":"fractured.stat_1133016593","text":"Adds # to # Fire Damage to Spells","type":"fractured"},{"id":"fractured.stat_829382474","text":"# to Level of Socketed Melee Gems","type":"fractured"},{"id":"fractured.stat_1754445556","text":"Adds # to # Lightning Damage to Attacks","type":"fractured"},{"id":"fractured.stat_3593843976","text":"#% of Physical Attack Damage Leeched as Life","type":"fractured"},{"id":"fractured.stat_1290399200","text":"#% increased Damage with Poison","type":"fractured"},{"id":"fractured.stat_2469416729","text":"Adds # to # Cold Damage to Spells","type":"fractured"},{"id":"fractured.stat_1573130764","text":"Adds # to # Fire Damage to Attacks","type":"fractured"},{"id":"fractured.stat_4067062424","text":"Adds # to # Cold Damage to Attacks","type":"fractured"},{"id":"fractured.stat_681332047","text":"#% increased Attack Speed","type":"fractured"},{"id":"fractured.stat_587431675","text":"#% increased Global Critical Strike Chance","type":"fractured"},{"id":"fractured.stat_3237948413","text":"#% of Physical Attack Damage Leeched as Mana","type":"fractured"},{"id":"fractured.stat_3759663284","text":"#% increased Projectile Speed","type":"fractured"},{"id":"fractured.stat_4043416969","text":"# to Level of Socketed Lightning Gems","type":"fractured"},{"id":"fractured.stat_809229260","text":"# to Armour","type":"fractured"},{"id":"fractured.stat_2144192055","text":"# to Evasion Rating","type":"fractured"},{"id":"fractured.stat_1589917703","text":"Minions deal #% increased Damage","type":"fractured"},{"id":"fractured.stat_624954515","text":"#% increased Global Accuracy Rating","type":"fractured"},{"id":"fractured.stat_2011656677","text":"#% increased Poison Duration","type":"fractured"},{"id":"fractured.stat_2482852589","text":"#% increased maximum Energy Shield","type":"fractured"},{"id":"fractured.stat_3604946673","text":"# to Level of Socketed Minion Gems","type":"fractured"},{"id":"fractured.stat_1459321413","text":"#% increased Bleeding Duration","type":"fractured"},{"id":"fractured.stat_1175385867","text":"#% increased Burning Damage","type":"fractured"},{"id":"fractured.stat_1519615863","text":"#% chance to cause Bleeding on Hit","type":"fractured"},{"id":"fractured.stat_2797971005","text":"# Life gained for each Enemy hit by your Attacks","type":"fractured"},{"id":"fractured.stat_1645459191","text":"# to Level of Socketed Cold Gems","type":"fractured"},{"id":"fractured.stat_967627487","text":"#% increased Damage over Time","type":"fractured"},{"id":"fractured.stat_2027269580","text":"# to Level of Socketed Bow Gems","type":"fractured"},{"id":"fractured.stat_3885634897","text":"#% chance to Poison on Hit (Local)","type":"fractured"},{"id":"fractured.stat_339179093","text":"# to Level of Socketed Fire Gems","type":"fractured"},{"id":"fractured.stat_2106365538","text":"#% increased Evasion Rating","type":"fractured"},{"id":"fractured.stat_755922799","text":"Minions have #% chance to deal Double Damage","type":"fractured"},{"id":"fractured.stat_3319896421","text":"Gain #% of Physical Damage as Extra Chaos Damage","type":"fractured"},{"id":"fractured.stat_2866361420","text":"#% increased Armour","type":"fractured"},{"id":"fractured.stat_2749862839","text":"#% chance to Dodge Attack Hits","type":"fractured"},{"id":"fractured.stat_1310194496","text":"#% increased Global Physical Damage","type":"fractured"},{"id":"fractured.stat_2675603254","text":"# to Level of Socketed Chaos Gems","type":"fractured"},{"id":"fractured.stat_2843100721","text":"# to Level of Socketed Gems","type":"fractured"},{"id":"fractured.stat_4055307827","text":"#% to Chaos Damage over Time Multiplier","type":"fractured"},{"id":"fractured.stat_983749596","text":"#% increased maximum Life","type":"fractured"},{"id":"fractured.stat_3594640492","text":"Regenerate #% of Energy Shield per second","type":"fractured"},{"id":"fractured.stat_4253454700","text":"#% Chance to Block (Shields)","type":"fractured"},{"id":"fractured.stat_1950806024","text":"#% to Cold Damage over Time Multiplier","type":"fractured"},{"id":"fractured.stat_2223678961","text":"Adds # to # Chaos Damage (Local)","type":"fractured"},{"id":"fractured.stat_2122183138","text":"# Mana gained when you Block","type":"fractured"},{"id":"fractured.stat_1599775597","text":"Gain #% of Fire Damage as Extra Chaos Damage","type":"fractured"},{"id":"fractured.stat_2915373966","text":"Gain #% of Cold Damage as Extra Chaos Damage","type":"fractured"},{"id":"fractured.stat_2391261970","text":"Rare Monsters each have a Nemesis Mod","type":"fractured"},{"id":"fractured.stat_2309614417","text":"#% chance to Freeze","type":"fractured"},{"id":"fractured.stat_3741323227","text":"#% increased Flask Effect Duration","type":"fractured"},{"id":"fractured.stat_4262448838","text":"#% chance to Avoid being Stunned","type":"fractured"},{"id":"fractured.stat_2402136583","text":"Gain #% of Lightning Damage as Extra Chaos Damage","type":"fractured"},{"id":"fractured.stat_3416410609","text":"#% Chance to Block Projectile Attack Damage","type":"fractured"},{"id":"fractured.stat_644456512","text":"#% reduced Flask Charges used","type":"fractured"},{"id":"fractured.stat_2063695047","text":"Gain #% of Non-Chaos Damage as extra Chaos Damage","type":"fractured"},{"id":"fractured.stat_1538773178","text":"#% chance to Shock","type":"fractured"},{"id":"fractured.stat_3793155082","text":"#% more Rare Monsters","type":"fractured"},{"id":"fractured.stat_51994685","text":"#% increased Flask Life Recovery rate","type":"fractured"},{"id":"fractured.stat_1335054179","text":"#% chance to Ignite","type":"fractured"},{"id":"fractured.stat_1452809865","text":"#% increased Flask Charges gained","type":"fractured"},{"id":"fractured.stat_3005472710","text":"#% chance to Avoid Elemental Ailments","type":"fractured"},{"id":"fractured.stat_561307714","text":"#% Chance to Block Spell Damage","type":"fractured"},{"id":"fractured.stat_4251717817","text":"#% increased Area Damage","type":"fractured"},{"id":"fractured.stat_2488361432","text":"#% increased Monster Cast Speed","type":"fractured"},{"id":"fractured.stat_436556261","text":"This Map's Modifiers to Quantity of Items found also apply to Rarity","type":"fractured"},{"id":"fractured.stat_696707743","text":"#% chance to Dodge Spell Hits","type":"fractured"},{"id":"fractured.stat_2672805335","text":"#% increased Attack and Cast Speed","type":"fractured"},{"id":"fractured.stat_1040269876","text":"Adds # to # Lightning Damage to Bow Attacks","type":"fractured"},{"id":"fractured.stat_3441501978","text":"#% to Fire and Lightning Resistances","type":"fractured"},{"id":"fractured.stat_1412217137","text":"#% increased Flask Mana Recovery rate","type":"fractured"},{"id":"fractured.stat_591105508","text":"# to Level of all Fire Spell Skill Gems","type":"fractured"},{"id":"fractured.stat_3771516363","text":"#% additional Physical Damage Reduction","type":"fractured"},{"id":"fractured.stat_2915988346","text":"#% to Fire and Cold Resistances","type":"fractured"},{"id":"fractured.stat_1653010703","text":"#% to Non-Ailment Chaos Damage over Time Multiplier","type":"fractured"},{"id":"fractured.stat_836936635","text":"Regenerate #% of Life per second","type":"fractured"},{"id":"fractured.stat_736967255","text":"#% increased Chaos Damage","type":"fractured"},{"id":"fractured.stat_1172029298","text":"Minions deal # to # additional Physical Damage","type":"fractured"},{"id":"fractured.stat_215124030","text":"Adds # to # Cold Damage to Bow Attacks","type":"fractured"},{"id":"fractured.stat_4249220643","text":"#% increased Attack Speed while Dual Wielding","type":"fractured"},{"id":"fractured.stat_2748665614","text":"#% increased maximum Mana","type":"fractured"},{"id":"fractured.stat_3805075944","text":"#% increased Attack Speed while holding a Shield","type":"fractured"},{"id":"fractured.stat_2154246560","text":"#% increased Damage","type":"fractured"},{"id":"fractured.stat_2300185227","text":"# to Dexterity and Intelligence","type":"fractured"},{"id":"fractured.stat_4277795662","text":"#% to Cold and Lightning Resistances","type":"fractured"},{"id":"fractured.stat_1535626285","text":"# to Strength and Intelligence","type":"fractured"},{"id":"fractured.stat_1839076647","text":"#% increased Projectile Damage","type":"fractured"},{"id":"fractured.stat_538848803","text":"# to Strength and Dexterity","type":"fractured"},{"id":"fractured.stat_3416853625","text":"Monsters deal #% extra Physical Damage as Lightning","type":"fractured"},{"id":"fractured.stat_742529963","text":"Bow Attacks fire an additional Arrow","type":"fractured"},{"id":"fractured.stat_2561836520","text":"Regenerate # Energy Shield per second","type":"fractured"},{"id":"fractured.stat_124131830","text":"# to Level of all Spell Skill Gems","type":"fractured"},{"id":"fractured.stat_95249895","text":"#% more Monster Life","type":"fractured"},{"id":"fractured.stat_1545858329","text":"# to Level of all Lightning Spell Skill Gems","type":"fractured"},{"id":"fractured.stat_3152982863","text":"Minions deal # to # additional Cold Damage","type":"fractured"},{"id":"fractured.stat_474294393","text":"#% reduced Mana Cost of Skills","type":"fractured"},{"id":"fractured.stat_2930653471","text":"Minions deal # to # Added Lightning Damage","type":"fractured"},{"id":"fractured.stat_3375935924","text":"Minions have #% increased Attack Speed","type":"fractured"},{"id":"fractured.stat_3351784991","text":"Minions deal # to # additional Fire Damage","type":"fractured"},{"id":"fractured.stat_2918708827","text":"#% chance to gain Phasing for 4 seconds on Kill","type":"fractured"},{"id":"fractured.stat_1813451228","text":"#% increased Attack Speed with One Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_2889601781","text":"Minions deal # to # additional Chaos Damage","type":"fractured"},{"id":"fractured.stat_3023957681","text":"#% chance to gain Onslaught for 4 seconds on Kill","type":"fractured"},{"id":"fractured.stat_1002362373","text":"#% increased Melee Damage","type":"fractured"},{"id":"fractured.stat_1585344030","text":"#% increased Attack Speed if you've dealt a Critical Strike Recently","type":"fractured"},{"id":"fractured.stat_3120164895","text":"Adds # to # Fire Damage to Bow Attacks","type":"fractured"},{"id":"fractured.stat_83050999","text":"#% increased Damage with Swords","type":"fractured"},{"id":"fractured.stat_762600725","text":"# Life gained when you Block","type":"fractured"},{"id":"fractured.stat_3293699237","text":"#% increased Attack Speed with Swords","type":"fractured"},{"id":"fractured.stat_287491423","text":"#% additional Physical Damage Reduction against Abyssal Monsters","type":"fractured"},{"id":"fractured.stat_915908446","text":"#% to Critical Strike Multiplier with Cold Skills","type":"fractured"},{"id":"fractured.stat_2435536961","text":"Adds # to # Physical Damage to Spells","type":"fractured"},{"id":"fractured.stat_2300399854","text":"Adds # to # Chaos Damage to Spells","type":"fractured"},{"id":"fractured.stat_3550868361","text":"#% increased Attack Speed with Axes","type":"fractured"},{"id":"fractured.stat_674553446","text":"Adds # to # Chaos Damage to Attacks","type":"fractured"},{"id":"fractured.stat_3141070085","text":"#% increased Elemental Damage","type":"fractured"},{"id":"fractured.stat_2941585404","text":"#% increased Trap Damage","type":"fractured"},{"id":"fractured.stat_2307547323","text":"#% to Critical Strike Multiplier with Fire Skills","type":"fractured"},{"id":"fractured.stat_4291461939","text":"Regenerate # Mana per second","type":"fractured"},{"id":"fractured.stat_2441475928","text":"#% to Critical Strike Multiplier with Lightning Skills","type":"fractured"},{"id":"fractured.stat_444174528","text":"#% increased Attack Damage while Dual Wielding","type":"fractured"},{"id":"fractured.stat_839186746","text":"+#% Monster Physical Damage Reduction","type":"fractured"},{"id":"fractured.stat_3314142259","text":"#% increased Damage with Axes","type":"fractured"},{"id":"fractured.stat_1010549321","text":"#% increased Damage with One Handed Weapons","type":"fractured"},{"id":"fractured.stat_1890519597","text":"#% increased Monster Damage","type":"fractured"},{"id":"fractured.stat_2787733863","text":"Adds # to # Lightning Damage to Wand Attacks","type":"fractured"},{"id":"fractured.stat_1073942215","text":"#% increased Freeze Duration on Enemies","type":"fractured"},{"id":"fractured.stat_2254480358","text":"# to Level of all Cold Spell Skill Gems","type":"fractured"},{"id":"fractured.stat_795138349","text":"#% chance to Poison on Hit","type":"fractured"},{"id":"fractured.stat_2137912951","text":"#% increased Mine Damage","type":"fractured"},{"id":"fractured.stat_455556407","text":"Damage Penetrates #% Elemental Resistance if you haven't Killed Recently","type":"fractured"},{"id":"fractured.stat_2109106920","text":"Unique Boss has #% increased Attack and Cast Speed","type":"fractured"},{"id":"fractured.stat_4000101551","text":"Minions have #% increased Cast Speed","type":"fractured"},{"id":"fractured.stat_2546185479","text":"#% to Critical Strike Multiplier while Dual Wielding","type":"fractured"},{"id":"fractured.stat_3183973644","text":"Monsters' skills Chain # additional times","type":"fractured"},{"id":"fractured.stat_1917910910","text":"#% increased Attack Speed with Two Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_2843214518","text":"#% increased Attack Damage","type":"fractured"},{"id":"fractured.stat_3851254963","text":"#% increased Totem Damage","type":"fractured"},{"id":"fractured.stat_1393393937","text":"#% increased Attack Damage while holding a Shield","type":"fractured"},{"id":"fractured.stat_2805714016","text":"#% increased Damage with Hits against Chilled Enemies","type":"fractured"},{"id":"fractured.stat_1000591322","text":"Area contains many Totems","type":"fractured"},{"id":"fractured.stat_1923879260","text":"Attacks cannot cause Bleeding","type":"fractured"},{"id":"fractured.stat_972201717","text":"Adds # to # Cold Damage to Sword Attacks","type":"fractured"},{"id":"fractured.stat_1054098949","text":"+#% Monster Elemental Resistance","type":"fractured"},{"id":"fractured.stat_3854949926","text":"#% increased Movement Speed if you haven't taken Damage Recently","type":"fractured"},{"id":"fractured.stat_1836374041","text":"#% increased Damage with Two Handed Weapons","type":"fractured"},{"id":"fractured.stat_1760576992","text":"Adds # to # Physical Damage to Bow Attacks","type":"fractured"},{"id":"fractured.stat_3561450806","text":"Area has increased monster variety","type":"fractured"},{"id":"fractured.stat_770672621","text":"Minions have #% increased maximum Life","type":"fractured"},{"id":"fractured.stat_2937483991","text":"#% to Critical Strike Multiplier if you've Killed Recently","type":"fractured"},{"id":"fractured.stat_799271621","text":"Area contains two Unique Bosses","type":"fractured"},{"id":"fractured.stat_3257279374","text":"#% increased Damage against Abyssal Monsters","type":"fractured"},{"id":"fractured.stat_908516597","text":"Regenerate #% of Life per second while moving","type":"fractured"},{"id":"fractured.stat_938645499","text":"#% Chance to Block Spell Damage while holding a Shield","type":"fractured"},{"id":"fractured.stat_4193088553","text":"#% increased Damage over Time while wielding a Two Handed Weapon","type":"fractured"},{"id":"fractured.stat_1237708713","text":"Adds # to # Lightning Damage to Sword Attacks","type":"fractured"},{"id":"fractured.stat_2166444903","text":"#% Chance to Block Attack Damage while Dual Wielding","type":"fractured"},{"id":"fractured.stat_670153687","text":"#% to Critical Strike Multiplier with One Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_3278968597","text":"#% chance to Dodge Attack and Spell Hits if you've\nbeen Hit Recently","type":"fractured"},{"id":"fractured.stat_734823525","text":"#% increased Evasion Rating while moving","type":"fractured"},{"id":"fractured.stat_1766142294","text":"#% increased Spell Damage while holding a Shield","type":"fractured"},{"id":"fractured.stat_1174076861","text":"#% increased Cast Speed if you've dealt a Critical Strike Recently","type":"fractured"},{"id":"fractured.stat_2553656203","text":"Monsters have a #% chance to cause Elemental Ailments on Hit","type":"fractured"},{"id":"fractured.stat_1186596295","text":"#% increased Critical Strike Chance with Lightning Skills","type":"fractured"},{"id":"fractured.stat_1104796138","text":"#% increased Critical Strike Chance with Fire Skills","type":"fractured"},{"id":"fractured.stat_138741818","text":"#% Chance to Block Spell Damage while Dual Wielding","type":"fractured"},{"id":"fractured.stat_3668351662","text":"#% increased Shock Duration on Enemies","type":"fractured"},{"id":"fractured.stat_2383797932","text":"Adds # to # Cold Damage to Wand Attacks","type":"fractured"},{"id":"fractured.stat_1072119541","text":"#% increased Damage if you've Killed Recently","type":"fractured"},{"id":"fractured.stat_1086147743","text":"#% increased Ignite Duration on Enemies","type":"fractured"},{"id":"fractured.stat_1366534040","text":"Players are Cursed with Vulnerability, with #% increased Effect","type":"fractured"},{"id":"fractured.stat_4231842891","text":"Adds # to # Lightning Damage to Claw Attacks","type":"fractured"},{"id":"fractured.stat_1101206134","text":"#% Chance to Block Spell Damage if you were Damaged by a Hit Recently","type":"fractured"},{"id":"fractured.stat_3796523155","text":"#% less effect of Curses on Monsters","type":"fractured"},{"id":"fractured.stat_3448216135","text":"Monsters deal #% extra Physical Damage as Cold","type":"fractured"},{"id":"fractured.stat_977908611","text":"#% chance to Knock Enemies Back on hit","type":"fractured"},{"id":"fractured.stat_1421645223","text":"#% increased Attack Speed with Claws","type":"fractured"},{"id":"fractured.stat_3382807662","text":"#% to Fire Damage over Time Multiplier","type":"fractured"},{"id":"fractured.stat_97115311","text":"Magic Monster Packs each have a Bloodline Mod","type":"fractured"},{"id":"fractured.stat_4237442815","text":"#% to Melee Critical Strike Multiplier","type":"fractured"},{"id":"fractured.stat_318953428","text":"#% chance to Blind Enemies on Hit with Attacks","type":"fractured"},{"id":"fractured.stat_928238845","text":"#% increased Cast Speed with Cold Skills","type":"fractured"},{"id":"fractured.stat_3759735052","text":"#% increased Attack Speed with Bows","type":"fractured"},{"id":"fractured.stat_2096159630","text":"Adds # to # Lightning Damage to Mace or Sceptre Attacks","type":"fractured"},{"id":"fractured.stat_2856328513","text":"#% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently","type":"fractured"},{"id":"fractured.stat_1959158336","text":"Unique Boss has #% increased Life","type":"fractured"},{"id":"fractured.stat_1569407745","text":"#% to Critical Strike Multiplier with Elemental Skills","type":"fractured"},{"id":"fractured.stat_3337344042","text":"#% increased Critical Strike Chance with Cold Skills","type":"fractured"},{"id":"fractured.stat_1244360317","text":"#% increased Damage over Time while holding a Shield","type":"fractured"},{"id":"fractured.stat_2382196858","text":"#% increased Cast Speed while Dual Wielding","type":"fractured"},{"id":"fractured.stat_279227559","text":"#% increased Movement Speed if you've Killed Recently","type":"fractured"},{"id":"fractured.stat_686254215","text":"#% increased Totem Life","type":"fractured"},{"id":"fractured.stat_4061558269","text":"#% Chance to Block Attack Damage while holding a Shield","type":"fractured"},{"id":"fractured.stat_3603666270","text":"#% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently","type":"fractured"},{"id":"fractured.stat_3702513529","text":"#% increased Attack Critical Strike Chance while Dual Wielding","type":"fractured"},{"id":"fractured.stat_1782176131","text":"Adds # to # Cold Damage to Axe Attacks","type":"fractured"},{"id":"fractured.stat_87098247","text":"Adds # to # Fire Damage to Wand Attacks","type":"fractured"},{"id":"fractured.stat_3988349707","text":"#% to Damage over Time Multiplier","type":"fractured"},{"id":"fractured.stat_558910024","text":"Players are Cursed with Elemental Weakness, with #% increased Effect","type":"fractured"},{"id":"fractured.stat_1678690824","text":"#% increased Spell Damage while Dual Wielding","type":"fractured"},{"id":"fractured.stat_4255924189","text":"Adds # to # Physical Damage to Spells while Dual Wielding","type":"fractured"},{"id":"fractured.stat_252507949","text":"#% to Critical Strike Multiplier with Two Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_1588049749","text":"Monsters have #% increased Accuracy Rating","type":"fractured"},{"id":"fractured.stat_2323739383","text":"Minions have #% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed","type":"fractured"},{"id":"fractured.stat_2764017512","text":"Monsters reflect #% of Elemental Damage","type":"fractured"},{"id":"fractured.stat_1896971621","text":"#% increased Mine Throwing Speed","type":"fractured"},{"id":"fractured.stat_4226189338","text":"# to Level of all Chaos Spell Skill Gems","type":"fractured"},{"id":"fractured.stat_677564538","text":"Non-Channelling Skills have # to Total Mana Cost","type":"fractured"},{"id":"fractured.stat_1423639565","text":"Minions have #% to all Elemental Resistances","type":"fractured"},{"id":"fractured.stat_2381842786","text":"#% increased Critical Strike Chance with One Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_214001793","text":"#% increased Damage over Time while Dual Wielding","type":"fractured"},{"id":"fractured.stat_1788635023","text":"#% increased Cast Speed with Lightning Skills","type":"fractured"},{"id":"fractured.stat_1582068183","text":"Adds # to # Lightning Damage to Axe Attacks","type":"fractured"},{"id":"fractured.stat_1612163368","text":"#% increased Cast Speed while holding a Shield","type":"fractured"},{"id":"fractured.stat_1782086450","text":"#% faster start of Energy Shield Recharge","type":"fractured"},{"id":"fractured.stat_601249293","text":"Adds # to # Fire Damage to Sword Attacks","type":"fractured"},{"id":"fractured.stat_187418672","text":"Adds # to # Cold Damage to Mace or Sceptre Attacks","type":"fractured"},{"id":"fractured.stat_2848646243","text":"Adds # to # Cold Damage to Claw Attacks","type":"fractured"},{"id":"fractured.stat_274716455","text":"#% to Critical Strike Multiplier for Spells","type":"fractured"},{"id":"fractured.stat_2464689927","text":"Adds # to # Cold Damage to Spells while wielding a Two Handed Weapon","type":"fractured"},{"id":"fractured.stat_1809006367","text":"Totems gain #% to all Elemental Resistances","type":"fractured"},{"id":"fractured.stat_4154059009","text":"Monsters are Hexproof","type":"fractured"},{"id":"fractured.stat_3220927448","text":"Adds # to # Fire Damage to Staff Attacks","type":"fractured"},{"id":"fractured.stat_852195286","text":"#% Chance to Block Attack Damage if you were Damaged by a Hit Recently","type":"fractured"},{"id":"fractured.stat_3479683016","text":"Adds # to # Lightning Damage to Dagger Attacks","type":"fractured"},{"id":"fractured.stat_2154290807","text":"Adds # to # Fire Damage to Claw Attacks","type":"fractured"},{"id":"fractured.stat_1327522346","text":"#% increased Mana Regeneration Rate while moving","type":"fractured"},{"id":"fractured.stat_2515515064","text":"#% increased Attack Speed with Maces or Sceptres","type":"fractured"},{"id":"fractured.stat_3146788701","text":"Adds # to # Fire Damage to Mace or Sceptre Attacks","type":"fractured"},{"id":"fractured.stat_118398748","text":"#% increased Trap Throwing Speed","type":"fractured"},{"id":"fractured.stat_1871765599","text":"#% chance to Avoid being Shocked","type":"fractured"},{"id":"fractured.stat_1910361436","text":"Adds # to # Fire Damage to Dagger Attacks","type":"fractured"},{"id":"fractured.stat_379328644","text":"#% increased Damage with Wands","type":"fractured"},{"id":"fractured.stat_2538566497","text":"#% increased Attack Speed with Daggers","type":"fractured"},{"id":"fractured.stat_3040667106","text":"Unique Boss has #% increased Area of Effect","type":"fractured"},{"id":"fractured.stat_3062329212","text":"Minions Regenerate # Life per second","type":"fractured"},{"id":"fractured.stat_4227567885","text":"Minions have #% increased Attack and Cast Speed if you or your Minions have Killed Recently","type":"fractured"},{"id":"fractured.stat_174664100","text":"Minions have #% increased Movement Speed","type":"fractured"},{"id":"fractured.stat_2431643207","text":"Minions have #% chance to Blind on Hit with Attacks","type":"fractured"},{"id":"fractured.stat_1600707273","text":"# to Level of all Physical Spell Skill Gems","type":"fractured"},{"id":"fractured.stat_1783006896","text":"#% chance to Avoid being Ignited","type":"fractured"},{"id":"fractured.stat_2120297997","text":"#% Chance to Block Spell Damage while wielding a Staff","type":"fractured"},{"id":"fractured.stat_3352373076","text":"Adds # to # Lightning Damage to Spells while Dual Wielding","type":"fractured"},{"id":"fractured.stat_1263342750","text":"Adds # to # Cold Damage to Dagger Attacks","type":"fractured"},{"id":"fractured.stat_412745376","text":"Minions deal #% increased Damage if you've used a Minion Skill Recently","type":"fractured"},{"id":"fractured.stat_211381198","text":"# Energy Shield gained for each Enemy hit by your Attacks","type":"fractured"},{"id":"fractured.stat_1476643878","text":"#% increased Cast Speed with Fire Skills","type":"fractured"},{"id":"fractured.stat_3496944181","text":"#% increased Spell Damage while wielding a Staff","type":"fractured"},{"id":"fractured.stat_1199429645","text":"#% increased Melee Critical Strike Chance","type":"fractured"},{"id":"fractured.stat_1261958804","text":"Adds # to # Cold Damage to Staff Attacks","type":"fractured"},{"id":"fractured.stat_2339757871","text":"#% increased Energy Shield Recharge Rate","type":"fractured"},{"id":"fractured.stat_1514829491","text":"#% chance to Avoid being Frozen","type":"fractured"},{"id":"fractured.stat_2671663397","text":"Adds # to # Cold Damage to Spells while holding a Shield","type":"fractured"},{"id":"fractured.stat_44182350","text":"Adds # to # Fire Damage to Spells while holding a Shield","type":"fractured"},{"id":"fractured.stat_2162097452","text":"# to Level of all Minion Skill Gems","type":"fractured"},{"id":"fractured.stat_3350803563","text":"Monsters Poison on Hit","type":"fractured"},{"id":"fractured.stat_3483999943","text":"#% chance to Avoid being Chilled","type":"fractured"},{"id":"fractured.stat_2461965653","text":"Adds # to # Fire Damage to Axe Attacks","type":"fractured"},{"id":"fractured.stat_1865428306","text":"Adds # to # Chaos Damage to Spells while Dual Wielding","type":"fractured"},{"id":"fractured.stat_1334465904","text":"#% increased Physical Damage with One Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_2424133568","text":"#% increased Armour if you haven't Killed Recently","type":"fractured"},{"id":"fractured.stat_1069260037","text":"#% increased Damage with Claws","type":"fractured"},{"id":"fractured.stat_4188894176","text":"#% increased Damage with Bows","type":"fractured"},{"id":"fractured.stat_2008219439","text":"#% increased Physical Damage with Axes","type":"fractured"},{"id":"fractured.stat_662691280","text":"Adds # to # Fire Damage to Spells while Dual Wielding","type":"fractured"},{"id":"fractured.stat_3212481075","text":"Adds # to # Lightning Damage to Staff Attacks","type":"fractured"},{"id":"fractured.stat_2135335407","text":"Adds # to # Fire Damage to Spells while wielding a Two Handed Weapon","type":"fractured"},{"id":"fractured.stat_2398198236","text":"Adds # to # Lightning Damage to Spells while wielding a Two Handed Weapon","type":"fractured"},{"id":"fractured.stat_820939409","text":"# Mana gained for each Enemy hit by your Attacks","type":"fractured"},{"id":"fractured.stat_3720627346","text":"#% increased Attack Speed with Wands","type":"fractured"},{"id":"fractured.stat_3501769159","text":"#% increased Melee Physical Damage while holding a Shield","type":"fractured"},{"id":"fractured.stat_1394963553","text":"#% increased Attack Speed with Staves","type":"fractured"},{"id":"fractured.stat_1309819744","text":"Monsters fire # additional Projectiles","type":"fractured"},{"id":"fractured.stat_764295120","text":"#% increased Critical Strike Chance with Two Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_1274831335","text":"#% increased Physical Attack Damage while Dual Wielding","type":"fractured"},{"id":"fractured.stat_1778298516","text":"#% Chance to Block Attack Damage while wielding a Staff","type":"fractured"},{"id":"fractured.stat_1086057912","text":"Minions deal #% increased Damage against Abyssal Monsters","type":"fractured"},{"id":"fractured.stat_2066542501","text":"#% increased Cast Speed while wielding a Staff","type":"fractured"},{"id":"fractured.stat_3586984690","text":"#% increased Damage with Daggers","type":"fractured"},{"id":"fractured.stat_3376452528","text":"Adds # to # Cold Damage to Spells while Dual Wielding","type":"fractured"},{"id":"fractured.stat_1910157106","text":"Players cannot Regenerate Life, Mana or Energy Shield","type":"fractured"},{"id":"fractured.stat_3376488707","text":"#% maximum Player Resistances","type":"fractured"},{"id":"fractured.stat_4087089130","text":"#% increased Damage with Staves","type":"fractured"},{"id":"fractured.stat_1618589784","text":"#% chance to avoid Bleeding","type":"fractured"},{"id":"fractured.stat_1651847244","text":"Player chance to Dodge is Lucky","type":"fractured"},{"id":"fractured.stat_2016708976","text":"#% to Quality","type":"fractured"},{"id":"fractured.stat_3954157711","text":"Adds # to # Physical Damage to Spells while holding a Shield","type":"fractured"},{"id":"fractured.stat_798009319","text":"Monsters' Action Speed cannot be modified to below base value","type":"fractured"},{"id":"fractured.stat_1181419800","text":"#% increased Damage with Maces or Sceptres","type":"fractured"},{"id":"fractured.stat_3166317791","text":"#% chance to Gain Unholy Might for 4 seconds on Melee Kill","type":"fractured"},{"id":"fractured.stat_2911442053","text":"Minions have #% chance to Taunt on Hit with Attacks","type":"fractured"},{"id":"fractured.stat_816367946","text":"All Monster Damage from Hits always Ignites","type":"fractured"},{"id":"fractured.stat_3846088475","text":"Socketed Gems deal #% more Damage over Time","type":"fractured"},{"id":"fractured.stat_687813731","text":"Monsters have #% chance to gain an Endurance Charge on Hit","type":"fractured"},{"id":"fractured.stat_2921084940","text":"Adds # to # Physical Damage to Spells while wielding a Two Handed Weapon","type":"fractured"},{"id":"fractured.stat_3110907148","text":"#% increased Cast Speed if a Minion has been Killed Recently","type":"fractured"},{"id":"fractured.stat_1801889979","text":"Adds # to # Lightning Damage to Spells while holding a Shield","type":"fractured"},{"id":"fractured.stat_4053951709","text":"#% chance to Avoid being Poisoned","type":"fractured"},{"id":"fractured.stat_3079007202","text":"#% chance to Trigger a Socketed Spell when you Use a Skill","type":"fractured"},{"id":"fractured.stat_2810434465","text":"Gain #% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently","type":"fractured"},{"id":"fractured.stat_1743759111","text":"Adds # to # Chaos Damage to Spells while wielding a Two Handed Weapon","type":"fractured"},{"id":"fractured.stat_3814560373","text":"#% increased Physical Damage with Swords","type":"fractured"},{"id":"fractured.stat_1040189894","text":"Adds # to # Physical Damage to Sword Attacks","type":"fractured"},{"id":"fractured.stat_2527686725","text":"#% increased Effect of Shock","type":"fractured"},{"id":"fractured.stat_322206271","text":"Monsters have #% chance to Avoid Elemental Ailments","type":"fractured"},{"id":"fractured.stat_2806435316","text":"#% increased Accuracy Rating if you haven't Killed Recently","type":"fractured"},{"id":"fractured.stat_2479683456","text":"Minions Regenerate #% of Life per second","type":"fractured"},{"id":"fractured.stat_2312028586","text":"Players have #% less Area of Effect","type":"fractured"},{"id":"fractured.stat_3303015","text":"Adds # to # Physical Damage to Claw Attacks","type":"fractured"},{"id":"fractured.stat_439950087","text":"#% increased Critical Strike Chance with Elemental Skills","type":"fractured"},{"id":"fractured.stat_311030839","text":"Adds # to # Physical Damage to Axe Attacks","type":"fractured"},{"id":"fractured.stat_3873704640","text":"#% more Magic Monsters","type":"fractured"},{"id":"fractured.stat_2549889921","text":"Players gain #% reduced Flask Charges","type":"fractured"},{"id":"fractured.stat_3002506763","text":"#% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed","type":"fractured"},{"id":"fractured.stat_3882662078","text":"Adds # to # Physical Damage to Mace or Sceptre Attacks","type":"fractured"},{"id":"fractured.stat_125218179","text":"# to maximum number of Spectres","type":"fractured"},{"id":"fractured.stat_165402179","text":"# to # added Fire Damage against Burning Enemies","type":"fractured"},{"id":"fractured.stat_2056783069","text":"#% increased Physical Damage with Two Handed Melee Weapons","type":"fractured"},{"id":"fractured.stat_3837707023","text":"Minions have #% to Chaos Resistance","type":"fractured"},{"id":"fractured.stat_337935900","text":"Monsters take #% reduced Extra Damage from Critical Strikes","type":"fractured"},{"id":"fractured.stat_2770782267","text":"Minions Leech #% of Damage as Life","type":"fractured"},{"id":"fractured.stat_1859333175","text":"Can have up to 3 Crafted Modifiers","type":"fractured"},{"id":"fractured.stat_828179689","text":"#% increased Effect of Chill","type":"fractured"},{"id":"fractured.stat_69898010","text":"Adds # to # Physical Damage to Staff Attacks","type":"fractured"},{"id":"fractured.stat_2326202293","text":"Players are Cursed with Temporal Chains, with #% increased Effect","type":"fractured"},{"id":"fractured.stat_1913583994","text":"#% increased Monster Attack Speed","type":"fractured"},{"id":"fractured.stat_406353061","text":"Monsters have #% chance to gain a Power Charge on Hit","type":"fractured"},{"id":"fractured.stat_3374054207","text":"Minions have #% Chance to Block Attack Damage","type":"fractured"},{"id":"fractured.stat_280213220","text":"#% chance to Taunt Enemies on Hit with Attacks","type":"fractured"},{"id":"fractured.stat_57326096","text":"#% to Monster Critical Strike Multiplier","type":"fractured"},{"id":"fractured.stat_3736589033","text":"# to Total Mana Cost of Skills","type":"fractured"},{"id":"fractured.stat_133683091","text":"Adds # to # Physical Damage to Wand Attacks","type":"fractured"},{"id":"fractured.stat_426847518","text":"Curse Enemies with Frostbite on Hit, with #% increased Effect","type":"fractured"},{"id":"fractured.stat_1172810729","text":"#% chance to deal Double Damage","type":"fractured"},{"id":"fractured.stat_1181129483","text":"Adds # to # Chaos Damage to Spells while holding a Shield","type":"fractured"},{"id":"fractured.stat_133340941","text":"Area has patches of Burning Ground","type":"fractured"},{"id":"fractured.stat_80079005","text":"#% of Lightning Damage Leeched as Life","type":"fractured"},{"id":"fractured.stat_635761691","text":"#% increased Physical Damage with Claws","type":"fractured"},{"id":"fractured.stat_1298238534","text":"Adds # to # Physical Damage to Dagger Attacks","type":"fractured"},{"id":"fractured.stat_1714180526","text":"Players have Elemental Equilibrium","type":"fractured"},{"id":"fractured.stat_3848282610","text":"#% of Fire Damage Leeched as Life","type":"fractured"},{"id":"fractured.stat_2452998583","text":"# to Level of Socketed Aura Gems","type":"fractured"},{"id":"fractured.stat_2769075491","text":"#% increased Physical Damage with Wands","type":"fractured"},{"id":"fractured.stat_2457517302","text":"Area is inhabited by Solaris fanatics","type":"fractured"},{"id":"fractured.stat_1742567045","text":"Monsters have #% chance to gain a Frenzy Charge on Hit","type":"fractured"},{"id":"fractured.stat_3150705301","text":"#% increased Physical Damage with Staves","type":"fractured"},{"id":"fractured.stat_3527617737","text":"Has # Abyssal Sockets","type":"fractured"},{"id":"fractured.stat_402920808","text":"#% increased Physical Damage with Bows","type":"fractured"},{"id":"fractured.stat_1652515349","text":"# to maximum number of Raised Zombies","type":"fractured"},{"id":"fractured.stat_1658498488","text":"Corrupted Blood cannot be inflicted on you","type":"fractured"},{"id":"fractured.stat_3882531569","text":"#% increased Physical Damage with Daggers","type":"fractured"},{"id":"fractured.stat_25085466","text":"Area is inhabited by Sea Witches and their Spawn","type":"fractured"},{"id":"fractured.stat_2961018200","text":"Area is inhabited by Abominations","type":"fractured"},{"id":"fractured.stat_2227180465","text":"#% increased Mana Reserved","type":"fractured"},{"id":"fractured.stat_4181072906","text":"Players have #% less Recovery Rate of Life and Energy Shield","type":"fractured"},{"id":"fractured.stat_124877078","text":"Unique Boss deals #% increased Damage","type":"fractured"},{"id":"fractured.stat_3550168289","text":"Area is inhabited by # additional Rogue Exile","type":"fractured"},{"id":"fractured.stat_3516340048","text":"Area is inhabited by Ghosts","type":"fractured"},{"id":"fractured.stat_808491979","text":"Area is inhabited by Undead","type":"fractured"},{"id":"fractured.stat_3967845372","text":"Curse Enemies with Vulnerability on Hit, with #% increased Effect","type":"fractured"},{"id":"fractured.stat_3835899275","text":"Socketed Gems deal #% more Elemental Damage","type":"fractured"},{"id":"fractured.stat_3464419871","text":"Monsters reflect #% of Physical Damage","type":"fractured"},{"id":"fractured.stat_1497673356","text":"Monsters deal #% extra Physical Damage as Fire","type":"fractured"},{"id":"fractured.stat_346351023","text":"Socketed Gems have #% more Attack and Cast Speed","type":"fractured"},{"id":"fractured.stat_1681904129","text":"Socketed Gems have #% Critical Strike Chance","type":"fractured"},{"id":"fractured.stat_3999401129","text":"#% of Cold Damage Leeched as Life","type":"fractured"},{"id":"fractured.stat_1106651798","text":"Monsters cannot be Taunted","type":"fractured"},{"id":"fractured.stat_338121249","text":"Curse Enemies with Flammability on Hit, with #% increased Effect","type":"fractured"},{"id":"fractured.stat_3246076198","text":"Area has patches of Shocked Ground which increase Damage taken by #%","type":"fractured"},{"id":"fractured.stat_2835888248","text":"Players have Point Blank","type":"fractured"},{"id":"fractured.stat_369494213","text":"Gain #% of Physical Damage as Extra Fire Damage","type":"fractured"},{"id":"fractured.stat_3706959521","text":"# to Minimum Endurance Charges","type":"fractured"},{"id":"fractured.stat_4154259475","text":"# to Level of Socketed Support Gems","type":"fractured"},{"id":"fractured.stat_150668988","text":"# to Level of Socketed Trap or Mine Gems","type":"fractured"},{"id":"fractured.stat_3577222856","text":"Area has patches of desecrated ground","type":"fractured"},{"id":"fractured.stat_3322709337","text":"Your Hits inflict Decay, dealing 500 Chaos Damage per second for 8 seconds","type":"fractured"},{"id":"fractured.stat_1533563525","text":"#% of Physical Damage Converted to Fire Damage","type":"fractured"},{"id":"fractured.stat_1708461270","text":"Monsters have #% increased Area of Effect","type":"fractured"},{"id":"fractured.stat_3774831856","text":"#% increased Physical Damage with Maces or Sceptres","type":"fractured"},{"id":"fractured.stat_645841425","text":"Area is inhabited by ranged monsters","type":"fractured"},{"id":"fractured.stat_1871056256","text":"#% of Physical Damage from Hits taken as Cold Damage","type":"fractured"},{"id":"fractured.stat_2718698372","text":"# to Level of Socketed Dexterity Gems","type":"fractured"},{"id":"fractured.stat_2651141461","text":"Area is inhabited by Humanoids","type":"fractured"},{"id":"fractured.stat_3465022881","text":"#% to Lightning and Chaos Resistances","type":"fractured"},{"id":"fractured.stat_658456881","text":"# to Minimum Frenzy Charges","type":"fractured"},{"id":"fractured.stat_425242359","text":"#% of Physical Damage from Hits taken as Lightning Damage","type":"fractured"},{"id":"fractured.stat_3729221884","text":"Players have #% reduced Chance to Block","type":"fractured"},{"id":"fractured.stat_4103440490","text":"Players are Cursed with Enfeeble, with #% increased Effect","type":"fractured"},{"id":"fractured.stat_272758639","text":"Players have #% less Armour","type":"fractured"},{"id":"fractured.stat_470688636","text":"Triggers Level 20 Spectral Spirits when Equipped","type":"fractured"},{"id":"fractured.stat_2174134106","text":"Warcries cannot Exert Travel Skills","type":"fractured"},{"id":"fractured.stat_2379781920","text":"#% increased Elemental Damage if you've dealt a Critical Strike Recently","type":"fractured"},{"id":"fractured.stat_276103140","text":"#% increased Critical Strike Chance against Shocked Enemies","type":"fractured"},{"id":"fractured.stat_1999711879","text":"# to Minimum Power Charges","type":"fractured"},{"id":"fractured.stat_3914740665","text":"Grants Level # Aspect of the Avian Skill","type":"fractured"},{"id":"fractured.stat_2753083623","text":"Monsters have #% increased Critical Strike Chance","type":"fractured"},{"id":"fractured.stat_378817135","text":"#% to Fire and Chaos Resistances","type":"fractured"},{"id":"fractured.stat_3392890360","text":"Damage Penetrates #% Elemental Resistances during any Flask Effect","type":"fractured"},{"id":"fractured.stat_2428829184","text":"# to maximum number of Skeletons","type":"fractured"},{"id":"fractured.stat_3134632618","text":"Area is inhabited by Lunaris fanatics","type":"fractured"},{"id":"fractured.stat_2301191210","text":"#% chance to Blind Enemies on hit","type":"fractured"},{"id":"fractured.stat_710372469","text":"Curse Enemies with Conductivity on Hit, with #% increased Effect","type":"fractured"},{"id":"fractured.stat_280731498","text":"#% increased Area of Effect","type":"fractured"},{"id":"fractured.stat_392168009","text":"#% to Chaos Resistance during any Flask Effect","type":"fractured"},{"id":"fractured.stat_2551600084","text":"# to Level of Socketed AoE Gems","type":"fractured"},{"id":"fractured.stat_3240769289","text":"#% of Physical Damage Converted to Lightning Damage","type":"fractured"},{"id":"fractured.stat_1740229525","text":"Attacks with this Weapon Penetrate #% Cold Resistance","type":"fractured"},{"id":"fractured.stat_349586058","text":"Area has patches of Chilled Ground","type":"fractured"},{"id":"fractured.stat_2133341901","text":"#% of Physical Damage Converted to Cold Damage","type":"fractured"},{"id":"fractured.stat_350598685","text":"# to Weapon Range","type":"fractured"},{"id":"fractured.stat_45546355","text":"Area is inhabited by Skeletons","type":"fractured"},{"id":"fractured.stat_2264295449","text":"# to Melee Strike Range","type":"fractured"},{"id":"fractured.stat_4129825612","text":"#% of Physical Damage from Hits taken as Chaos Damage","type":"fractured"},{"id":"fractured.stat_678245679","text":"#% reduced Soul Cost of Vaal Skills","type":"fractured"},{"id":"fractured.stat_2034658008","text":"#% increased Damage per Power Charge","type":"fractured"},{"id":"fractured.stat_2764915899","text":"Curse Enemies with Despair on Hit, with #% increased Effect","type":"fractured"},{"id":"fractured.stat_2693266036","text":"#% additional Physical Damage Reduction during any Flask Effect","type":"fractured"},{"id":"fractured.stat_2947215268","text":"#% increased Damage during any Flask Effect","type":"fractured"},{"id":"fractured.stat_916797432","text":"# to Level of Socketed Strength Gems","type":"fractured"},{"id":"fractured.stat_3595254837","text":"Drops Burning Ground while moving, dealing # Fire Damage per second for # second","type":"fractured"},{"id":"fractured.stat_2609768284","text":"Area is inhabited by the Vaal","type":"fractured"},{"id":"fractured.stat_314741699","text":"#% increased Attack Speed while a Rare or Unique Enemy is Nearby","type":"fractured"},{"id":"fractured.stat_536929014","text":"#% to Critical Strike Multiplier if you've Shattered an Enemy Recently","type":"fractured"},{"id":"fractured.stat_918170065","text":"#% Monster Mana Leech Resistance","type":"fractured"},{"id":"fractured.stat_573223427","text":"#% chance to gain Arcane Surge when you Kill an Enemy","type":"fractured"},{"id":"fractured.stat_30642521","text":"You can apply one fewer Curse","type":"fractured"},{"id":"fractured.stat_2215002568","text":"Monsters have a #% chance to avoid Poison, Blind, and Bleeding","type":"fractured"},{"id":"fractured.stat_728267040","text":"Found Items have a #% chance to drop Corrupted in Area","type":"fractured"},{"id":"fractured.stat_2908886986","text":"#% chance to deal Double Damage while Focussed","type":"fractured"},{"id":"fractured.stat_3398283493","text":"Attacks with this Weapon Penetrate #% Fire Resistance","type":"fractured"},{"id":"fractured.stat_2421446548","text":"Channelling Skills have # to Total Mana Cost","type":"fractured"},{"id":"fractured.stat_4122424929","text":"Cannot roll Attack Modifiers","type":"fractured"},{"id":"fractured.stat_170497091","text":"#% increased Fishing Range","type":"fractured"},{"id":"fractured.stat_304970526","text":"#% increased Movement Speed during any Flask Effect","type":"fractured"},{"id":"fractured.stat_2238019079","text":"Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby","type":"fractured"},{"id":"fractured.stat_365540634","text":"+#% Monster Chaos Resistance","type":"fractured"},{"id":"fractured.stat_1149326139","text":"Cannot roll Caster Modifiers","type":"fractured"},{"id":"fractured.stat_3676141501","text":"#% to maximum Cold Resistance","type":"fractured"},{"id":"fractured.stat_464535071","text":"#% increased Trap and Mine Throwing Speed","type":"fractured"},{"id":"fractured.stat_1301765461","text":"#% to maximum Chaos Resistance","type":"fractured"},{"id":"fractured.stat_818778753","text":"Damage Penetrates #% Lightning Resistance","type":"fractured"},{"id":"fractured.stat_67280387","text":"Gain #% of Maximum Life as Extra Maximum Energy Shield","type":"fractured"},{"id":"fractured.stat_1818773442","text":"#% increased Damage with Hits and Ailments per Curse on Enemy","type":"fractured"},{"id":"fractured.stat_2054162825","text":"Karui Stone Hook","type":"fractured"},{"id":"fractured.stat_1289910726","text":"Socketed Gems deal # to # additional Fire Damage","type":"fractured"},{"id":"fractured.stat_310246444","text":"#% increased Damage while Leeching","type":"fractured"},{"id":"fractured.stat_3828613551","text":"#% to Quality of Socketed Gems","type":"fractured"},{"id":"fractured.stat_308396001","text":"#% increased Movement Speed if you haven't been Hit Recently","type":"fractured"},{"id":"fractured.stat_3802667447","text":"#% increased Quantity of Fish Caught","type":"fractured"},{"id":"fractured.stat_3342989455","text":"#% of Physical Damage from Hits taken as Fire Damage","type":"fractured"},{"id":"fractured.stat_3049760680","text":"#% chance to gain Onslaught for 3 seconds when Hit","type":"fractured"},{"id":"fractured.stat_4050593908","text":"Skills used by Traps have #% increased Area of Effect","type":"fractured"},{"id":"fractured.stat_1842038569","text":"#% increased Fishing Line Strength","type":"fractured"},{"id":"fractured.stat_1521863824","text":"#% increased Movement speed while on Burning, Chilled or Shocked ground","type":"fractured"},{"id":"fractured.stat_1550221644","text":"#% reduced Fishing Pool Consumption","type":"fractured"},{"id":"fractured.stat_4252630904","text":"Area is inhabited by Cultists of Kitava","type":"fractured"},{"id":"fractured.stat_1813544255","text":"Area is inhabited by Goatmen","type":"fractured"},{"id":"fractured.stat_3916182167","text":"Area is inhabited by Demons","type":"fractured"},{"id":"fractured.stat_1468606528","text":"10% Chance to Trigger Level 10 Summon Spectral Wolf on Kill","type":"fractured"},{"id":"fractured.stat_114734841","text":"Flasks applied to you have #% increased Effect","type":"fractured"},{"id":"fractured.stat_158779585","text":"#% increased Effect of Fortify on you","type":"fractured"},{"id":"fractured.stat_3310914132","text":"#% increased Rarity of Fish Caught","type":"fractured"},{"id":"fractured.stat_1265282021","text":"Grants Level # Aspect of the Cat Skill","type":"fractured"},{"id":"fractured.stat_1041951480","text":"Monsters cannot be Stunned","type":"fractured"},{"id":"fractured.stat_3762784591","text":"#% reduced Chaos Damage taken over time","type":"fractured"},{"id":"fractured.stat_725880290","text":"#% chance to Impale Enemies on Hit with Attacks","type":"fractured"},{"id":"fractured.stat_3360430812","text":"Rhoa Feather Lure","type":"fractured"},{"id":"fractured.stat_3031766858","text":"Shock nearby Enemies for # Seconds when you Focus","type":"fractured"},{"id":"fractured.stat_3143208761","text":"#% increased Attributes","type":"fractured"},{"id":"fractured.stat_308309328","text":"#% chance to Recover 10% of Mana when you use a Skill","type":"fractured"},{"id":"fractured.stat_4102318278","text":"Grants Level # Aspect of the Crab Skill","type":"fractured"},{"id":"fractured.stat_3992439283","text":"#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby","type":"fractured"},{"id":"fractured.stat_3417757416","text":"#% increased Cooldown Recovery Rate for throwing Traps","type":"fractured"},{"id":"fractured.stat_2062792091","text":"#% chance to Trigger Socketed Spells when you Focus","type":"fractured"},{"id":"fractured.stat_2628163981","text":"#% increased Attack and Cast Speed while Focussed","type":"fractured"},{"id":"fractured.stat_1583385065","text":"Non-Vaal Skills deal #% increased Damage during Soul Gain Prevention","type":"fractured"},{"id":"fractured.stat_1859937391","text":"Socketed Gems gain #% of Physical Damage as extra Lightning Damage","type":"fractured"},{"id":"fractured.stat_526251910","text":"Cannot Leech Life from Monsters","type":"fractured"},{"id":"fractured.stat_1519474779","text":"#% increased Effect of Non-Damaging Ailments on you","type":"fractured"},{"id":"fractured.stat_1572897579","text":"You have Onslaught during Soul Gain Prevention","type":"fractured"},{"id":"fractured.stat_3836017971","text":"Light Radius is based on Energy Shield instead of Life","type":"fractured"},{"id":"fractured.stat_956546305","text":"Grants Level # Aspect of the Spider Skill","type":"fractured"},{"id":"fractured.stat_2306522833","text":"#% increased Monster Movement Speed","type":"fractured"},{"id":"fractured.stat_782230869","text":"#% increased Effect of Non-Damaging Ailments","type":"fractured"},{"id":"fractured.stat_2960683632","text":"#% reduced Chaos Damage taken","type":"fractured"},{"id":"fractured.stat_3835551335","text":"Cannot be Poisoned","type":"fractured"},{"id":"fractured.stat_2228913626","text":"Skills used by Mines have #% increased Area of Effect","type":"fractured"},{"id":"fractured.stat_1621470436","text":"#% chance to Cast Level 20 Fire Burst on Hit","type":"fractured"},{"id":"fractured.stat_2590156965","text":"#% chance to Dodge Attack Hits while Focussed","type":"fractured"},{"id":"fractured.stat_311641062","text":"#% chance for Flasks you use to not consume Charges","type":"fractured"},{"id":"fractured.stat_2387423236","text":"Adds # to # Cold Damage","type":"fractured"},{"id":"fractured.stat_1316278494","text":"#% increased Warcry Speed","type":"fractured"},{"id":"fractured.stat_1719423857","text":"# to Level of Socketed Intelligence Gems","type":"fractured"},{"id":"fractured.stat_321077055","text":"Adds # to # Fire Damage","type":"fractured"},{"id":"fractured.stat_1334060246","text":"Adds # to # Lightning Damage","type":"fractured"},{"id":"fractured.stat_2353576063","text":"#% increased Effect of your Curses","type":"fractured"},{"id":"fractured.stat_3523867985","text":"#% increased Armour, Evasion and Energy Shield (Local)","type":"fractured"},{"id":"fractured.stat_498214257","text":"#% chance to gain a Power, Frenzy or Endurance Charge on Kill","type":"fractured"},{"id":"fractured.stat_1349659520","text":"Your Critical Strike Chance is Lucky while Focussed","type":"fractured"},{"id":"fractured.stat_2653955271","text":"Damage Penetrates #% Fire Resistance","type":"fractured"},{"id":"fractured.stat_4126210832","text":"Hits can't be Evaded","type":"fractured"},{"id":"fractured.stat_2022851697","text":"You have Vaal Pact while Focussed","type":"fractured"},{"id":"fractured.stat_3393628375","text":"#% to Cold and Chaos Resistances","type":"fractured"},{"id":"fractured.stat_289885185","text":"Chaos Skills have #% increased Skill Effect Duration","type":"fractured"},{"id":"fractured.stat_472520716","text":"#% of Damage taken gained as Mana over 4 seconds when Hit","type":"fractured"},{"id":"fractured.stat_4198346809","text":"Area is inhabited by Animals","type":"fractured"},{"id":"fractured.stat_3648858570","text":"# to # Cold Damage per Frenzy Charge","type":"fractured"},{"id":"fractured.stat_3762412853","text":"Attacks with this Weapon Penetrate #% Chaos Resistance","type":"fractured"},{"id":"fractured.stat_902747843","text":"#% increased Damage per Frenzy Charge","type":"fractured"},{"id":"fractured.stat_3267282390","text":"#% increased Effect of Fortify on you while Focussed","type":"fractured"},{"id":"fractured.stat_849152640","text":"Skills Cost no Mana while Focussed","type":"fractured"},{"id":"fractured.stat_3464137628","text":"Suffixes Cannot Be Changed","type":"fractured"},{"id":"fractured.stat_3324747104","text":"#% of Damage Leeched as Life while Focussed","type":"fractured"},{"id":"fractured.stat_1661151735","text":"Minions have # to Accuracy Rating","type":"fractured"},{"id":"fractured.stat_2001530951","text":"#% increased Trap Duration","type":"fractured"},{"id":"fractured.stat_153777645","text":"#% increased Area of Effect of Hex Skills","type":"fractured"},{"id":"fractured.stat_3859593448","text":"#% reduced Elemental Damage Taken while stationary","type":"fractured"},{"id":"fractured.stat_2316658489","text":"# to Armour and Evasion Rating","type":"fractured"},{"id":"fractured.stat_3691695237","text":"# to Level of Socketed Curse Gems","type":"fractured"},{"id":"fractured.stat_1177358866","text":"#% increased Movement Speed if you haven't been Hit Recently","type":"fractured"},{"id":"fractured.stat_4223377453","text":"#% increased Brand Attachment range","type":"fractured"},{"id":"fractured.stat_744082851","text":"#% of Chaos Damage Leeched as Life","type":"fractured"},{"id":"fractured.stat_1840751341","text":"#% increased Duration of Ailments you inflict while Focussed","type":"fractured"},{"id":"fractured.stat_1004011302","text":"#% increased Cooldown Recovery Rate","type":"fractured"},{"id":"fractured.stat_3753650187","text":"#% additional Physical Damage Reduction while Focussed","type":"fractured"},{"id":"fractured.stat_2633745731","text":"#% increased total Recovery per second from Life Leech","type":"fractured"},{"id":"fractured.stat_3085465082","text":"Mines have #% increased Detonation Speed","type":"fractured"},{"id":"fractured.stat_2387539034","text":"Attacks with this Weapon Penetrate #% Lightning Resistance","type":"fractured"},{"id":"fractured.stat_4064396395","text":"Attacks with this Weapon Penetrate #% Elemental Resistances","type":"fractured"},{"id":"fractured.stat_3623716321","text":"Adds # to # Fire Damage if you've Blocked Recently","type":"fractured"},{"id":"fractured.stat_999511066","text":"#% increased Minion Duration","type":"fractured"},{"id":"fractured.stat_3909846940","text":"Item drops on Death if Equipped by an Animated Guardian","type":"fractured"},{"id":"fractured.stat_117667746","text":"#% increased Mine Duration","type":"fractured"},{"id":"fractured.stat_3417711605","text":"Damage Penetrates #% Cold Resistance","type":"fractured"},{"id":"fractured.stat_2879723104","text":"Prefixes Cannot Be Changed","type":"fractured"}]},{"label":"Enchant","entries":[{"id":"enchant.stat_3948993189","text":"Added Small Passive Skills grant: #","type":"enchant","option":{"options":[{"id":1,"text":"Axe Attacks deal 12% increased Damage with Hits and Ailments\nSword Attacks deal 12% increased Damage with Hits and Ailments"},{"id":2,"text":"Staff Attacks deal 12% increased Damage with Hits and Ailments\nMace or Sceptre Attacks deal 12% increased Damage with Hits and Ailments"},{"id":3,"text":"Claw Attacks deal 12% increased Damage with Hits and Ailments\nDagger Attacks deal 12% increased Damage with Hits and Ailments"},{"id":4,"text":"12% increased Damage with Bows\n12% increased Damage Over Time with Bow Skills"},{"id":5,"text":"Wand Attacks deal 12% increased Damage with Hits and Ailments"},{"id":6,"text":"12% increased Damage with Two Handed Weapons"},{"id":7,"text":"12% increased Attack Damage while Dual Wielding"},{"id":8,"text":"12% increased Attack Damage while holding a Shield"},{"id":9,"text":"10% increased Attack Damage"},{"id":10,"text":"10% increased Spell Damage"},{"id":11,"text":"10% increased Elemental Damage"},{"id":12,"text":"12% increased Physical Damage"},{"id":13,"text":"12% increased Fire Damage"},{"id":14,"text":"12% increased Lightning Damage"},{"id":15,"text":"12% increased Cold Damage"},{"id":16,"text":"12% increased Chaos Damage"},{"id":17,"text":"Minions deal 10% increased Damage"},{"id":18,"text":"+4% to Fire Damage over Time Multiplier"},{"id":19,"text":"+4% to Chaos Damage over Time Multiplier"},{"id":20,"text":"+4% to Physical Damage over Time Multiplier"},{"id":21,"text":"+4% to Cold Damage over Time Multiplier"},{"id":22,"text":"+4% to Damage over Time Multiplier"},{"id":23,"text":"10% increased Effect of Non-Damaging Ailments"},{"id":24,"text":"6% increased effect of Non-Curse Auras from your Skills"},{"id":25,"text":"5% increased Effect of your Curses"},{"id":26,"text":"10% increased Damage while affected by a Herald"},{"id":27,"text":"Minions deal 10% increased Damage while you are affected by a Herald"},{"id":28,"text":"Exerted Attacks deal 20% increased Damage"},{"id":29,"text":"15% increased Critical Strike Chance"},{"id":30,"text":"Minions have 12% increased maximum Life"},{"id":31,"text":"10% increased Area Damage"},{"id":32,"text":"10% increased Projectile Damage"},{"id":33,"text":"12% increased Trap Damage\n12% increased Mine Damage"},{"id":34,"text":"12% increased Totem Damage"},{"id":35,"text":"12% increased Brand Damage"},{"id":36,"text":"Channelling Skills deal 12% increased Damage"},{"id":37,"text":"6% increased Flask Effect Duration"},{"id":38,"text":"10% increased Life Recovery from Flasks\n10% increased Mana Recovery from Flasks"},{"id":39,"text":"4% increased maximum Life"},{"id":40,"text":"6% increased maximum Energy Shield"},{"id":41,"text":"6% increased maximum Mana"},{"id":42,"text":"15% increased Armour"},{"id":43,"text":"15% increased Evasion Rating"},{"id":44,"text":"1% Chance to Block Attack Damage"},{"id":45,"text":"1% Chance to Block Spell Damage"},{"id":46,"text":"+15% to Fire Resistance"},{"id":47,"text":"+15% to Cold Resistance"},{"id":48,"text":"+15% to Lightning Resistance"},{"id":49,"text":"+12% to Chaos Resistance"},{"id":50,"text":"1% chance to Dodge Attack Hits"}]}},{"id":"enchant.stat_3086156145","text":"Adds # Passive Skills","type":"enchant"},{"id":"enchant.stat_4079888060","text":"# Added Passive Skills are Jewel Sockets","type":"enchant"},{"id":"enchant.stat_2954116742","text":"Allocates #","type":"enchant","option":{"options":[{"id":32345,"text":"Alacrity"},{"id":15027,"text":"Beef"},{"id":56029,"text":"Agility"},{"id":36874,"text":"Wisdom of the Glade"},{"id":32245,"text":"Expertise"},{"id":60180,"text":"Thief's Craft"},{"id":52714,"text":"Prowess"},{"id":34601,"text":"Proficiency"},{"id":50197,"text":"Ancestral Knowledge"},{"id":5456,"text":"Might"},{"id":30160,"text":"Fending"},{"id":18025,"text":"Hard Knocks"},{"id":10153,"text":"Physique"},{"id":23690,"text":"Arcane Vision"},{"id":10542,"text":"Diamond Skin"},{"id":37078,"text":"Path of the Savant"},{"id":12702,"text":"Path of the Warrior"},{"id":19506,"text":"Path of the Hunter"},{"id":38516,"text":"Righteous Decree"},{"id":63150,"text":"Ironwood"},{"id":16243,"text":"Fusillade"},{"id":2715,"text":"Quickstep"},{"id":52230,"text":"Weathered Hunter"},{"id":21435,"text":"Cloth and Chain"},{"id":31033,"text":"Solidity"},{"id":65224,"text":"Aspect of the Eagle"},{"id":24256,"text":"Dynamo"},{"id":21973,"text":"Decay Ward"},{"id":45067,"text":"Thrill Seeker"},{"id":38246,"text":"Aspect of the Panther"},{"id":1382,"text":"Spirit Void"},{"id":529,"text":"Poisonous Fangs"},{"id":46965,"text":"Saboteur"},{"id":47484,"text":"Depth Perception"},{"id":42686,"text":"Elemental Focus"},{"id":27929,"text":"Deep Wisdom"},{"id":27301,"text":"Martial Experience"},{"id":60002,"text":"Fury Bolts"},{"id":5289,"text":"Battle Rouse"},{"id":27190,"text":"Hasty Reconstruction"},{"id":20832,"text":"Sanctuary"},{"id":7440,"text":"Combat Control"},{"id":8135,"text":"Practical Application"},{"id":46408,"text":"Fangs of the Viper"},{"id":10016,"text":"Executioner"},{"id":42804,"text":"Mind Drinker"},{"id":50690,"text":"Exposure Tolerance"},{"id":15344,"text":"Freedom of Movement"},{"id":10835,"text":"Dreamer"},{"id":25970,"text":"Risk Awareness"},{"id":44788,"text":"Aligned Spirits"},{"id":2550,"text":"Arsonist"},{"id":7085,"text":"Weapon Artistry"},{"id":2959,"text":"Unpredictable Offensive"},{"id":18174,"text":"Mystic Bulwark"},{"id":53757,"text":"Shamanistic Fury"},{"id":24362,"text":"Deep Thoughts"},{"id":10115,"text":"Prodigal Perfection"},{"id":19144,"text":"Sentinel"},{"id":42720,"text":"Heavy Draw"},{"id":54791,"text":"Claws of the Magpie"},{"id":60031,"text":"Harvester of Foes"},{"id":26023,"text":"Splitting Strikes"},{"id":17608,"text":"Silent Steps"},{"id":29861,"text":"Explosive Runes"},{"id":36859,"text":"Steelwood Stance"},{"id":44102,"text":"Efficient Explosives"},{"id":63933,"text":"Totemic Zeal"},{"id":40645,"text":"Bone Breaker"},{"id":11784,"text":"Gemini"},{"id":59556,"text":"Expeditious Munitions"},{"id":33082,"text":"Razor's Edge"},{"id":56359,"text":"Red Storm"},{"id":59866,"text":"Honed Edge"},{"id":35436,"text":"Kinetic Impacts"},{"id":41476,"text":"Elder Power"},{"id":45608,"text":"Successive Detonations"},{"id":33582,"text":"Forceful Skewering"},{"id":23038,"text":"Slaughter"},{"id":60619,"text":"Galvanic Hammer"},{"id":5430,"text":"Magmatic Strikes"},{"id":16236,"text":"Toxic Strikes"},{"id":39657,"text":"Pain Forger"},{"id":36915,"text":"Sacrifice"},{"id":51212,"text":"Entropy"},{"id":61982,"text":"Grave Intentions"},{"id":6233,"text":"Blast Waves"},{"id":51881,"text":"Master Fletcher"},{"id":65093,"text":"Bladedancer"},{"id":37504,"text":"Claws of the Pride"},{"id":36736,"text":"Burning Brutality"},{"id":64077,"text":"Ophidian Aim"},{"id":63635,"text":"Primal Manifestation"},{"id":5126,"text":"Spinecruncher"},{"id":51559,"text":"Smashing Strikes"},{"id":63921,"text":"Utmost Swiftness"},{"id":47743,"text":"Farsight"},{"id":42917,"text":"Whirling Barrier"},{"id":59605,"text":"Unstable Munitions"},{"id":46471,"text":"Shocking Strikes"},{"id":1405,"text":"From the Shadows"},{"id":26096,"text":"Hatchet Master"},{"id":55380,"text":"Clever Construction"},{"id":49772,"text":"Utmost Might"},{"id":22972,"text":"Wandslinger"},{"id":49969,"text":"Bludgeon Blitz"},{"id":17171,"text":"Flash Freeze"},{"id":36490,"text":"Flaying"},{"id":35685,"text":"Fearsome Force"},{"id":24858,"text":"Harpooner"},{"id":15046,"text":"Redemption"},{"id":55114,"text":"Utmost Intellect"},{"id":7918,"text":"Enigmatic Defence"},{"id":14606,"text":"Butchery"},{"id":33435,"text":"Holy Dominion"},{"id":26557,"text":"Static Blows"},{"id":14001,"text":"Escalation"},{"id":9567,"text":"Light Eater"},{"id":63033,"text":"Bannerman"},{"id":63976,"text":"Shaper"},{"id":53493,"text":"Annihilation"},{"id":45317,"text":"Ash, Frost and Storm"},{"id":44207,"text":"Testudo"},{"id":30225,"text":"Lightning Walker"},{"id":9788,"text":"Nimbleness"},{"id":31508,"text":"Aspect of the Lynx"},{"id":53042,"text":"Exceptional Performance"},{"id":4940,"text":"Cleaving"},{"id":42795,"text":"Arcane Focus"},{"id":21413,"text":"Combat Stamina"},{"id":33903,"text":"Will of Blades"},{"id":44347,"text":"Divine Fury"},{"id":65502,"text":"Heartseeker"},{"id":6770,"text":"Arcane Guarding"},{"id":44103,"text":"Reflexes"},{"id":13164,"text":"Divine Judgement"},{"id":35894,"text":"Trickery"},{"id":49538,"text":"Defiance"},{"id":33545,"text":"Harrier"},{"id":6,"text":"Twin Terrors"},{"id":65273,"text":"Enigmatic Reach"},{"id":42649,"text":"Snowforged"},{"id":19730,"text":"Versatile Stance"},{"id":15085,"text":"Ambidexterity"},{"id":24383,"text":"Warrior's Blood"},{"id":6967,"text":"Command of the Elements"},{"id":37403,"text":"Intensity"},{"id":54694,"text":"Light of Divinity"},{"id":49621,"text":"Acuity"},{"id":54142,"text":"Finesse"},{"id":9432,"text":"Mental Rapidity"},{"id":26960,"text":"Forethought"},{"id":14813,"text":"Revelry"},{"id":861,"text":"Aggressive Bastion"},{"id":26866,"text":"Sanctity"},{"id":65053,"text":"Essence Sap"},{"id":25439,"text":"Undertaker"},{"id":49416,"text":"Adamant"},{"id":64355,"text":"Brand Equity"},{"id":24050,"text":"Coldhearted Calculation"},{"id":11420,"text":"Arcanist's Dominion"},{"id":2225,"text":"Eagle Eye"},{"id":32455,"text":"Storm Weaver"},{"id":12809,"text":"Berserking"},{"id":1006,"text":"Potency of Will"},{"id":5823,"text":"Coordination"},{"id":18703,"text":"Graceful Assault"},{"id":20835,"text":"Brinkmanship"},{"id":3309,"text":"Fleetfoot"},{"id":15842,"text":"Precise Interception"},{"id":15711,"text":"Blast Radius"},{"id":34666,"text":"Destroyer"},{"id":14665,"text":"Divine Wrath"},{"id":30471,"text":"True Strike"},{"id":49318,"text":"Wrecking Ball"},{"id":32059,"text":"Titanic Impacts"},{"id":65308,"text":"Deflection"},{"id":12795,"text":"Versatility"},{"id":33287,"text":"Juggernaut"},{"id":25456,"text":"Dervish"},{"id":35663,"text":"Strong Arm"},{"id":60737,"text":"Sleight of Hand"},{"id":45329,"text":"Trick Shot"},{"id":50858,"text":"Admonisher"},{"id":7069,"text":"Split Shot"},{"id":544,"text":"Surveillance"},{"id":61308,"text":"Amplify"},{"id":570,"text":"Dazzling Strikes"},{"id":24324,"text":"Explosive Impact"},{"id":61039,"text":"Panopticon"},{"id":34661,"text":"Fire Walker"},{"id":54268,"text":"Blade Barrier"},{"id":44824,"text":"Dark Arts"},{"id":18865,"text":"Melding"},{"id":49445,"text":"Deep Breaths"},{"id":47306,"text":"Throatseeker"},{"id":44955,"text":"Frost Walker"},{"id":13922,"text":"Steadfast"},{"id":39743,"text":"Mysticism"},{"id":50338,"text":"Ballistic Mastery"},{"id":58032,"text":"Serpentine Spellslinger"},{"id":53802,"text":"Essence Extraction"},{"id":49254,"text":"Retribution"},{"id":8001,"text":"Lethal Assault"},{"id":32176,"text":"Soul Thief"},{"id":27137,"text":"Sanctum of Thought"},{"id":57900,"text":"Command of Steel"},{"id":6237,"text":"Precision"},{"id":49379,"text":"Hired Killer"},{"id":12878,"text":"Retaliation"},{"id":19103,"text":"Righteous Army"},{"id":8458,"text":"Longshot"},{"id":24721,"text":"Ribcage Crusher"},{"id":9015,"text":"Dire Torment"},{"id":27308,"text":"Gravepact"},{"id":31513,"text":"Adjacent Animosity"},{"id":6615,"text":"Arcing Blows"},{"id":64882,"text":"Disciple of the Unyielding"},{"id":52031,"text":"Disintegration"},{"id":25367,"text":"Blade Master"},{"id":57199,"text":"Fangs of Frost"},{"id":39761,"text":"Counterweight"},{"id":21602,"text":"Destructive Apparatus"},{"id":9535,"text":"Hunter's Gambit"},{"id":28503,"text":"Soul Raker"},{"id":59766,"text":"Dirty Techniques"},{"id":8920,"text":"Backstabbing"},{"id":63207,"text":"Tempest Blast"},{"id":43385,"text":"Winter Spirit"},{"id":21297,"text":"High Explosives"},{"id":29049,"text":"Holy Fire"},{"id":54713,"text":"Force Shaper"},{"id":44562,"text":"Shaman's Dominion"},{"id":18707,"text":"Method to the Madness"},{"id":57839,"text":"Blade of Cunning"},{"id":15437,"text":"Gladiatoral Combat"},{"id":38849,"text":"Searing Heat"},{"id":33777,"text":"Devastating Devices"},{"id":4481,"text":"Forces of Nature"},{"id":10511,"text":"Singular Focus"},{"id":26620,"text":"Corruption"},{"id":16703,"text":"Skull Cracking"},{"id":32227,"text":"Adder's Touch"},{"id":31359,"text":"Fatal Toxins"},{"id":63727,"text":"Gladiator's Perseverance"},{"id":41119,"text":"Lethality"},{"id":52090,"text":"Feller of Foes"},{"id":62094,"text":"Lucidity"},{"id":55772,"text":"Blacksmith's Clout"},{"id":49459,"text":"King of the Hill"},{"id":26294,"text":"Bloodletting"},{"id":7136,"text":"Master Sapper"},{"id":63251,"text":"Charging Offensive"},{"id":22702,"text":"Serpent Stance"},{"id":36281,"text":"Primeval Force"},{"id":19897,"text":"Death Attunement"},{"id":48823,"text":"Deadly Draw"},{"id":15614,"text":"Claws of the Hawk"},{"id":61689,"text":"Blast Cascade"},{"id":9194,"text":"Swift Skewering"},{"id":27611,"text":"Lord of the Dead"},{"id":64395,"text":"Blunt Trauma"},{"id":21389,"text":"Runesmith"},{"id":39986,"text":"Hex Master"},{"id":9261,"text":"Disciple of the Forbidden"},{"id":36687,"text":"Avatar of the Hunt"},{"id":63944,"text":"Prism Weave"},{"id":25409,"text":"Indomitable Army"},{"id":1568,"text":"Fatal Blade"},{"id":30439,"text":"Lava Lash"},{"id":53013,"text":"Atrophy"},{"id":29381,"text":"Ravenous Horde"},{"id":43689,"text":"Spiritual Command"},{"id":7263,"text":"Swift Venoms"},{"id":38922,"text":"Stun Mastery"},{"id":56094,"text":"One with the River"},{"id":7688,"text":"Enduring Bond"},{"id":59151,"text":"Brutal Blade"},{"id":56648,"text":"Claws of the Falcon"},{"id":4207,"text":"Window of Opportunity"},{"id":9864,"text":"Growth and Decay"},{"id":58921,"text":"Disciple of the Slaughter"},{"id":56276,"text":"Nightstalker"},{"id":9055,"text":"Volatile Mines"},{"id":48298,"text":"Insightfulness"},{"id":21634,"text":"Arcane Chemistry"},{"id":53759,"text":"Cleansed Thoughts"},{"id":12143,"text":"Influence"},{"id":24067,"text":"No Witnesses"},{"id":56716,"text":"Heart of Thunder"},{"id":36949,"text":"Devotion"},{"id":58218,"text":"Purity of Flesh"},{"id":61981,"text":"Doom Cast"},{"id":21330,"text":"Quick Recovery"},{"id":40743,"text":"Crystal Skin"},{"id":48438,"text":"Bravery"},{"id":11924,"text":"Breath of Flames"},{"id":48614,"text":"Fervour"},{"id":40849,"text":"Persistence"},{"id":42041,"text":"Profane Chemistry"},{"id":60501,"text":"Heart of Flame"},{"id":18769,"text":"Written in Blood"},{"id":41137,"text":"Aqueous Accelerant"},{"id":21958,"text":"Cruel Preparation"},{"id":58831,"text":"Disemboweling"},{"id":51748,"text":"Cursed Concoction"},{"id":52157,"text":"Soul Siphon"},{"id":46842,"text":"Arcane Potency"},{"id":11645,"text":"Breath of Lightning"},{"id":4833,"text":"Vigour"},{"id":38706,"text":"Way of the Warrior"},{"id":22356,"text":"Hematophagy"},{"id":51440,"text":"Druidic Rite"},{"id":27203,"text":"Heart and Soul"},{"id":6289,"text":"Bloodless"},{"id":58449,"text":"Born to Fight"},{"id":65210,"text":"Heart of Oak"},{"id":33718,"text":"Champion of the Cause"},{"id":24133,"text":"Survivalist"},{"id":34173,"text":"Overcharge"},{"id":47471,"text":"Overcharged"},{"id":34009,"text":"Master of the Arena"},{"id":62596,"text":"Mystic Talents"},{"id":58198,"text":"Fingers of Frost"},{"id":30693,"text":"Divine Fervour"},{"id":19858,"text":"Herbalism"},{"id":25058,"text":"Blood Siphon"},{"id":7555,"text":"Crackling Speed"},{"id":65097,"text":"Leadership"},{"id":53573,"text":"Arcane Expanse"},{"id":11730,"text":"Endurance"},{"id":35958,"text":"Faith and Steel"},{"id":34973,"text":"Measured Fury"},{"id":41307,"text":"Deadly Inclinations"},{"id":56207,"text":"Hardened Scars"},{"id":35233,"text":"Discord Artisan"},{"id":1340,"text":"Rampart"},{"id":54629,"text":"Inexorable"},{"id":37326,"text":"Stamina"},{"id":51108,"text":"Arcane Capacitor"},{"id":65108,"text":"Tireless"},{"id":46904,"text":"Arcane Swiftness"},{"id":44988,"text":"Stabbing Thirst"},{"id":23066,"text":"Savagery"},{"id":54776,"text":"Mana Flows"},{"id":25178,"text":"Primal Spirit"},{"id":48807,"text":"Art of the Gladiator"},{"id":20528,"text":"Instability"},{"id":27163,"text":"Arcane Will"},{"id":15290,"text":"Watchtowers"},{"id":3452,"text":"Foresight"},{"id":21460,"text":"Breath of Rime"},{"id":63422,"text":"Lust for Carnage"},{"id":42443,"text":"Frenetic"},{"id":47065,"text":"Master of Force"},{"id":21228,"text":"Piercing Shots"},{"id":19069,"text":"Thick Skin"},{"id":37647,"text":"Dismembering"},{"id":25411,"text":"Infused"},{"id":8833,"text":"Heart of Ice"},{"id":33725,"text":"Swagger"},{"id":27788,"text":"Blood Drinker"},{"id":39530,"text":"Vitality Void"},{"id":31257,"text":"Natural Authority"},{"id":15852,"text":"Ethereal Feast"},{"id":41989,"text":"Resourcefulness"},{"id":62577,"text":"Essence Surge"},{"id":34506,"text":"Golem Commander"},{"id":41472,"text":"Discipline and Training"},{"id":28754,"text":"Assassination"},{"id":61198,"text":"Heart of the Warrior"},{"id":48698,"text":"Void Barrier"},{"id":15400,"text":"Skittering Runes"},{"id":53118,"text":"Barbarism"},{"id":42009,"text":"Soul of Steel"},{"id":48556,"text":"Thunderous Salvos"},{"id":57006,"text":"Vengeant Cascade"},{"id":11820,"text":"Anointed Flesh"},{"id":50029,"text":"Unnatural Calm"},{"id":1325,"text":"Golem's Blood"},{"id":16246,"text":"Tranquility"},{"id":53114,"text":"Revenge of the Hunted"},{"id":64217,"text":"Aspect of Stone"},{"id":52282,"text":"Tenacity"},{"id":32932,"text":"Sovereignty"},{"id":27119,"text":"Tribal Fury"},{"id":5624,"text":"Crusader"},{"id":4177,"text":"Spiritual Aid"},{"id":6799,"text":"Charisma"},{"id":55485,"text":"Constitution"},{"id":22535,"text":"Whispers of Doom"}]}},{"id":"enchant.stat_4135304575","text":"#% increased Attack and Cast Speed if you've Killed Recently","type":"enchant"},{"id":"enchant.stat_308396001","text":"#% increased Movement Speed if you haven't been Hit Recently","type":"enchant"},{"id":"enchant.stat_4291115328","text":"#% of Damage Leeched as Life if you've Killed Recently","type":"enchant"},{"id":"enchant.stat_3010587200","text":"#% increased Critical Strike Chance if you haven't Crit Recently","type":"enchant"},{"id":"enchant.stat_1122635070","text":"Regenerate #% of Life per second if you were Hit Recently","type":"enchant"},{"id":"enchant.stat_1293597434","text":"Adds # to # Lightning Damage if you haven't Killed Recently","type":"enchant"},{"id":"enchant.stat_2052525717","text":"Quality does not increase Physical Damage","type":"enchant"},{"id":"enchant.stat_3077703716","text":"Adds # to # Fire Damage if you've Killed Recently","type":"enchant"},{"id":"enchant.stat_412905518","text":"#% chance to Avoid being Stunned if you've Killed Recently","type":"enchant"},{"id":"enchant.stat_884399432","text":"Adds # to # Cold Damage if you've been Hit Recently","type":"enchant"},{"id":"enchant.stat_3693451031","text":"#% reduced Mana Cost of Skills if you've been Hit Recently","type":"enchant"},{"id":"enchant.stat_290368246","text":"# uses remaining","type":"enchant"},{"id":"enchant.stat_3915210550","text":"#% chance to Freeze, Shock and Ignite if you haven't Crit Recently","type":"enchant"},{"id":"enchant.stat_1222329688","text":"#% chance to Dodge Spell Hits if you've\ntaken Spell Damage Recently","type":"enchant"},{"id":"enchant.stat_3414398924","text":"#% Chance to Dodge Attack Hits if you've taken a Critical Strike Recently","type":"enchant"},{"id":"enchant.stat_989837434","text":"Does not consume Sextant Uses","type":"enchant"},{"id":"enchant.stat_1409388882","text":"#% increased Mana Regeneration Rate if you've cast a Spell Recently","type":"enchant"},{"id":"enchant.stat_3992962185","text":"#% chance to Trigger Word of Spite when Hit","type":"enchant"},{"id":"enchant.stat_2634094270","text":"#% chance to Trigger Word of Reflection when Hit","type":"enchant"},{"id":"enchant.stat_1162506883","text":"#% chance to Trigger Word of Force on Hit","type":"enchant"},{"id":"enchant.stat_1350605126","text":"#% chance to Trigger Word of Thunder on Kill","type":"enchant"},{"id":"enchant.stat_3111060801","text":"#% chance to Trigger Word of Light when you take a Critical Strike","type":"enchant"},{"id":"enchant.stat_3610104224","text":"#% chance to Trigger Word of the Tempest on Hit","type":"enchant"},{"id":"enchant.stat_756653426","text":"#% chance to Trigger Word of Blades on Hit","type":"enchant"},{"id":"enchant.stat_2527140156","text":"#% chance to Trigger Word of the Grave when your Skills or Minions Kill","type":"enchant"},{"id":"enchant.stat_3302747233","text":"#% chance to Trigger Word of Frost on Kill","type":"enchant"},{"id":"enchant.stat_891161612","text":"#% chance to Trigger Word of Flames on Hit","type":"enchant"},{"id":"enchant.stat_2472584898","text":"#% chance to Trigger Word of Ire when Hit","type":"enchant"},{"id":"enchant.stat_3901337328","text":"#% chance to Trigger Word of Inferno on Kill","type":"enchant"},{"id":"enchant.stat_1730598557","text":"# Blight Chests are Lucky","type":"enchant"},{"id":"enchant.stat_3012437250","text":"#% chance to Trigger Word of Fury on Hit","type":"enchant"},{"id":"enchant.stat_1580810115","text":"Tornado Shot fires an additional secondary Projectile","type":"enchant"},{"id":"enchant.stat_1482025771","text":"Grants #% increased Elemental Damage per 2% Quality","type":"enchant"},{"id":"enchant.stat_1715784068","text":"Players in Area are #% Delirious","type":"enchant"},{"id":"enchant.stat_1906144841","text":"#% chance to Trigger Word of War on Kill","type":"enchant"},{"id":"enchant.stat_281254371","text":"Damage Penetrates #% of Enemy Elemental Resistances if you haven't Killed Recently","type":"enchant"},{"id":"enchant.stat_995860222","text":"Molten Strike fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_1354248411","text":"#% chance to Trigger Word of Winter when Hit","type":"enchant"},{"id":"enchant.stat_835592326","text":"#% increased Cyclone Attack Speed","type":"enchant"},{"id":"enchant.stat_3750528071","text":"Map Boss is surrounded by Tormented Spirits","type":"enchant"},{"id":"enchant.stat_334333797","text":"Grants #% increased Area of Effect per 4% Quality","type":"enchant"},{"id":"enchant.stat_1454162553","text":"#% increased Cyclone Damage","type":"enchant"},{"id":"enchant.stat_3009270704","text":"Barrage fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_391609701","text":"Adds # to # Chaos Damage if you've taken a Critical Strike Recently","type":"enchant"},{"id":"enchant.stat_2711867632","text":"Grants # to Maximum Life per 2% Quality","type":"enchant"},{"id":"enchant.stat_186513618","text":"Spark fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_754797886","text":"#% increased Blade Flurry Damage","type":"enchant"},{"id":"enchant.stat_3645693773","text":"Spectres have #% increased Damage","type":"enchant"},{"id":"enchant.stat_3473724367","text":"Minions summoned by Your Scout Towers have #% increased Damage","type":"enchant"},{"id":"enchant.stat_4221797807","text":"#% increased Blade Vortex Spell Damage","type":"enchant"},{"id":"enchant.stat_3359178310","text":"#% increased Righteous Fire Damage","type":"enchant"},{"id":"enchant.stat_1084180630","text":"Your Meteor Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_3024867180","text":"#% increased Blade Vortex Duration","type":"enchant"},{"id":"enchant.stat_3026752303","text":"#% increased Ice Shot Damage","type":"enchant"},{"id":"enchant.stat_1153637043","text":"#% chance to Trigger Edict of Fury on Hit","type":"enchant"},{"id":"enchant.stat_4228580629","text":"#% chance to Trigger Edict of Reflection when Hit","type":"enchant"},{"id":"enchant.stat_3034788766","text":"Volatile Dead Consumes up to # additional corpse","type":"enchant"},{"id":"enchant.stat_257027296","text":"#% chance to Trigger Edict of Spite when Hit","type":"enchant"},{"id":"enchant.stat_1212590278","text":"#% increased Volatile Dead Damage","type":"enchant"},{"id":"enchant.stat_2094069860","text":"#% increased Dual Strike Damage","type":"enchant"},{"id":"enchant.stat_4253105373","text":"Herald of Agony has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_2278715446","text":"Split Arrow fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_926530613","text":"Your Chilling Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_3418033798","text":"Blood Rage grants additional #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_3318254108","text":"Storm Brand Damage Penetrates #% of Branded Enemy's Lightning Resistance","type":"enchant"},{"id":"enchant.stat_2471636515","text":"Blood and Sand has #% increased Buff Effect","type":"enchant"},{"id":"enchant.stat_2760193888","text":"#% chance to Trigger Edict of Force on Hit","type":"enchant"},{"id":"enchant.stat_3835483564","text":"Hatred has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_2246143608","text":"#% chance to Trigger Edict of Inferno on Kill","type":"enchant"},{"id":"enchant.stat_1815368527","text":"#% increased Tornado Shot Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_3685345485","text":"#% increased Barrage Damage","type":"enchant"},{"id":"enchant.stat_90942364","text":"#% chance to Trigger Edict of Frost on Kill","type":"enchant"},{"id":"enchant.stat_603658709","text":"#% chance to Trigger Edict of Thunder on Kill","type":"enchant"},{"id":"enchant.stat_2033463878","text":"#% chance to Trigger Edict of War on Kill","type":"enchant"},{"id":"enchant.stat_271342637","text":"#% chance to Trigger Edict of Light when you take a Critical Strike","type":"enchant"},{"id":"enchant.stat_1154155584","text":"#% of Glacial Cascade Physical Damage Converted to Cold Damage","type":"enchant"},{"id":"enchant.stat_3537762266","text":"Herald of Ice has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_2461552986","text":"Arc Chains an additional time","type":"enchant"},{"id":"enchant.stat_786149615","text":"#% chance to Trigger Edict of Flames on Hit","type":"enchant"},{"id":"enchant.stat_2328234364","text":"Herald of Ash has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_1711789839","text":"#% chance to Trigger Edict of the Tempest on Hit","type":"enchant"},{"id":"enchant.stat_2396402660","text":"Your Meteor Towers drop an additional Meteor","type":"enchant"},{"id":"enchant.stat_3701991680","text":"#% increased Flicker Strike Damage per Frenzy Charge","type":"enchant"},{"id":"enchant.stat_1809965314","text":"#% increased Double Strike Damage","type":"enchant"},{"id":"enchant.stat_2200030809","text":"Discipline has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_2160886943","text":"#% chance to Trigger Edict of Blades on Hit","type":"enchant"},{"id":"enchant.stat_3285719520","text":"#% chance to Trigger Edict of Ire when Hit","type":"enchant"},{"id":"enchant.stat_451037529","text":"#% increased Glacial Cascade Damage","type":"enchant"},{"id":"enchant.stat_147678606","text":"#% chance to Trigger Edict of Winter when Hit","type":"enchant"},{"id":"enchant.stat_3734339018","text":"Winter Orb has +# Maximum Stages","type":"enchant"},{"id":"enchant.stat_558298545","text":"#% increased Herald of Thunder Damage","type":"enchant"},{"id":"enchant.stat_2447447843","text":"Wild Strike's Beam Chains an additional time","type":"enchant"},{"id":"enchant.stat_2740567252","text":"#% increased Arc Damage","type":"enchant"},{"id":"enchant.stat_3152812191","text":"#% increased Ball Lightning Damage","type":"enchant"},{"id":"enchant.stat_1833626118","text":"#% chance for Discharge to deal Damage without removing Charges","type":"enchant"},{"id":"enchant.stat_2038865857","text":"#% increased Molten Strike Damage","type":"enchant"},{"id":"enchant.stat_3600749521","text":"Wrath has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3449510470","text":"#% increased Frost Blades Damage","type":"enchant"},{"id":"enchant.stat_1007135105","text":"#% increased Kinetic Blast Damage","type":"enchant"},{"id":"enchant.stat_1151217691","text":"#% increased Elemental Hit Attack Speed","type":"enchant"},{"id":"enchant.stat_3755794090","text":"#% increased Spectral Throw Damage","type":"enchant"},{"id":"enchant.stat_1086309398","text":"#% increased Ice Nova Damage","type":"enchant"},{"id":"enchant.stat_464448327","text":"#% increased Flicker Strike Damage","type":"enchant"},{"id":"enchant.stat_4137556603","text":"Spectres have #% increased Attack and Cast Speed","type":"enchant"},{"id":"enchant.stat_2589980605","text":"Magma Orb Chains an additional time","type":"enchant"},{"id":"enchant.stat_4109038270","text":"Elemental Hit deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3105097589","text":"Kinetic Blast has a #% chance for an additional explosion","type":"enchant"},{"id":"enchant.stat_1901955093","text":"Lightning Arrow hits an additional Enemy","type":"enchant"},{"id":"enchant.stat_3316822388","text":"Righteous Fire grants #% increased Spell Damage","type":"enchant"},{"id":"enchant.stat_1844721010","text":"#% increased Lacerate Damage","type":"enchant"},{"id":"enchant.stat_819852672","text":"#% increased Freezing Pulse Damage","type":"enchant"},{"id":"enchant.stat_2523298357","text":"#% increased Barrage Attack Speed","type":"enchant"},{"id":"enchant.stat_1554500307","text":"#% chance to Trigger Commandment of Fury on Hit","type":"enchant"},{"id":"enchant.stat_3036365740","text":"#% chance to Trigger Commandment of Reflection when Hit","type":"enchant"},{"id":"enchant.stat_2085855914","text":"Summoned Raging Spirits deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_1044970549","text":"Scourge Arrow creates an additional spore pod at Maximum Stages","type":"enchant"},{"id":"enchant.stat_2252338738","text":"#% chance to Trigger Decree of Fury on Hit","type":"enchant"},{"id":"enchant.stat_1662974426","text":"#% increased Temporal Chains Curse Effect","type":"enchant"},{"id":"enchant.stat_78239163","text":"#% increased Ancestral Warchief Totem Damage","type":"enchant"},{"id":"enchant.stat_1697080607","text":"#% increased Earthquake Damage","type":"enchant"},{"id":"enchant.stat_4033078288","text":"Sunder has #% increased Damage","type":"enchant"},{"id":"enchant.stat_862824495","text":"#% increased Reave Damage","type":"enchant"},{"id":"enchant.stat_3059357595","text":"Skeletons deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_3555919553","text":"#% increased Tornado Shot Damage","type":"enchant"},{"id":"enchant.stat_3655654928","text":"Desecrate Spawns an additional corpse","type":"enchant"},{"id":"enchant.stat_2003753577","text":"Anger has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_513715594","text":"Flesh Offering grants an additional #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_2583039202","text":"Blade Vortex has #% to Critical Strike Multiplier for each blade","type":"enchant"},{"id":"enchant.stat_2078274993","text":"#% increased Frostbolt Damage","type":"enchant"},{"id":"enchant.stat_1259277978","text":"#% chance to Trigger Commandment of Spite when Hit","type":"enchant"},{"id":"enchant.stat_3514973342","text":"#% increased Ethereal Knives Damage","type":"enchant"},{"id":"enchant.stat_889695873","text":"#% chance to Trigger Decree of Spite when Hit","type":"enchant"},{"id":"enchant.stat_2748553775","text":"#% increased Blade Vortex Area of Effect","type":"enchant"},{"id":"enchant.stat_3087527696","text":"#% increased Detonate Dead Damage","type":"enchant"},{"id":"enchant.stat_2499559911","text":"Raised Zombies have #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_2527931375","text":"#% increased Effect of the Buff granted by your Lightning Golems","type":"enchant"},{"id":"enchant.stat_767884542","text":"#% increased Herald of Ash Damage","type":"enchant"},{"id":"enchant.stat_1208019382","text":"#% increased Spark Damage","type":"enchant"},{"id":"enchant.stat_192534517","text":"Scourge Arrow deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1510381560","text":"Storm Brand has a #% chance to Chain an additional time","type":"enchant"},{"id":"enchant.stat_2250111474","text":"#% increased Effect of the Buff granted by your Ice Golems","type":"enchant"},{"id":"enchant.stat_200942664","text":"#% increased Vortex Damage","type":"enchant"},{"id":"enchant.stat_147952811","text":"#% chance to Trigger Commandment of Blades on Hit","type":"enchant"},{"id":"enchant.stat_841281094","text":"Pyroclast Mine fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_2925650365","text":"#% chance to Trigger Decree of Force on Hit","type":"enchant"},{"id":"enchant.stat_1935930829","text":"#% increased Discharge Damage","type":"enchant"},{"id":"enchant.stat_3420683028","text":"Ball Lightning fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_269930125","text":"#% increased Effect of the Buff granted by your Flame Golems","type":"enchant"},{"id":"enchant.stat_1106926438","text":"#% chance to Trigger Decree of War on Kill","type":"enchant"},{"id":"enchant.stat_2246425134","text":"#% increased Incinerate Damage","type":"enchant"},{"id":"enchant.stat_103922739","text":"#% increased Spark Projectile Speed","type":"enchant"},{"id":"enchant.stat_1366391108","text":"#% chance to Trigger Decree of Inferno on Kill","type":"enchant"},{"id":"enchant.stat_1575282859","text":"Flame Golems have #% increased Damage","type":"enchant"},{"id":"enchant.stat_3641868987","text":"#% chance to Trigger Decree of Light when you take a Critical Strike","type":"enchant"},{"id":"enchant.stat_2746213081","text":"#% increased Blade Flurry Area of Effect","type":"enchant"},{"id":"enchant.stat_3698833303","text":"#% increased Essence Drain Duration","type":"enchant"},{"id":"enchant.stat_1792647120","text":"#% chance to Trigger Decree of Reflection when Hit","type":"enchant"},{"id":"enchant.stat_1177831984","text":"Power Siphon fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_1471796012","text":"Cobra Lash Chains an additional time","type":"enchant"},{"id":"enchant.stat_3998182656","text":"Arc deals #% increased Damage for each time it has Chained","type":"enchant"},{"id":"enchant.stat_586167247","text":"Unearth Spawns corpses with # Level","type":"enchant"},{"id":"enchant.stat_2666843091","text":"#% chance to Trigger Commandment of Force on Hit","type":"enchant"},{"id":"enchant.stat_1496334795","text":"#% increased Caustic Arrow Damage","type":"enchant"},{"id":"enchant.delirium_reward_scarabs","text":"Delirium Reward Type: Scarabs (\u00d7#)","type":"enchant"},{"id":"enchant.stat_1255310381","text":"#% increased Frenzy Damage per Frenzy Charge","type":"enchant"},{"id":"enchant.stat_3738398726","text":"Clarity has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3543257184","text":"Ancestral Warchief Totem grants #% increased Melee Damage while Active","type":"enchant"},{"id":"enchant.stat_578067404","text":"#% increased Lacerate Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_2284801675","text":"#% increased Effect of the Buff granted by your Stone Golems","type":"enchant"},{"id":"enchant.stat_3395096718","text":"#% increased Scorching Ray Damage","type":"enchant"},{"id":"enchant.stat_308154324","text":"#% chance to Trigger Edict of the Grave when your Skills or Minions Kill","type":"enchant"},{"id":"enchant.stat_1819674879","text":"Animated Weapons deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_3222886961","text":"#% chance to Trigger Commandment of Winter when Hit","type":"enchant"},{"id":"enchant.stat_760994068","text":"#% increased Ethereal Knives Projectile Speed","type":"enchant"},{"id":"enchant.stat_494477497","text":"#% chance to Trigger Commandment of War on Kill","type":"enchant"},{"id":"enchant.stat_4203647216","text":"#% chance to Trigger Commandment of the Tempest on Hit","type":"enchant"},{"id":"enchant.stat_3348324479","text":"#% increased Elemental Weakness Curse Effect","type":"enchant"},{"id":"enchant.stat_3608981617","text":"Spectral Shield Throw fires an additional Shard Projectile","type":"enchant"},{"id":"enchant.stat_1268512925","text":"#% chance to Trigger Decree of Frost on Kill","type":"enchant"},{"id":"enchant.stat_2020183428","text":"#% chance to Trigger Commandment of Inferno on Kill","type":"enchant"},{"id":"enchant.stat_1843506018","text":"#% reduced Storm Call Duration","type":"enchant"},{"id":"enchant.stat_4014289250","text":"Blast Rain deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1715805151","text":"Armageddon Brand Damage Penetrates #% of Branded Enemy's Fire Resistance","type":"enchant"},{"id":"enchant.stat_3652051346","text":"Shock Nova ring deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1988467615","text":"#% chance to Trigger Commandment of Thunder on Kill","type":"enchant"},{"id":"enchant.stat_1573799461","text":"#% increased Dark Pact Damage","type":"enchant"},{"id":"enchant.stat_2634945088","text":"#% increased Galvanic Arrow Damage","type":"enchant"},{"id":"enchant.stat_3628984170","text":"Explosive Arrow deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1961975107","text":"#% increased Assassin's Mark Curse Effect","type":"enchant"},{"id":"enchant.stat_1532964880","text":"#% increased Flameblast Area of Effect","type":"enchant"},{"id":"enchant.stat_91821600","text":"Haste has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_620045439","text":"#% chance to Trigger Commandment of Ire when Hit","type":"enchant"},{"id":"enchant.stat_788307702","text":"#% increased Ball Lightning Area of Effect","type":"enchant"},{"id":"enchant.stat_2584129062","text":"Divine Ire deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1555251","text":"Icicle Mine has #% to Critical Strike Multiplier","type":"enchant"},{"id":"enchant.stat_4048820315","text":"Pyroclast Mine deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1171483499","text":"Stone Golems deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_277116504","text":"#% increased Contagion Damage","type":"enchant"},{"id":"enchant.stat_2729530556","text":"#% increased Dual Strike Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_2430635444","text":"#% increased Righteous Fire Area of Effect","type":"enchant"},{"id":"enchant.stat_850390248","text":"Minions summoned by Your Summoning Towers have #% increased Damage","type":"enchant"},{"id":"enchant.stat_1794090421","text":"#% increased Ice Crash Damage","type":"enchant"},{"id":"enchant.stat_1398394628","text":"Flicker Strike has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_2600498881","text":"#% increased Fireball Damage","type":"enchant"},{"id":"enchant.stat_1623552446","text":"#% increased Blight Damage","type":"enchant"},{"id":"enchant.stat_2833482311","text":"#% increased Bladefall Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_1666713639","text":"#% increased Wild Strike Damage","type":"enchant"},{"id":"enchant.stat_1359058534","text":"#% increased Cleave Damage","type":"enchant"},{"id":"enchant.stat_1381908541","text":"Summon Raging Spirit has #% chance to summon an extra Minion","type":"enchant"},{"id":"enchant.stat_1122074043","text":"Vitality has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_155429578","text":"Summoned Agony Crawler fires # additional Projectile","type":"enchant"},{"id":"enchant.stat_4117042530","text":"Soulrend deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3711386843","text":"#% chance to create an additional Animate Weapon copy","type":"enchant"},{"id":"enchant.stat_1028884162","text":"#% increased Split Arrow Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_3469967347","text":"#% increased Essence Drain Damage","type":"enchant"},{"id":"enchant.stat_3825617457","text":"#% increased Rain of Arrows Attack Speed","type":"enchant"},{"id":"enchant.stat_865511246","text":"Toxic Rain deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_522780692","text":"#% increased Frenzy Damage","type":"enchant"},{"id":"enchant.stat_2206071316","text":"Bane deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_4157143640","text":"Animated Guardians deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_1798919988","text":"Toxic Rain gains #% of Physical Damage as Extra Chaos Damage","type":"enchant"},{"id":"enchant.stat_1699139870","text":"Armageddon Brand deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2187415468","text":"#% chance to Trigger Decree of the Grave when your Skills or Minions Kill","type":"enchant"},{"id":"enchant.stat_1648511635","text":"#% increased Effect of the Buff granted by your Chaos Golems","type":"enchant"},{"id":"enchant.stat_3331111689","text":"#% increased Attack Speed per 8% Quality","type":"enchant"},{"id":"enchant.stat_600891507","text":"#% increased Magma Orb Damage","type":"enchant"},{"id":"enchant.stat_3734756042","text":"#% increased Viper Strike Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_775200811","text":"Holy Flame Totem fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_3816405721","text":"Ice Golems deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_696995312","text":"#% increased Burning Arrow Damage","type":"enchant"},{"id":"enchant.stat_684174846","text":"#% increased Earthquake Area of Effect","type":"enchant"},{"id":"enchant.stat_3760588941","text":"Heavy Strike has a #% chance to deal Double Damage","type":"enchant"},{"id":"enchant.stat_2420972973","text":"#% increased Effect of the Buff granted by your Carrion Golems","type":"enchant"},{"id":"enchant.stat_1660758870","text":"#% increased Kinetic Blast Area of Effect","type":"enchant"},{"id":"enchant.stat_4120821275","text":"Malevolence has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_1040958896","text":"#% chance to Summon an additional Skeleton Warrior with Summon Skeleton","type":"enchant"},{"id":"enchant.stat_3229261553","text":"Spirit Offering grants #% of Physical Damage as Extra Chaos Damage","type":"enchant"},{"id":"enchant.stat_2003026405","text":"#% increased Freezing Pulse Projectile Speed","type":"enchant"},{"id":"enchant.stat_4047323043","text":"Consecrated Path deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3215042347","text":"Purity of Fire has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3729006707","text":"#% increased Cold Snap Damage","type":"enchant"},{"id":"enchant.stat_1095160683","text":"Dominating Blow can summon an additional Magic Sentinel of Dominance","type":"enchant"},{"id":"enchant.stat_3293830776","text":"#% increased Enfeeble Curse Effect","type":"enchant"},{"id":"enchant.stat_3496292484","text":"#% increased Puncture Damage","type":"enchant"},{"id":"enchant.stat_1730304831","text":"Herald of Purity has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_2380598805","text":"#% increased Frost Bomb Damage","type":"enchant"},{"id":"enchant.stat_1087923932","text":"#% increased Frost Blades Projectile Speed","type":"enchant"},{"id":"enchant.stat_2524620107","text":"#% increased Molten Strike Area of Effect","type":"enchant"},{"id":"enchant.stat_1962401751","text":"#% increased Ice Shot Area of Effect","type":"enchant"},{"id":"enchant.stat_1477213724","text":"Divine Ire Damages an additional nearby Enemy when gaining Stages","type":"enchant"},{"id":"enchant.stat_3764410821","text":"Lightning Trap pierces an additional Target","type":"enchant"},{"id":"enchant.stat_38715141","text":"Summon Raging Spirit has #% increased Duration","type":"enchant"},{"id":"enchant.stat_169405468","text":"#% increased Flameblast Damage","type":"enchant"},{"id":"enchant.stat_3109915337","text":"#% chance to Trigger Commandment of Light when you take a Critical Strike","type":"enchant"},{"id":"enchant.stat_1056396846","text":"#% increased Contagion Area of Effect","type":"enchant"},{"id":"enchant.stat_3867484047","text":"Incinerate has # to maximum stages","type":"enchant"},{"id":"enchant.stat_2201904285","text":"#% increased Firestorm Damage","type":"enchant"},{"id":"enchant.stat_1285430327","text":"Purity of Lightning has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_1917107304","text":"#% increased Dual Strike Attack Speed","type":"enchant"},{"id":"enchant.stat_165958462","text":"#% chance to Trigger Decree of Blades on Hit","type":"enchant"},{"id":"enchant.stat_3359777583","text":"#% increased Storm Call Damage","type":"enchant"},{"id":"enchant.stat_3152806535","text":"Blood Rage grants additional #% chance to gain a Frenzy Charge on Kill","type":"enchant"},{"id":"enchant.stat_4224384031","text":"#% increased Ice Trap Damage","type":"enchant"},{"id":"enchant.stat_3564777492","text":"Smoke Mine grants additional #% increased Movement Speed","type":"enchant"},{"id":"enchant.stat_3026109282","text":"Your Fireball Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_1537296847","text":"Flesh and Stone has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3125201823","text":"Double Strike has a #% chance to deal Double Damage to Bleeding Enemies","type":"enchant"},{"id":"enchant.stat_3053448465","text":"#% increased Flameblast Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_1201942540","text":"#% increased Double Strike Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_1213035889","text":"Lightning Strike fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_3106577499","text":"#% increased Cleave Attack Speed","type":"enchant"},{"id":"enchant.stat_1943147282","text":"#% of Galvanic Arrow Physical Damage gained as extra Lightning Damage","type":"enchant"},{"id":"enchant.stat_2205814812","text":"#% increased Rain of Arrows Area of Effect","type":"enchant"},{"id":"enchant.stat_4255043252","text":"Molten Shell has #% increased Skill Effect Duration","type":"enchant"},{"id":"enchant.stat_101788216","text":"#% increased Flesh Offering Duration","type":"enchant"},{"id":"enchant.stat_3072232736","text":"Determination has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3798244977","text":"Summon Skitterbots has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_1062615953","text":"#% increased Spectral Throw Projectile Speed","type":"enchant"},{"id":"enchant.stat_3468905159","text":"Precision has #% increased Mana Reservation","type":"enchant"},{"id":"enchant.stat_3617955571","text":"Enduring Cry has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_2732675053","text":"#% increased Glacial Hammer Damage","type":"enchant"},{"id":"enchant.stat_3229580299","text":"#% of Burning Arrow Physical Damage gained as Extra Fire Damage","type":"enchant"},{"id":"enchant.stat_68809719","text":"#% increased Ice Nova Area of Effect","type":"enchant"},{"id":"enchant.stat_78767457","text":"#% increased Power Siphon Damage","type":"enchant"},{"id":"enchant.stat_3593547682","text":"Summoned Carrion Golems deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_2565809961","text":"#% increased Contagion Duration","type":"enchant"},{"id":"enchant.stat_1017161280","text":"Winter Orb has #% increased Area of Effect per Stage","type":"enchant"},{"id":"enchant.stat_2561956001","text":"Skills Supported by Spellslinger have #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_88796379","text":"#% increased Glacial Cascade Area of Effect","type":"enchant"},{"id":"enchant.stat_1063173946","text":"#% increased Spirit Offering Duration","type":"enchant"},{"id":"enchant.stat_4074562940","text":"#% increased Vortex Duration","type":"enchant"},{"id":"enchant.stat_3510848926","text":"#% increased Ice Spear Critical Strike Chance in second form","type":"enchant"},{"id":"enchant.stat_3134777190","text":"Lightning Strike pierces an additional Target","type":"enchant"},{"id":"enchant.stat_2233726619","text":"Arctic Armour has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_282417259","text":"#% increased Flammability Curse Effect","type":"enchant"},{"id":"enchant.stat_482660590","text":"#% increased Detonate Dead Area of Effect","type":"enchant"},{"id":"enchant.stat_3280107027","text":"Lightning Golems deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_3078026860","text":"Explosive Trap causes an additional smaller explosion","type":"enchant"},{"id":"enchant.stat_3179781611","text":"#% increased Volatile Dead Cast Speed","type":"enchant"},{"id":"enchant.stat_3031985694","text":"Lancing Steel's primary Projectile Pierces 1 additional Target","type":"enchant"},{"id":"enchant.stat_345703394","text":"#% increased Fire Trap Burning Damage","type":"enchant"},{"id":"enchant.stat_3316767657","text":"Sunder has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_4175469673","text":"#% increased Cremation Damage","type":"enchant"},{"id":"enchant.stat_2556095677","text":"#% increased Phase Run Duration","type":"enchant"},{"id":"enchant.stat_3949159285","text":"Explosive Arrow has #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_609478942","text":"#% reduced Lightning Warp Duration","type":"enchant"},{"id":"enchant.stat_1303996723","text":"Ancestral Protector Totem grants #% increased Attack Speed while Active","type":"enchant"},{"id":"enchant.stat_1902197291","text":"#% increased Whirling Blades Attack Speed","type":"enchant"},{"id":"enchant.stat_3233607638","text":"Bone Offering grants an additional #% Chance to Block Attack Damage","type":"enchant"},{"id":"enchant.stat_4172171622","text":"Dash has # Cooldown Use","type":"enchant"},{"id":"enchant.stat_3186938438","text":"#% increased Puncture Duration","type":"enchant"},{"id":"enchant.stat_990408262","text":"#% chance to Trigger Decree of Flames on Hit","type":"enchant"},{"id":"enchant.stat_2555366825","text":"#% of Glacial Hammer Physical Damage gained as Extra Cold Damage","type":"enchant"},{"id":"enchant.stat_775034903","text":"#% increased Frost Wall Duration","type":"enchant"},{"id":"enchant.stat_3131492956","text":"#% increased Lightning Trap Damage","type":"enchant"},{"id":"enchant.stat_168538372","text":"#% increased Orb of Storms Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_1671985305","text":"#% chance to Trigger Decree of the Tempest on Hit","type":"enchant"},{"id":"enchant.stat_648343221","text":"#% increased Shield Charge Attack Speed","type":"enchant"},{"id":"enchant.stat_1877374369","text":"#% chance to Trigger Commandment of Frost on Kill","type":"enchant"},{"id":"enchant.stat_4243904146","text":"#% Chance on Frenzy to gain an additional Frenzy Charge","type":"enchant"},{"id":"enchant.stat_3096183736","text":"Tempest Shield chains an additional time","type":"enchant"},{"id":"enchant.stat_2228518621","text":"Raised Zombies deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_1898356067","text":"Storm Burst has a #% chance to create an additional Orb","type":"enchant"},{"id":"enchant.stat_3703722637","text":"#% chance to Trigger Commandment of Flames on Hit","type":"enchant"},{"id":"enchant.stat_840189382","text":"Siege Ballista deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1894493605","text":"#% increased Freezing Pulse Cast Speed","type":"enchant"},{"id":"enchant.stat_2585271359","text":"#% increased Viper Strike Damage","type":"enchant"},{"id":"enchant.stat_524936200","text":"#% increased Wild Strike Area of Effect","type":"enchant"},{"id":"enchant.stat_4152292551","text":"#% chance to Trigger Decree of Thunder on Kill","type":"enchant"},{"id":"enchant.stat_2515273888","text":"#% chance to Trigger Decree of Winter when Hit","type":"enchant"},{"id":"enchant.stat_1486490067","text":"#% increased Reave Radius","type":"enchant"},{"id":"enchant.stat_3162144587","text":"Icicle Mine has #% increased Throwing Speed","type":"enchant"},{"id":"enchant.stat_2789561878","text":"Sniper's Mark has #% increased Curse Effect","type":"enchant"},{"id":"enchant.stat_3910961021","text":"#% increased Herald of Ice Damage","type":"enchant"},{"id":"enchant.stat_2846773529","text":"#% increased Creeping Frost Damage","type":"enchant"},{"id":"enchant.stat_3338074370","text":"#% increased Animate Weapon Duration","type":"enchant"},{"id":"enchant.stat_131320052","text":"Converted Enemies have #% increased Damage","type":"enchant"},{"id":"enchant.stat_1549594869","text":"#% increased Dark Pact Cast Speed","type":"enchant"},{"id":"enchant.stat_1528965411","text":"#% increased Warlord's Mark Curse Effect","type":"enchant"},{"id":"enchant.stat_4129421630","text":"#% increased Lightning Arrow Area of Effect","type":"enchant"},{"id":"enchant.stat_2596239449","text":"Ancestral Protector Totem deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_195463427","text":"Arc has #% chance to Shock","type":"enchant"},{"id":"enchant.stat_3930497977","text":"#% increased Ice Crash Area of Effect","type":"enchant"},{"id":"enchant.stat_1607493537","text":"#% increased Bone Offering Duration","type":"enchant"},{"id":"enchant.stat_1557531966","text":"Lightning Trap Damage Penetrates #% Lightning Resistance","type":"enchant"},{"id":"enchant.stat_340193547","text":"Tectonic Slam has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_1440798870","text":"Flame Dash has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_3278819254","text":"#% increased Poacher's Mark Curse Effect","type":"enchant"},{"id":"enchant.stat_2871777604","text":"Raised Zombies have #% to Elemental Resistances","type":"enchant"},{"id":"enchant.stat_3172519570","text":"#% increased Cleave Area of Effect","type":"enchant"},{"id":"enchant.stat_1030003515","text":"#% increased Flame Surge Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_4147746721","text":"Dash travels #% increased distance","type":"enchant"},{"id":"enchant.stat_1491182794","text":"#% increased Flame Surge Damage","type":"enchant"},{"id":"enchant.stat_2363866815","text":"Icicle Mine deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_12756171","text":"#% increased Lightning Tendrils Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_430890565","text":"#% increased Flame Surge Damage against Burning Enemies","type":"enchant"},{"id":"enchant.stat_1019790379","text":"Berserk has #% reduced Rage loss per second","type":"enchant"},{"id":"enchant.stat_3781924200","text":"Ice Shot has #% increased Area of Effect angle","type":"enchant"},{"id":"enchant.stat_2461424099","text":"Vortex has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_287319069","text":"Dread Banner has #% increased Aura Effect","type":"enchant"},{"id":"enchant.stat_2896672990","text":"#% increased Lightning Arrow Damage","type":"enchant"},{"id":"enchant.stat_35081783","text":"Wintertide Brand has # to maximum Stages","type":"enchant"},{"id":"enchant.stat_618920318","text":"Lancing Steel's additional Projectiles have #% chance to Impale Enemies","type":"enchant"},{"id":"enchant.stat_4170725899","text":"Blight has #% increased Hinder Duration","type":"enchant"},{"id":"enchant.stat_3395908304","text":"#% increased Conductivity Curse Effect","type":"enchant"},{"id":"enchant.stat_2511915418","text":"#% increased Blight Area of Effect","type":"enchant"},{"id":"enchant.stat_2289367813","text":"Cold Snap has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_760606760","text":"Perforate creates # Spike","type":"enchant"},{"id":"enchant.stat_954135826","text":"#% increased Heavy Strike Damage","type":"enchant"},{"id":"enchant.stat_3371533847","text":"Soulrend fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_447560345","text":"Wither has #% increased Duration","type":"enchant"},{"id":"enchant.stat_2512194486","text":"Armageddon Brand has #% increased Activation Frequency","type":"enchant"},{"id":"enchant.stat_1646093658","text":"#% increased Magma Orb Area of Effect","type":"enchant"},{"id":"enchant.stat_309198891","text":"Wave of Conviction deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3061969105","text":"#% increased Ground Slam Area of Effect","type":"enchant"},{"id":"enchant.stat_2753191013","text":"#% increased Power Siphon Attack Speed","type":"enchant"},{"id":"enchant.stat_3854723321","text":"#% increased Lacerate Area of Effect","type":"enchant"},{"id":"enchant.stat_387490713","text":"#% increased Caustic Arrow Duration","type":"enchant"},{"id":"enchant.stat_3080391193","text":"Summoned Holy Relics have #% increased Buff Effect","type":"enchant"},{"id":"enchant.stat_3931013900","text":"#% increased Firestorm explosion Area of Effect","type":"enchant"},{"id":"enchant.stat_2313072099","text":"Shattering Steel deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1663783758","text":"Berserk has #% increased Buff Effect","type":"enchant"},{"id":"enchant.stat_944311193","text":"Purifying Flame deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1478321338","text":"Your Flamethrower Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_242838571","text":"#% increased Infernal Blow Damage","type":"enchant"},{"id":"enchant.stat_108883700","text":"#% increased Ground Slam Damage","type":"enchant"},{"id":"enchant.stat_3519675720","text":"Blast Rain fires an additional Arrow","type":"enchant"},{"id":"enchant.stat_1374371477","text":"#% chance to Trigger Commandment of the Grave when your Skills or Minions Kill","type":"enchant"},{"id":"enchant.stat_3869217625","text":"#% increased Viper Strike Duration","type":"enchant"},{"id":"enchant.stat_39356080","text":"#% increased Lightning Tendrils Damage","type":"enchant"},{"id":"enchant.stat_2844839137","text":"Summoned Skitterbots have #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_1609523492","text":"#% increased Assassin's Mark Duration","type":"enchant"},{"id":"enchant.stat_308326229","text":"#% increased Reckoning Damage","type":"enchant"},{"id":"enchant.stat_957864706","text":"#% increased Dark Pact Area of Effect","type":"enchant"},{"id":"enchant.stat_1691710359","text":"#% increased Firestorm Duration","type":"enchant"},{"id":"enchant.stat_2801853811","text":"Holy Flame Totem deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2287764959","text":"#% increased Vigilant Strike Damage","type":"enchant"},{"id":"enchant.stat_3854556792","text":"#% increased Caustic Arrow Area of Effect","type":"enchant"},{"id":"enchant.stat_3320271130","text":"#% increased Ancestral Warchief Totem Area of Effect","type":"enchant"},{"id":"enchant.stat_1891516164","text":"#% increased Spectral Shield Throw Damage","type":"enchant"},{"id":"enchant.stat_3232905239","text":"#% Chance to gain a Power Charge on Critical Strike with Ice Spear","type":"enchant"},{"id":"enchant.stat_4207255685","text":"Explosive Trap deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2140127102","text":"Toxic Rain fires # additional Arrow","type":"enchant"},{"id":"enchant.stat_2680060124","text":"Convocation has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_3901016205","text":"Smite deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2484188706","text":"#% of Infernal Blow Physical Damage gained as Extra Fire Damage","type":"enchant"},{"id":"enchant.stat_2298223148","text":"#% increased Searing Bond Damage","type":"enchant"},{"id":"enchant.stat_1818525360","text":"#% chance to Trigger Decree of Ire when Hit","type":"enchant"},{"id":"enchant.stat_1743954272","text":"#% increased Discharge Radius","type":"enchant"},{"id":"enchant.stat_966400988","text":"Herald of Thunder has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_2421363283","text":"Grants #% increased Accuracy per 2% Quality","type":"enchant"},{"id":"enchant.stat_444686294","text":"#% reduced Spectral Throw Projectile Deceleration","type":"enchant"},{"id":"enchant.stat_3432170876","text":"#% increased Rain of Arrows Damage","type":"enchant"},{"id":"enchant.stat_2070247068","text":"#% increased Storm Call Area of Effect","type":"enchant"},{"id":"enchant.stat_610562666","text":"Penance Brand deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3309486263","text":"Blade Blast detonates other Lingering Blades within an #% increased Area","type":"enchant"},{"id":"enchant.stat_2098790581","text":"Fireball Always Ignites","type":"enchant"},{"id":"enchant.stat_3192966873","text":"Purity of Ice has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_4202548383","text":"#% increased Sweep Area of Effect","type":"enchant"},{"id":"enchant.stat_1433838252","text":"#% chance to Dodge Attack Hits while at maximum Blade Flurry stages","type":"enchant"},{"id":"enchant.stat_3653459847","text":"Mirror Arrow and Mirror Arrow Clones have #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_702909553","text":"#% increased Scorching Ray beam length","type":"enchant"},{"id":"enchant.stat_565901339","text":"#% increased Shock Nova Area of Effect","type":"enchant"},{"id":"enchant.stat_2440551805","text":"#% increased Shockwave Totem Damage","type":"enchant"},{"id":"enchant.stat_3917881666","text":"#% reduced Earthquake Duration","type":"enchant"},{"id":"enchant.stat_1967878868","text":"Blink Arrow and Blink Arrow Clones have #% increased Damage","type":"enchant"},{"id":"enchant.stat_1460506005","text":"Kinetic Bolt changes direction # additional time","type":"enchant"},{"id":"enchant.stat_1810898461","text":"Wither has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_303359279","text":"Soulrend also Hinders Enemies, with #% reduced Movement Speed","type":"enchant"},{"id":"enchant.stat_2226973351","text":"Burning Arrow Always Ignites","type":"enchant"},{"id":"enchant.stat_1041365824","text":"Explosive Arrow has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_3961497709","text":"#% increased Storm Burst Area of Effect","type":"enchant"},{"id":"enchant.stat_2212298325","text":"Divine Ire's beam has #% increased width","type":"enchant"},{"id":"enchant.stat_2094281311","text":"#% to Animated Guardian Elemental Resistances","type":"enchant"},{"id":"enchant.stat_3995612171","text":"#% increased Arctic Armour Buff Effect","type":"enchant"},{"id":"enchant.stat_3285061858","text":"Consecrated Path has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_2054059315","text":"#% increased Convocation Buff Effect","type":"enchant"},{"id":"enchant.stat_1561141582","text":"#% increased Spectral Shield Throw Projectile Speed","type":"enchant"},{"id":"enchant.stat_1447427508","text":"Vengeance has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_2844206732","text":"#% increased Punishment Curse Effect","type":"enchant"},{"id":"enchant.stat_3766479096","text":"#% increased Warlord's Mark Duration","type":"enchant"},{"id":"enchant.stat_2896357741","text":"Siege Ballista has #% increased Totem Placement Speed","type":"enchant"},{"id":"enchant.stat_209345940","text":"#% increased Lightning Warp Damage","type":"enchant"},{"id":"enchant.stat_3229878341","text":"#% increased Vulnerability Duration","type":"enchant"},{"id":"enchant.stat_2948719994","text":"#% increased Storm Burst Damage","type":"enchant"},{"id":"enchant.stat_4189505564","text":"Devouring Totem has #% Chance to Consume an additional corpse","type":"enchant"},{"id":"enchant.stat_3269321994","text":"Ice Nova Always Freezes","type":"enchant"},{"id":"enchant.stat_3850775143","text":"#% increased Leap Slam Damage","type":"enchant"},{"id":"enchant.stat_2159486200","text":"Lancing Steel deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_246356360","text":"Your Empowering Towers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_2983274404","text":"Blink Arrow has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_531461618","text":"Storm Brand deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1065909420","text":"#% increased Vulnerability Curse Effect","type":"enchant"},{"id":"enchant.stat_1967208066","text":"Plague Bearer Buff grants #% to Poison Damage over Time Multiplier while Infecting","type":"enchant"},{"id":"enchant.stat_2231403318","text":"#% increased Fireball Cast Speed","type":"enchant"},{"id":"enchant.stat_73209495","text":"Map has a Vaal Side Area","type":"enchant"},{"id":"enchant.stat_2875508213","text":"#% increased Orb of Storms Area of Effect","type":"enchant"},{"id":"enchant.stat_494231298","text":"Stormblast Mine deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2121581717","text":"#% increased Tempest Shield Damage","type":"enchant"},{"id":"enchant.stat_444858149","text":"Siege Ballista has #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_1539846779","text":"Detonate Dead has a #% chance to detonate an additional corpse","type":"enchant"},{"id":"enchant.stat_341054435","text":"#% increased Bodyswap Damage","type":"enchant"},{"id":"enchant.stat_2200744772","text":"Winter Orb deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_4082863126","text":"Holy Flame Totem has #% increased Projectile Speed","type":"enchant"},{"id":"enchant.stat_1556508042","text":"Sand Bladestorms move with #% increased speed","type":"enchant"},{"id":"enchant.stat_3367298564","text":"#% increased Ice Trap Area of Effect","type":"enchant"},{"id":"enchant.stat_3283028259","text":"Artillery Ballista fires an additional Arrow","type":"enchant"},{"id":"enchant.stat_1654191578","text":"Sniper's Mark has #% increased Duration","type":"enchant"},{"id":"enchant.stat_2166622264","text":"#% increased Flammability Duration","type":"enchant"},{"id":"enchant.stat_1404787106","text":"Venom Gyre deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2505115650","text":"Chaos Golems deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_4102483123","text":"Steelskin Buff can take #% increased amount of Damage","type":"enchant"},{"id":"enchant.stat_1999307054","text":"Sunder has #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_1336543283","text":"#% increased Immortal Call Duration","type":"enchant"},{"id":"enchant.stat_1924239636","text":"#% increased Punishment Duration","type":"enchant"},{"id":"enchant.stat_1949390531","text":"#% increased Molten Shell Buff Effect","type":"enchant"},{"id":"enchant.stat_819890745","text":"#% increased Conductivity Duration","type":"enchant"},{"id":"enchant.stat_516587640","text":"#% increased Enfeeble Duration","type":"enchant"},{"id":"enchant.stat_2690620076","text":"#% increased Elemental Weakness Duration","type":"enchant"},{"id":"enchant.stat_3069740560","text":"#% increased Bladefall Damage","type":"enchant"},{"id":"enchant.stat_4227497218","text":"#% increased Poacher's Mark Duration","type":"enchant"},{"id":"enchant.stat_4031295671","text":"#% increased Infernal Blow Area of Effect","type":"enchant"},{"id":"enchant.stat_3953599026","text":"#% increased Unearth Damage","type":"enchant"},{"id":"enchant.stat_2555469486","text":"#% increased Split Arrow Damage","type":"enchant"},{"id":"enchant.stat_2834109076","text":"Your Freezebolt Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_1601558321","text":"#% to Stone Golem Elemental Resistances","type":"enchant"},{"id":"enchant.stat_3630274354","text":"#% increased Lightning Strike Damage","type":"enchant"},{"id":"enchant.stat_3503624267","text":"Cremation can have up to # additional Geyser at a time","type":"enchant"},{"id":"enchant.stat_1153159301","text":"#% increased Shockwave Totem Area of Effect","type":"enchant"},{"id":"enchant.stat_3672666316","text":"Plague Bearer deals Damage based on an additional #% of Plague Value","type":"enchant"},{"id":"enchant.stat_4147277532","text":"#% increased Rallying Cry Buff Effect","type":"enchant"},{"id":"enchant.stat_1230050013","text":"#% increased Lightning Tendrils Area of Effect","type":"enchant"},{"id":"enchant.stat_181307038","text":"#% increased Fire Trap Damage","type":"enchant"},{"id":"enchant.stat_122106412","text":"Arcane Cloak Spends an additional #% of current Mana","type":"enchant"},{"id":"enchant.stat_1347575155","text":"#% increased Lightning Warp Cast Speed","type":"enchant"},{"id":"enchant.stat_551375258","text":"#% increased Static Strike Damage","type":"enchant"},{"id":"enchant.stat_2479762395","text":"Frost Wall has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_3367800526","text":"#% increased Leap Slam Area of Effect","type":"enchant"},{"id":"enchant.stat_3590425794","text":"Explosive Arrow has #% increased Duration","type":"enchant"},{"id":"enchant.stat_3505939359","text":"Rain of Arrows has #% chance to fire an additional sequence of arrows","type":"enchant"},{"id":"enchant.stat_2048678824","text":"Consecrated Path has #% increased teleport range","type":"enchant"},{"id":"enchant.stat_708179348","text":"#% increased Searing Bond Totem Placement Speed","type":"enchant"},{"id":"enchant.stat_1549898151","text":"Grace has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_2967267655","text":"# Weapon Range per 10% Quality","type":"enchant"},{"id":"enchant.stat_2412561418","text":"Wave of Conviction has #% increased Duration","type":"enchant"},{"id":"enchant.stat_1056655244","text":"Your Glacial Cage Towers have #% increased Duration","type":"enchant"},{"id":"enchant.stat_1494168614","text":"Shrapnel Ballista Pierces an additional Target","type":"enchant"},{"id":"enchant.stat_2143519574","text":"Conversion Trap #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_910992698","text":"Tectonic Slam has #% fissure branching chance","type":"enchant"},{"id":"enchant.stat_1946386823","text":"#% to Chaos Golem Elemental Resistances","type":"enchant"},{"id":"enchant.stat_2778301298","text":"Orb of Storms has #% increased Cast Speed","type":"enchant"},{"id":"enchant.stat_680880155","text":"Steelskin grants #% additional Physical Damage Reduction","type":"enchant"},{"id":"enchant.stat_3100629498","text":"Consecrated Ground from Purifying Flame applies #% increased Damage taken to Enemies","type":"enchant"},{"id":"enchant.stat_2906742892","text":"#% increased Static Strike Duration","type":"enchant"},{"id":"enchant.stat_3948894096","text":"#% increased Shock Nova Damage","type":"enchant"},{"id":"enchant.stat_683073695","text":"#% increased Despair Duration","type":"enchant"},{"id":"enchant.stat_2287986752","text":"Riposte has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_592861938","text":"#% increased Ancestral Protector Totem Placement Speed","type":"enchant"},{"id":"enchant.stat_3205997967","text":"Elemental Hit Always Freezes, Shocks and Ignites","type":"enchant"},{"id":"enchant.stat_574378310","text":"Blast Rain has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_297308603","text":"Blast Rain has a #% chance to fire an additional Arrow","type":"enchant"},{"id":"enchant.stat_4210927948","text":"#% increased Lightning Trap Lightning Ailment Effect","type":"enchant"},{"id":"enchant.stat_3013068851","text":"#% increased Flame Dash Damage","type":"enchant"},{"id":"enchant.stat_2224580362","text":"Cobra Lash deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_804983774","text":"Reckoning has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_1451372148","text":"#% increased Frost Bomb Area of Effect","type":"enchant"},{"id":"enchant.stat_3772643988","text":"#% increased Sentinel of Dominance Duration","type":"enchant"},{"id":"enchant.stat_2833259811","text":"Shattering Steel fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_2387717928","text":"#% increased Unearth Cast Speed","type":"enchant"},{"id":"enchant.stat_1588572574","text":"#% increased Rejuvenation Totem Aura Effect","type":"enchant"},{"id":"enchant.stat_2685860927","text":"#% increased Static Strike Area of Effect","type":"enchant"},{"id":"enchant.stat_1954529734","text":"Purifying Flame has #% increased Area of Effect if targeting Consecrated Ground","type":"enchant"},{"id":"enchant.stat_3536566359","text":"Perforate has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_888039248","text":"#% increased Temporal Chains Duration","type":"enchant"},{"id":"enchant.stat_2836937264","text":"# to maximum number of Sentinels of Purity","type":"enchant"},{"id":"enchant.stat_3317752680","text":"#% increased Devouring Totem Leech per second","type":"enchant"},{"id":"enchant.stat_3524326896","text":"Frost Bomb has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_3801130154","text":"Ice Spear fires an additional Projectile","type":"enchant"},{"id":"enchant.stat_3730999759","text":"#% increased Leap Slam Attack Speed","type":"enchant"},{"id":"enchant.stat_1849664701","text":"Purity of Elements has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3252913608","text":"Attacks Exerted by Seismic Cry deal #% increased Damage ","type":"enchant"},{"id":"enchant.stat_732631533","text":"Cobra Lash has #% increased Projectile Speed","type":"enchant"},{"id":"enchant.stat_1220207954","text":"#% to Ancestral Protector Totem Elemental Resistances","type":"enchant"},{"id":"enchant.stat_2294732229","text":"Smite has #% increased Aura Effect","type":"enchant"},{"id":"enchant.stat_1147445274","text":"Arcanist Brand has #% increased Cast Speed","type":"enchant"},{"id":"enchant.stat_2779309910","text":"#% increased Double Strike Attack Speed","type":"enchant"},{"id":"enchant.stat_2244239056","text":"Kinetic Bolt has #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_2592211591","text":"War Banner has #% increased Aura Effect","type":"enchant"},{"id":"enchant.stat_3804575865","text":"#% increased Creeping Frost Duration","type":"enchant"},{"id":"enchant.stat_1819243251","text":"Your Meteor Towers always Stun","type":"enchant"},{"id":"enchant.stat_2520825974","text":"#% to Ice Golem Elemental Resistances","type":"enchant"},{"id":"enchant.stat_3295914630","text":"Ice Spear travels #% reduced distance before changing forms","type":"enchant"},{"id":"enchant.stat_3999206457","text":"Tectonic Slam deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2898302567","text":"Charged Dash has # to Radius of each Wave's last damage Area","type":"enchant"},{"id":"enchant.stat_770334536","text":"Wintertide Brand deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_1235531589","text":"Stormbind deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3011405513","text":"Your Arc Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_2337005967","text":"Dominating Blow can summon an additional Rare Sentinel of Dominance","type":"enchant"},{"id":"enchant.stat_3279786746","text":"#% increased Fire Trap Burning Ground Duration","type":"enchant"},{"id":"enchant.stat_1803063132","text":"Gain #% of Rejuvenation Totem Life Regeneration as extra Mana Regeneration","type":"enchant"},{"id":"enchant.stat_397438226","text":"#% increased Bodyswap Cast Speed","type":"enchant"},{"id":"enchant.stat_64670441","text":"Pestilent Strike has #% increased Duration","type":"enchant"},{"id":"enchant.stat_2202161594","text":"Slaying Enemies close together has a #% chance to attract monsters from Beyond","type":"enchant"},{"id":"enchant.stat_2157671820","text":"Venom Gyre has a #% chance to inflict Withered for 2 seconds on Hit","type":"enchant"},{"id":"enchant.stat_3764009282","text":"Grants # to Maximum Mana per 2% Quality","type":"enchant"},{"id":"enchant.stat_253870897","text":"#% increased Sweep Damage","type":"enchant"},{"id":"enchant.stat_2146663823","text":"Attacks Exerted by Ancestral Cry deal #% increased Damage ","type":"enchant"},{"id":"enchant.stat_105839441","text":"Infernal Blow Debuff deals an additional #% of Damage per Charge","type":"enchant"},{"id":"enchant.stat_1631824124","text":"#% increased Decoy Totem Life","type":"enchant"},{"id":"enchant.stat_2519689029","text":"#% increased Searing Bond Totem Elemental Resistances","type":"enchant"},{"id":"enchant.stat_3465202861","text":"#% of Ice Crash Physical Damage gained as Extra Cold Damage","type":"enchant"},{"id":"enchant.stat_2731606134","text":"Perforate deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3569393676","text":"Blade Blast has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_4264622444","text":"Ethereal Knives Pierces an additional Target ","type":"enchant"},{"id":"enchant.stat_3070497632","text":"Frostblink has #% increased maximum travel distance","type":"enchant"},{"id":"enchant.stat_644285691","text":"Chills from Ice Nova Hits always reduce Action Speed by at least #%","type":"enchant"},{"id":"enchant.stat_3490662882","text":"#% increased Shield Charge Damage","type":"enchant"},{"id":"enchant.stat_1698558866","text":"Galvanic Arrow has #% increased Projectile Speed","type":"enchant"},{"id":"enchant.stat_2562208244","text":"Incinerate has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_856157011","text":"Pestilent Strike deals #% increased Damage","type":"enchant"},{"id":"enchant.delirium_reward_currency","text":"Delirium Reward Type: Currency (\u00d7#)","type":"enchant"},{"id":"enchant.stat_21993405","text":"Area contains # additional Packs with Mirrored Rare Monsters","type":"enchant"},{"id":"enchant.stat_3609207587","text":"#% Chance to gain an additional Power Charge on Kill with Power Siphon","type":"enchant"},{"id":"enchant.stat_289027663","text":"Chain Hook deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_343849491","text":"#% increased Heavy Strike Attack Speed","type":"enchant"},{"id":"enchant.stat_2791271819","text":"Ensnaring Arrow has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_648647905","text":"Ground Slam has a #% increased angle","type":"enchant"},{"id":"enchant.stat_3151377452","text":"Players and their Minions cannot take Reflected Damage","type":"enchant"},{"id":"enchant.stat_2068943099","text":"Earthquake deals #% increased Damage per 0.1 seconds Duration","type":"enchant"},{"id":"enchant.stat_4231484190","text":"#% increased Frostbolt Cast Speed","type":"enchant"},{"id":"enchant.stat_3787328468","text":"Pestilent Strike has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_2588242810","text":"Chain Hook has a #% chance to grant +1 Rage if it Hits Enemies","type":"enchant"},{"id":"enchant.stat_1678345858","text":"Enemies affected by Bear Trap take #% increased Damage from Trap or Mine Hits","type":"enchant"},{"id":"enchant.stat_1443215722","text":"#% increased Frostbite Curse Effect","type":"enchant"},{"id":"enchant.stat_1831757355","text":"Wintertide Brand has #% increased Chill Effect","type":"enchant"},{"id":"enchant.stat_2329255938","text":"Nemesis Monsters drop # additional Currency Item","type":"enchant"},{"id":"enchant.stat_4136186767","text":"Mirror Arrow and Mirror Arrow Clones deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_2275055843","text":"#% increased Vigilant Strike Fortify Duration","type":"enchant"},{"id":"enchant.stat_478612089","text":"Zealotry has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_3672378181","text":"Rare Maps contain # additional Rare Monster packs","type":"enchant"},{"id":"enchant.stat_2702698464","text":"Infernal Cry has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_4084540709","text":"#% increased Orb of Storms Damage","type":"enchant"},{"id":"enchant.stat_3723124286","text":"#% increased Whirling Blades Damage","type":"enchant"},{"id":"enchant.stat_321894708","text":"Stormblast Mine has #% increased Throwing Speed","type":"enchant"},{"id":"enchant.stat_2413715772","text":"#% increased Bladefall Area of Effect","type":"enchant"},{"id":"enchant.stat_3637727672","text":"General's Cry has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_59544006","text":"Summoned Carrion Golems have #% to all Elemental Resistances","type":"enchant"},{"id":"enchant.stat_815588902","text":"Frostblink has #% reduced Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_2109176627","text":"Frost Bomb has #% increased Debuff Duration","type":"enchant"},{"id":"enchant.stat_1781106044","text":"Mirror Arrow has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_3185156108","text":"#% increased Despair Curse Effect","type":"enchant"},{"id":"enchant.stat_4008016019","text":"Beyond Portals have a #% chance to spawn an additional Beyond Demon","type":"enchant"},{"id":"enchant.stat_1452255482","text":"Flamethrower Trap has an additional Flame","type":"enchant"},{"id":"enchant.stat_2807947","text":"Consecrated Ground from Holy Flame Totem applies #% increased Damage taken to Enemies","type":"enchant"},{"id":"enchant.stat_982975385","text":"Lightning Spire Trap deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3823033989","text":"Stormbind has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_4259029320","text":"#% chance for Phase Run to increase Duration without removing Frenzy Charges","type":"enchant"},{"id":"enchant.stat_1734517294","text":"Artillery Ballista Damage Penetrates #% Fire Resistance","type":"enchant"},{"id":"enchant.stat_1972101281","text":"#% increased Vengeance Damage","type":"enchant"},{"id":"enchant.stat_780453137","text":"#% increased Infernal Cry Damage","type":"enchant"},{"id":"enchant.stat_3279758713","text":"#% increased Scorching Ray Cast Speed","type":"enchant"},{"id":"enchant.stat_244125450","text":"#% Chance for Puncture to Maim on hit","type":"enchant"},{"id":"enchant.stat_1877863115","text":"#% increased Bear Trap Damage","type":"enchant"},{"id":"enchant.stat_1298820272","text":"#% to increased Flame Golem Elemental Resistances","type":"enchant"},{"id":"enchant.stat_27640220","text":"#% to Raised Spectre Elemental Resistances","type":"enchant"},{"id":"enchant.stat_797408710","text":"Charged Dash has #% more Movement Speed","type":"enchant"},{"id":"enchant.stat_839907382","text":"Magic Maps contain # additional packs of Magic Monsters","type":"enchant"},{"id":"enchant.stat_288248772","text":"Glacial Hammer has #% chance to Freeze","type":"enchant"},{"id":"enchant.stat_2953109663","text":"#% chance to Dodge Attack Hits if you have finished Channelling Charged Dash Recently","type":"enchant"},{"id":"enchant.stat_1213017413","text":"Shrapnel Ballista has #% increased Projectile Speed","type":"enchant"},{"id":"enchant.stat_3371538704","text":"#% increased Cold Snap Area of Effect","type":"enchant"},{"id":"enchant.stat_732320584","text":"Lacerate deals # to # added Physical Damage against Bleeding Enemies","type":"enchant"},{"id":"enchant.stat_4071708873","text":"#% increased Riposte Damage","type":"enchant"},{"id":"enchant.stat_388617051","text":"#% increased Charges used","type":"enchant"},{"id":"enchant.stat_4151555126","text":"#% increased Incinerate Damage for each stage","type":"enchant"},{"id":"enchant.stat_250961191","text":"Pride has #% reduced Mana Reservation","type":"enchant"},{"id":"enchant.stat_1405738574","text":"Ensnaring Arrow has #% increased Debuff Effect","type":"enchant"},{"id":"enchant.stat_1783696476","text":"#% increased Frostbite Duration","type":"enchant"},{"id":"enchant.stat_1134560807","text":"Intimidating Cry has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_709541481","text":"Penance Brand has #% increased Cast Speed","type":"enchant"},{"id":"enchant.stat_609916976","text":"Sweep has a #% chance to grant an Endurance Charge on Hit","type":"enchant"},{"id":"enchant.stat_40032620","text":"Sunder has #% increased delay between Areas in the Wave","type":"enchant"},{"id":"enchant.delirium_reward_metamorphosis","text":"Delirium Reward Type: Blight Items (\u00d7#)","type":"enchant"},{"id":"enchant.stat_3686368306","text":"Siphoning Trap deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2207890291","text":"Lightning Spire Trap has #% increased Skill Effect Duration","type":"enchant"},{"id":"enchant.stat_2774873427","text":"Frostbolt has #% chance to Freeze","type":"enchant"},{"id":"enchant.stat_1350243490","text":"Spells Triggered by Arcanist Brand Unnerve enemies on Hit for 4 seconds","type":"enchant"},{"id":"enchant.stat_1152784934","text":"Summoned Holy Relics deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_1554597333","text":"Blink Arrow and Blink Arrow Clones have #% increased Attack Speed","type":"enchant"},{"id":"enchant.stat_1389457945","text":"Map has an additional random Modifier from Zana's Crafting Bench","type":"enchant"},{"id":"enchant.stat_3698446010","text":"Ice Trap Damage Penetrates #% Cold Resistance","type":"enchant"},{"id":"enchant.stat_3719728947","text":"#% increased Smoke Mine Duration","type":"enchant"},{"id":"enchant.stat_1265055278","text":"#% increased Charged Dash Damage","type":"enchant"},{"id":"enchant.stat_3946561324","text":"Smite has a #% chance for lightning to strike another target","type":"enchant"},{"id":"enchant.stat_2257652056","text":"Scourge Arrow has #% chance to Poison per Stage","type":"enchant"},{"id":"enchant.stat_2259906777","text":"#% increased Shockwave Totem Cast Speed","type":"enchant"},{"id":"enchant.stat_1020575720","text":"Earthshatter creates # fissures","type":"enchant"},{"id":"enchant.stat_611022108","text":"Shattering Steel grants Fortify on Hitting an Enemy at Close Range","type":"enchant"},{"id":"enchant.stat_2276547155","text":"Blade Blast deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_241781316","text":"#% increased Enduring Cry Buff Effect","type":"enchant"},{"id":"enchant.stat_4166695945","text":"Siphoning Trap has #% increased Skill Effect Duration","type":"enchant"},{"id":"enchant.stat_2530563277","text":"Siphoning Trap has #% increased Chill Effect","type":"enchant"},{"id":"enchant.stat_3606492882","text":"Arcane Cloak grants Life Regeneration equal to #% of Mana Spent per Second","type":"enchant"},{"id":"enchant.stat_1437957544","text":"# to Maximum Charges","type":"enchant"},{"id":"enchant.stat_2563177940","text":"Venom Gyre has a #% chance to keep caught Projectiles fired by using Whirling Blades","type":"enchant"},{"id":"enchant.stat_2537202749","text":"Static Strike has # maximum Beam Targets","type":"enchant"},{"id":"enchant.stat_27499777","text":"Your Chilling Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_959534996","text":"Shrapnel Ballista fires an additional Arrow","type":"enchant"},{"id":"enchant.stat_2295263113","text":"Vortex has #% increased Area of Effect when Cast on Frostbolt","type":"enchant"},{"id":"enchant.stat_3816022821","text":"#% increased Creeping Frost Area of Effect","type":"enchant"},{"id":"enchant.stat_525771896","text":"Flamethrower Trap has #% increased Skill Effect Duration","type":"enchant"},{"id":"enchant.stat_3240183538","text":"Area contains an extra Strongbox","type":"enchant"},{"id":"enchant.stat_2013536039","text":"Minions summoned by Your Sentinel Towers have #% increased Damage","type":"enchant"},{"id":"enchant.stat_3139672534","text":"Wave of Conviction's Exposure applies #% Elemental Resistance","type":"enchant"},{"id":"enchant.stat_599289531","text":"Bladestorm deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_452753731","text":"Grants # to Dexterity per 2% Quality","type":"enchant"},{"id":"enchant.stat_1389191919","text":"Seismic Trap releases an additional Wave","type":"enchant"},{"id":"enchant.stat_2338484156","text":"#% to Lightning Golem Elemental Resistances","type":"enchant"},{"id":"enchant.stat_2273926362","text":"Withering Step inflicts # additional Withered Debuffs","type":"enchant"},{"id":"enchant.stat_1686675991","text":"#% increased Decoy Totem Area of Effect","type":"enchant"},{"id":"enchant.stat_1934891174","text":"#% increased Abyssal Cry Duration","type":"enchant"},{"id":"enchant.stat_1088946611","text":"Intimidating Cry has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_1993913925","text":"Caustic Arrow has #% chance to inflict Withered on Hit for # second base Duration","type":"enchant"},{"id":"enchant.delirium_reward_harbinger","text":"Delirium Reward Type: Harbinger Items (\u00d7#)","type":"enchant"},{"id":"enchant.stat_354556858","text":"#% increased Galvanic Arrow Area of Effect","type":"enchant"},{"id":"enchant.stat_3893420071","text":"Normal Maps contain # additional packs of Normal Monsters","type":"enchant"},{"id":"enchant.stat_918308703","text":"Bear Trap has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_4199670252","text":"#% increased Rallying Cry Duration","type":"enchant"},{"id":"enchant.stat_3469056056","text":"Earthshatter has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_2843908086","text":"#% increased Effect of Curses applied by Bane","type":"enchant"},{"id":"enchant.stat_1519019245","text":"Grants # to Strength per 2% Quality","type":"enchant"},{"id":"enchant.stat_2962501808","text":"Flamethrower Trap has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_4224588066","text":"Bane has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_2938856716","text":"#% increased Cremation Cast Speed","type":"enchant"},{"id":"enchant.stat_2080441723","text":"Rallying Cry Exerts # additional Attack","type":"enchant"},{"id":"enchant.stat_2977067558","text":"Enduring Cry grants # additional Endurance Charge","type":"enchant"},{"id":"enchant.stat_1570047087","text":"Lightning Spire Trap has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_1468737867","text":"Area contains an extra Shrine","type":"enchant"},{"id":"enchant.stat_2748574832","text":"Grants # to Intelligence per 2% Quality","type":"enchant"},{"id":"enchant.stat_3040033697","text":"Bladefall has an additional Volley","type":"enchant"},{"id":"enchant.stat_3026568825","text":"Summoned Holy Relics have #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_3269147016","text":"Chain Hook has +# Radius per 12 Rage","type":"enchant"},{"id":"enchant.stat_465162370","text":"Skills Supported by Spellslinger have #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_1867024035","text":"Area contains # additional pack of Corrupted Vaal Monsters","type":"enchant"},{"id":"enchant.stat_535507671","text":"Lightning Spire Trap has #% increased Cast Speed","type":"enchant"},{"id":"enchant.stat_1694915226","text":"Explosive Trap has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_1104507216","text":"Lightning Spire Trap strikes an additional area","type":"enchant"},{"id":"enchant.stat_2614099660","text":"Fire Nova Mine repeats an additional # times","type":"enchant"},{"id":"enchant.stat_691673624","text":"Immortal Call has #% increased Buff Duration per Endurance Charge removed","type":"enchant"},{"id":"enchant.stat_2679945072","text":"#% increased Desecrate Duration","type":"enchant"},{"id":"enchant.stat_2005440071","text":"Pyroclast Mine has #% increased Throwing Speed","type":"enchant"},{"id":"enchant.stat_1769497634","text":"# to maximum number of Bladestorms","type":"enchant"},{"id":"enchant.delirium_reward_divinationcards","text":"Delirium Reward Type: Divination Cards (\u00d7#)","type":"enchant"},{"id":"enchant.stat_355086768","text":"Seismic Cry has a minimum of # Power","type":"enchant"},{"id":"enchant.stat_3214665792","text":"Tectonic Slam has #% chance to create a Charged Slam","type":"enchant"},{"id":"enchant.stat_3976295500","text":"#% increased Icicle Mine Throwing Speed","type":"enchant"},{"id":"enchant.stat_1854137416","text":"Strongbox Monsters have #% increased Item Quantity","type":"enchant"},{"id":"enchant.stat_2889995769","text":"General's Cry has # to maximum number of Mirage Warriors","type":"enchant"},{"id":"enchant.stat_3618430531","text":"Seismic Trap has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_2600949388","text":"#% increased Ice Shot Duration","type":"enchant"},{"id":"enchant.stat_3346280197","text":"Your Imbuing Towers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_2306522833","text":"#% increased Monster Movement Speed","type":"enchant"},{"id":"enchant.stat_3207852985","text":"Players and Monsters take #% increased Cold Damage","type":"enchant"},{"id":"enchant.stat_2366645974","text":"Area contains # additional packs of Monsters that deal Fire Damage","type":"enchant"},{"id":"enchant.stat_3897451709","text":"Area contains an additional Legion Encounter","type":"enchant"},{"id":"enchant.stat_3187151138","text":"Area contains # (Master)","type":"enchant","option":{"options":[{"id":"2","text":"Einhar"},{"id":"3","text":"Alva"},{"id":"5","text":"Niko"},{"id":"6","text":"Jun"},{"id":"7","text":"Zana"}]}},{"id":"enchant.stat_3103053611","text":"#% increased Critical Strike Chance per 4% Quality","type":"enchant"},{"id":"enchant.stat_1175282728","text":"Seismic Trap deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2109921176","text":"Your Temporal Towers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_988554168","text":"Ancestral Cry has a minimum of # Power","type":"enchant"},{"id":"enchant.stat_2454791895","text":"Your Glacial Cage Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_3194736016","text":"Area contains # additional packs of Monsters that deal Cold Damage","type":"enchant"},{"id":"enchant.stat_2078691497","text":"#% increased Cost of Building and Upgrading Towers","type":"enchant"},{"id":"enchant.stat_242209782","text":"Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1.5 seconds","type":"enchant"},{"id":"enchant.stat_1572544406","text":"Your Arc Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_4162139595","text":"Flamethrower Trap deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2718657160","text":"Stormblast Mine has #% increased Aura Effect","type":"enchant"},{"id":"enchant.stat_281958409","text":"Withering Step has #% increased Elusive Effect","type":"enchant"},{"id":"enchant.stat_3094365680","text":"Area contains # additional packs of Poisonous Monsters","type":"enchant"},{"id":"enchant.stat_1139911029","text":"Your Chilling Towers have #% increased effect of Chill","type":"enchant"},{"id":"enchant.stat_1984484581","text":"Players and Monsters take #% increased Chaos Damage","type":"enchant"},{"id":"enchant.stat_2575601188","text":"#% increased Fire Nova Mine Damage","type":"enchant"},{"id":"enchant.stat_2882048906","text":"Your Shock Nova Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_2423221070","text":"#% increased Ice Spear Damage","type":"enchant"},{"id":"enchant.stat_1615912303","text":"Seismic Trap has #% increased Skill Effect Duration","type":"enchant"},{"id":"enchant.stat_1260718722","text":"#% chance for Blight Chests to drop an additional Reward","type":"enchant"},{"id":"enchant.stat_4118537428","text":"#% Sweep Knockback Chance","type":"enchant"},{"id":"enchant.stat_545950479","text":"Area contains # additional packs of Monsters that deal Lightning Damage","type":"enchant"},{"id":"enchant.stat_3059368202","text":"Area contains # additional packs of Monsters that Heal","type":"enchant"},{"id":"enchant.stat_2781179464","text":"Creeping Frost's Chilling Area has #% increased Movement Speed","type":"enchant"},{"id":"enchant.stat_3211417111","text":"#% increased Fire Nova Cast Speed","type":"enchant"},{"id":"enchant.stat_1508220097","text":"Unique Boss drops additional Currency Shards","type":"enchant"},{"id":"enchant.stat_397012377","text":"Unique Boss is accompanied by a mysterious Harbinger","type":"enchant"},{"id":"enchant.stat_1730614496","text":"#% increased Vortex Area of Effect","type":"enchant"},{"id":"enchant.stat_4225882962","text":"Combust has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_2432759583","text":"Pyroclast Mine has #% increased Throwing Speed","type":"enchant"},{"id":"enchant.stat_2180286756","text":"Area can contain Breaches","type":"enchant"},{"id":"enchant.stat_3728052911","text":"Area contains # additional packs of Monsters that deal Chaos Damage","type":"enchant"},{"id":"enchant.stat_740609357","text":"Desecrate has #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_1243906675","text":"#% reduced Ball Lightning Projectile Speed","type":"enchant"},{"id":"enchant.stat_2187439577","text":"Players and Monsters take #% increased Fire Damage","type":"enchant"},{"id":"enchant.stat_1953644681","text":"#% chance for Immortal Call to increase Duration without removing Endurance Charges","type":"enchant"},{"id":"enchant.stat_2933995134","text":"Freeze Mine causes Enemies to lose an additional #% Cold Resistance while Frozen","type":"enchant"},{"id":"enchant.stat_3459808765","text":"Allocates # (Additional)","type":"enchant","option":{"options":[{"id":32345,"text":"Alacrity"},{"id":15027,"text":"Beef"},{"id":56029,"text":"Agility"},{"id":36874,"text":"Wisdom of the Glade"},{"id":32245,"text":"Expertise"},{"id":60180,"text":"Thief's Craft"},{"id":52714,"text":"Prowess"},{"id":34601,"text":"Proficiency"},{"id":50197,"text":"Ancestral Knowledge"},{"id":5456,"text":"Might"},{"id":30160,"text":"Fending"},{"id":18025,"text":"Hard Knocks"},{"id":10153,"text":"Physique"},{"id":23690,"text":"Arcane Vision"},{"id":10542,"text":"Diamond Skin"},{"id":37078,"text":"Path of the Savant"},{"id":12702,"text":"Path of the Warrior"},{"id":19506,"text":"Path of the Hunter"},{"id":38516,"text":"Righteous Decree"},{"id":63150,"text":"Ironwood"},{"id":16243,"text":"Fusillade"},{"id":2715,"text":"Quickstep"},{"id":52230,"text":"Weathered Hunter"},{"id":21435,"text":"Cloth and Chain"},{"id":31033,"text":"Solidity"},{"id":65224,"text":"Aspect of the Eagle"},{"id":24256,"text":"Dynamo"},{"id":21973,"text":"Decay Ward"},{"id":45067,"text":"Thrill Seeker"},{"id":38246,"text":"Aspect of the Panther"},{"id":1382,"text":"Spirit Void"},{"id":529,"text":"Poisonous Fangs"},{"id":46965,"text":"Saboteur"},{"id":47484,"text":"Depth Perception"},{"id":42686,"text":"Elemental Focus"},{"id":27929,"text":"Deep Wisdom"},{"id":27301,"text":"Martial Experience"},{"id":60002,"text":"Fury Bolts"},{"id":5289,"text":"Battle Rouse"},{"id":27190,"text":"Hasty Reconstruction"},{"id":20832,"text":"Sanctuary"},{"id":7440,"text":"Combat Control"},{"id":8135,"text":"Practical Application"},{"id":46408,"text":"Fangs of the Viper"},{"id":10016,"text":"Executioner"},{"id":42804,"text":"Mind Drinker"},{"id":50690,"text":"Exposure Tolerance"},{"id":15344,"text":"Freedom of Movement"},{"id":10835,"text":"Dreamer"},{"id":25970,"text":"Risk Awareness"},{"id":44788,"text":"Aligned Spirits"},{"id":2550,"text":"Arsonist"},{"id":7085,"text":"Weapon Artistry"},{"id":2959,"text":"Unpredictable Offensive"},{"id":18174,"text":"Mystic Bulwark"},{"id":53757,"text":"Shamanistic Fury"},{"id":24362,"text":"Deep Thoughts"},{"id":10115,"text":"Prodigal Perfection"},{"id":19144,"text":"Sentinel"},{"id":42720,"text":"Heavy Draw"},{"id":54791,"text":"Claws of the Magpie"},{"id":60031,"text":"Harvester of Foes"},{"id":26023,"text":"Splitting Strikes"},{"id":17608,"text":"Silent Steps"},{"id":29861,"text":"Explosive Runes"},{"id":36859,"text":"Steelwood Stance"},{"id":44102,"text":"Efficient Explosives"},{"id":63933,"text":"Totemic Zeal"},{"id":40645,"text":"Bone Breaker"},{"id":11784,"text":"Gemini"},{"id":59556,"text":"Expeditious Munitions"},{"id":33082,"text":"Razor's Edge"},{"id":56359,"text":"Red Storm"},{"id":59866,"text":"Honed Edge"},{"id":35436,"text":"Kinetic Impacts"},{"id":41476,"text":"Elder Power"},{"id":45608,"text":"Successive Detonations"},{"id":33582,"text":"Forceful Skewering"},{"id":23038,"text":"Slaughter"},{"id":60619,"text":"Galvanic Hammer"},{"id":5430,"text":"Magmatic Strikes"},{"id":16236,"text":"Toxic Strikes"},{"id":39657,"text":"Pain Forger"},{"id":36915,"text":"Sacrifice"},{"id":51212,"text":"Entropy"},{"id":61982,"text":"Grave Intentions"},{"id":6233,"text":"Blast Waves"},{"id":51881,"text":"Master Fletcher"},{"id":65093,"text":"Bladedancer"},{"id":37504,"text":"Claws of the Pride"},{"id":36736,"text":"Burning Brutality"},{"id":64077,"text":"Ophidian Aim"},{"id":63635,"text":"Primal Manifestation"},{"id":5126,"text":"Spinecruncher"},{"id":51559,"text":"Smashing Strikes"},{"id":63921,"text":"Utmost Swiftness"},{"id":47743,"text":"Farsight"},{"id":42917,"text":"Whirling Barrier"},{"id":59605,"text":"Unstable Munitions"},{"id":46471,"text":"Shocking Strikes"},{"id":1405,"text":"From the Shadows"},{"id":26096,"text":"Hatchet Master"},{"id":55380,"text":"Clever Construction"},{"id":49772,"text":"Utmost Might"},{"id":22972,"text":"Wandslinger"},{"id":49969,"text":"Bludgeon Blitz"},{"id":17171,"text":"Flash Freeze"},{"id":36490,"text":"Flaying"},{"id":35685,"text":"Fearsome Force"},{"id":24858,"text":"Harpooner"},{"id":15046,"text":"Redemption"},{"id":55114,"text":"Utmost Intellect"},{"id":7918,"text":"Enigmatic Defence"},{"id":14606,"text":"Butchery"},{"id":33435,"text":"Holy Dominion"},{"id":26557,"text":"Static Blows"},{"id":14001,"text":"Escalation"},{"id":9567,"text":"Light Eater"},{"id":63033,"text":"Bannerman"},{"id":63976,"text":"Shaper"},{"id":53493,"text":"Annihilation"},{"id":45317,"text":"Ash, Frost and Storm"},{"id":44207,"text":"Testudo"},{"id":30225,"text":"Lightning Walker"},{"id":9788,"text":"Nimbleness"},{"id":31508,"text":"Aspect of the Lynx"},{"id":53042,"text":"Exceptional Performance"},{"id":4940,"text":"Cleaving"},{"id":42795,"text":"Arcane Focus"},{"id":21413,"text":"Combat Stamina"},{"id":33903,"text":"Will of Blades"},{"id":44347,"text":"Divine Fury"},{"id":65502,"text":"Heartseeker"},{"id":6770,"text":"Arcane Guarding"},{"id":44103,"text":"Reflexes"},{"id":13164,"text":"Divine Judgement"},{"id":35894,"text":"Trickery"},{"id":49538,"text":"Defiance"},{"id":33545,"text":"Harrier"},{"id":6,"text":"Twin Terrors"},{"id":65273,"text":"Enigmatic Reach"},{"id":42649,"text":"Snowforged"},{"id":19730,"text":"Versatile Stance"},{"id":15085,"text":"Ambidexterity"},{"id":24383,"text":"Warrior's Blood"},{"id":6967,"text":"Command of the Elements"},{"id":37403,"text":"Intensity"},{"id":54694,"text":"Light of Divinity"},{"id":49621,"text":"Acuity"},{"id":54142,"text":"Finesse"},{"id":9432,"text":"Mental Rapidity"},{"id":26960,"text":"Forethought"},{"id":14813,"text":"Revelry"},{"id":861,"text":"Aggressive Bastion"},{"id":26866,"text":"Sanctity"},{"id":65053,"text":"Essence Sap"},{"id":25439,"text":"Undertaker"},{"id":49416,"text":"Adamant"},{"id":64355,"text":"Brand Equity"},{"id":24050,"text":"Coldhearted Calculation"},{"id":11420,"text":"Arcanist's Dominion"},{"id":2225,"text":"Eagle Eye"},{"id":32455,"text":"Storm Weaver"},{"id":12809,"text":"Berserking"},{"id":1006,"text":"Potency of Will"},{"id":5823,"text":"Coordination"},{"id":18703,"text":"Graceful Assault"},{"id":20835,"text":"Brinkmanship"},{"id":3309,"text":"Fleetfoot"},{"id":15842,"text":"Precise Interception"},{"id":15711,"text":"Blast Radius"},{"id":34666,"text":"Destroyer"},{"id":14665,"text":"Divine Wrath"},{"id":30471,"text":"True Strike"},{"id":49318,"text":"Wrecking Ball"},{"id":32059,"text":"Titanic Impacts"},{"id":65308,"text":"Deflection"},{"id":12795,"text":"Versatility"},{"id":33287,"text":"Juggernaut"},{"id":25456,"text":"Dervish"},{"id":35663,"text":"Strong Arm"},{"id":60737,"text":"Sleight of Hand"},{"id":45329,"text":"Trick Shot"},{"id":50858,"text":"Admonisher"},{"id":7069,"text":"Split Shot"},{"id":544,"text":"Surveillance"},{"id":61308,"text":"Amplify"},{"id":570,"text":"Dazzling Strikes"},{"id":24324,"text":"Explosive Impact"},{"id":61039,"text":"Panopticon"},{"id":34661,"text":"Fire Walker"},{"id":54268,"text":"Blade Barrier"},{"id":44824,"text":"Dark Arts"},{"id":18865,"text":"Melding"},{"id":49445,"text":"Deep Breaths"},{"id":47306,"text":"Throatseeker"},{"id":44955,"text":"Frost Walker"},{"id":13922,"text":"Steadfast"},{"id":39743,"text":"Mysticism"},{"id":50338,"text":"Ballistic Mastery"},{"id":58032,"text":"Serpentine Spellslinger"},{"id":53802,"text":"Essence Extraction"},{"id":49254,"text":"Retribution"},{"id":8001,"text":"Lethal Assault"},{"id":32176,"text":"Soul Thief"},{"id":27137,"text":"Sanctum of Thought"},{"id":57900,"text":"Command of Steel"},{"id":6237,"text":"Precision"},{"id":49379,"text":"Hired Killer"},{"id":12878,"text":"Retaliation"},{"id":19103,"text":"Righteous Army"},{"id":8458,"text":"Longshot"},{"id":24721,"text":"Ribcage Crusher"},{"id":9015,"text":"Dire Torment"},{"id":27308,"text":"Gravepact"},{"id":31513,"text":"Adjacent Animosity"},{"id":6615,"text":"Arcing Blows"},{"id":64882,"text":"Disciple of the Unyielding"},{"id":52031,"text":"Disintegration"},{"id":25367,"text":"Blade Master"},{"id":57199,"text":"Fangs of Frost"},{"id":39761,"text":"Counterweight"},{"id":21602,"text":"Destructive Apparatus"},{"id":9535,"text":"Hunter's Gambit"},{"id":28503,"text":"Soul Raker"},{"id":59766,"text":"Dirty Techniques"},{"id":8920,"text":"Backstabbing"},{"id":63207,"text":"Tempest Blast"},{"id":43385,"text":"Winter Spirit"},{"id":21297,"text":"High Explosives"},{"id":29049,"text":"Holy Fire"},{"id":54713,"text":"Force Shaper"},{"id":44562,"text":"Shaman's Dominion"},{"id":18707,"text":"Method to the Madness"},{"id":57839,"text":"Blade of Cunning"},{"id":15437,"text":"Gladiatoral Combat"},{"id":38849,"text":"Searing Heat"},{"id":33777,"text":"Devastating Devices"},{"id":4481,"text":"Forces of Nature"},{"id":10511,"text":"Singular Focus"},{"id":26620,"text":"Corruption"},{"id":16703,"text":"Skull Cracking"},{"id":32227,"text":"Adder's Touch"},{"id":31359,"text":"Fatal Toxins"},{"id":63727,"text":"Gladiator's Perseverance"},{"id":41119,"text":"Lethality"},{"id":52090,"text":"Feller of Foes"},{"id":62094,"text":"Lucidity"},{"id":55772,"text":"Blacksmith's Clout"},{"id":49459,"text":"King of the Hill"},{"id":26294,"text":"Bloodletting"},{"id":7136,"text":"Master Sapper"},{"id":63251,"text":"Charging Offensive"},{"id":22702,"text":"Serpent Stance"},{"id":36281,"text":"Primeval Force"},{"id":19897,"text":"Death Attunement"},{"id":48823,"text":"Deadly Draw"},{"id":15614,"text":"Claws of the Hawk"},{"id":61689,"text":"Blast Cascade"},{"id":9194,"text":"Swift Skewering"},{"id":27611,"text":"Lord of the Dead"},{"id":64395,"text":"Blunt Trauma"},{"id":21389,"text":"Runesmith"},{"id":39986,"text":"Hex Master"},{"id":9261,"text":"Disciple of the Forbidden"},{"id":36687,"text":"Avatar of the Hunt"},{"id":63944,"text":"Prism Weave"},{"id":25409,"text":"Indomitable Army"},{"id":1568,"text":"Fatal Blade"},{"id":30439,"text":"Lava Lash"},{"id":53013,"text":"Atrophy"},{"id":29381,"text":"Ravenous Horde"},{"id":43689,"text":"Spiritual Command"},{"id":7263,"text":"Swift Venoms"},{"id":38922,"text":"Stun Mastery"},{"id":56094,"text":"One with the River"},{"id":7688,"text":"Enduring Bond"},{"id":59151,"text":"Brutal Blade"},{"id":56648,"text":"Claws of the Falcon"},{"id":4207,"text":"Window of Opportunity"},{"id":9864,"text":"Growth and Decay"},{"id":58921,"text":"Disciple of the Slaughter"},{"id":56276,"text":"Nightstalker"},{"id":9055,"text":"Volatile Mines"},{"id":48298,"text":"Insightfulness"},{"id":21634,"text":"Arcane Chemistry"},{"id":53759,"text":"Cleansed Thoughts"},{"id":12143,"text":"Influence"},{"id":24067,"text":"No Witnesses"},{"id":56716,"text":"Heart of Thunder"},{"id":36949,"text":"Devotion"},{"id":58218,"text":"Purity of Flesh"},{"id":61981,"text":"Doom Cast"},{"id":21330,"text":"Quick Recovery"},{"id":40743,"text":"Crystal Skin"},{"id":48438,"text":"Bravery"},{"id":11924,"text":"Breath of Flames"},{"id":48614,"text":"Fervour"},{"id":40849,"text":"Persistence"},{"id":42041,"text":"Profane Chemistry"},{"id":60501,"text":"Heart of Flame"},{"id":18769,"text":"Written in Blood"},{"id":41137,"text":"Aqueous Accelerant"},{"id":21958,"text":"Cruel Preparation"},{"id":58831,"text":"Disemboweling"},{"id":51748,"text":"Cursed Concoction"},{"id":52157,"text":"Soul Siphon"},{"id":46842,"text":"Arcane Potency"},{"id":11645,"text":"Breath of Lightning"},{"id":4833,"text":"Vigour"},{"id":38706,"text":"Way of the Warrior"},{"id":22356,"text":"Hematophagy"},{"id":51440,"text":"Druidic Rite"},{"id":27203,"text":"Heart and Soul"},{"id":6289,"text":"Bloodless"},{"id":58449,"text":"Born to Fight"},{"id":65210,"text":"Heart of Oak"},{"id":33718,"text":"Champion of the Cause"},{"id":24133,"text":"Survivalist"},{"id":34173,"text":"Overcharge"},{"id":47471,"text":"Overcharged"},{"id":34009,"text":"Master of the Arena"},{"id":62596,"text":"Mystic Talents"},{"id":58198,"text":"Fingers of Frost"},{"id":30693,"text":"Divine Fervour"},{"id":19858,"text":"Herbalism"},{"id":25058,"text":"Blood Siphon"},{"id":7555,"text":"Crackling Speed"},{"id":65097,"text":"Leadership"},{"id":53573,"text":"Arcane Expanse"},{"id":11730,"text":"Endurance"},{"id":35958,"text":"Faith and Steel"},{"id":34973,"text":"Measured Fury"},{"id":41307,"text":"Deadly Inclinations"},{"id":56207,"text":"Hardened Scars"},{"id":35233,"text":"Discord Artisan"},{"id":1340,"text":"Rampart"},{"id":54629,"text":"Inexorable"},{"id":37326,"text":"Stamina"},{"id":51108,"text":"Arcane Capacitor"},{"id":65108,"text":"Tireless"},{"id":46904,"text":"Arcane Swiftness"},{"id":44988,"text":"Stabbing Thirst"},{"id":23066,"text":"Savagery"},{"id":54776,"text":"Mana Flows"},{"id":25178,"text":"Primal Spirit"},{"id":48807,"text":"Art of the Gladiator"},{"id":20528,"text":"Instability"},{"id":27163,"text":"Arcane Will"},{"id":15290,"text":"Watchtowers"},{"id":3452,"text":"Foresight"},{"id":21460,"text":"Breath of Rime"},{"id":63422,"text":"Lust for Carnage"},{"id":42443,"text":"Frenetic"},{"id":47065,"text":"Master of Force"},{"id":21228,"text":"Piercing Shots"},{"id":19069,"text":"Thick Skin"},{"id":37647,"text":"Dismembering"},{"id":25411,"text":"Infused"},{"id":8833,"text":"Heart of Ice"},{"id":33725,"text":"Swagger"},{"id":27788,"text":"Blood Drinker"},{"id":39530,"text":"Vitality Void"},{"id":31257,"text":"Natural Authority"},{"id":15852,"text":"Ethereal Feast"},{"id":41989,"text":"Resourcefulness"},{"id":62577,"text":"Essence Surge"},{"id":34506,"text":"Golem Commander"},{"id":41472,"text":"Discipline and Training"},{"id":28754,"text":"Assassination"},{"id":61198,"text":"Heart of the Warrior"},{"id":48698,"text":"Void Barrier"},{"id":15400,"text":"Skittering Runes"},{"id":53118,"text":"Barbarism"},{"id":42009,"text":"Soul of Steel"},{"id":48556,"text":"Thunderous Salvos"},{"id":57006,"text":"Vengeant Cascade"},{"id":11820,"text":"Anointed Flesh"},{"id":50029,"text":"Unnatural Calm"},{"id":1325,"text":"Golem's Blood"},{"id":16246,"text":"Tranquility"},{"id":53114,"text":"Revenge of the Hunted"},{"id":64217,"text":"Aspect of Stone"},{"id":52282,"text":"Tenacity"},{"id":32932,"text":"Sovereignty"},{"id":27119,"text":"Tribal Fury"},{"id":5624,"text":"Crusader"},{"id":4177,"text":"Spiritual Aid"},{"id":6799,"text":"Charisma"},{"id":55485,"text":"Constitution"},{"id":22535,"text":"Whispers of Doom"}]}},{"id":"enchant.stat_906446422","text":"Harbingers drop additional Currency Shards","type":"enchant"},{"id":"enchant.stat_1330754855","text":"Towers deal #% more Damage","type":"enchant"},{"id":"enchant.stat_453789911","text":"Players have #% increased Movement Speed for each Poison on them","type":"enchant"},{"id":"enchant.delirium_reward_armour","text":"Delirium Reward Type: Armour (\u00d7#)","type":"enchant"},{"id":"enchant.stat_4048897123","text":"Your Scout Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_815390778","text":"#% increased Molten Shell Damage","type":"enchant"},{"id":"enchant.stat_2097223452","text":"Your Empowering Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_1274634881","text":"Area contains an extra Resonating Shrine","type":"enchant"},{"id":"enchant.stat_1270423035","text":"Your Meteor Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_2035168499","text":"#% increased Freeze Mine Area of Effect","type":"enchant"},{"id":"enchant.stat_3687716368","text":"Your Flamethrower Towers deal full damage to Fire Enemies","type":"enchant"},{"id":"enchant.stat_1960580674","text":"Your Lightning Storm Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_4040760803","text":"Summoned Sentinels of Dominance deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_2550660356","text":"Your Summoning Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_2931005730","text":"Flamethrower Trap has #% increased Cast Speed","type":"enchant"},{"id":"enchant.stat_2661979205","text":"#% increased Dominating Blow Damage","type":"enchant"},{"id":"enchant.stat_1008350423","text":"Your Fireball Towers fire an additional Projectile","type":"enchant"},{"id":"enchant.stat_1520798835","text":"Players deal #% increased Damage for each Poison on them","type":"enchant"},{"id":"enchant.stat_2681419531","text":"Strongboxes in Area are Corrupted","type":"enchant"},{"id":"enchant.stat_249139784","text":"Area contains # additional packs of Monsters that Convert when Killed","type":"enchant"},{"id":"enchant.stat_2482018205","text":"Kinetic Bolt has #% increased Projectile Speed","type":"enchant"},{"id":"enchant.stat_1035680542","text":"Your Glacial Cage Towers have #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_1406617410","text":"#% increased Area of Effect while you have Arcane Surge","type":"enchant"},{"id":"enchant.stat_1797913614","text":"Your Freezebolt Towers fire an additional Projectile","type":"enchant"},{"id":"enchant.stat_495713612","text":"#% increased Duration of Shrine Effects on Players","type":"enchant"},{"id":"enchant.delirium_reward_weapon","text":"Delirium Reward Type: Weapons (\u00d7#)","type":"enchant"},{"id":"enchant.stat_3738339949","text":"Burning Arrow has #% increased Debuff Effect","type":"enchant"},{"id":"enchant.delirium_reward_fossils","text":"Delirium Reward Type: Fossils (\u00d7#)","type":"enchant"},{"id":"enchant.stat_2541263647","text":"Your Freezebolt Tower deal full damage to Cold Enemies","type":"enchant"},{"id":"enchant.delirium_reward_uniques","text":"Delirium Reward Type: Unique Items (\u00d7#)","type":"enchant"},{"id":"enchant.stat_3704937638","text":"Your Meteor Towers create Burning Ground for # seconds on Hit","type":"enchant"},{"id":"enchant.stat_1582085030","text":"Your Seismic Towers deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_665179774","text":"Your Flamethrower Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_804187877","text":"Unique Monsters drop Corrupted Items","type":"enchant"},{"id":"enchant.stat_1256719186","text":"#% increased Duration","type":"enchant"},{"id":"enchant.stat_2448920197","text":"#% increased effect","type":"enchant"},{"id":"enchant.stat_75100665","text":"Found Items drop Identified in Identified Maps","type":"enchant"},{"id":"enchant.stat_98212089","text":"#% increased Quantity of Items found in Unidentified Maps","type":"enchant"},{"id":"enchant.stat_1032614900","text":"Enemies Withered by you have #% to all Resistances","type":"enchant"},{"id":"enchant.stat_2400448724","text":"Players and Monsters take #% increased Lightning Damage","type":"enchant"},{"id":"enchant.stat_2020183023","text":"#% chance to create a Charged Slam","type":"enchant"},{"id":"enchant.stat_3169671355","text":"+# to Evasion Rating while you have Phasing","type":"enchant"},{"id":"enchant.stat_4216282855","text":"Enemies Blinded by you have #% increased Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_1714706956","text":"#% increased Magic Pack Size","type":"enchant"},{"id":"enchant.delirium_reward_trinkets","text":"Delirium Reward Type: Jewellery (\u00d7#)","type":"enchant"},{"id":"enchant.stat_2673745094","text":"Siphoning Trap's beam to you grants #% reduced Damage taken for each other beam","type":"enchant"},{"id":"enchant.stat_1919892065","text":"Enemies Intimidated by you have #% increased duration of stuns against them","type":"enchant"},{"id":"enchant.stat_3522828354","text":"Strongboxes in Area are at least Magic Rarity","type":"enchant"},{"id":"enchant.stat_728267040","text":"Found Items have a #% chance to drop Corrupted in Area","type":"enchant"},{"id":"enchant.delirium_reward_breach","text":"Delirium Reward Type: Breach Items (\u00d7#)","type":"enchant"},{"id":"enchant.stat_573352991","text":"Your Stone Gaze Towers have #% increased Duration","type":"enchant"},{"id":"enchant.stat_2593021351","text":"#% increased Accuracy Rating while you have Onslaught","type":"enchant"},{"id":"enchant.stat_2787227226","text":"Grants #% to Fire Resistance per 2% Quality","type":"enchant"},{"id":"enchant.stat_3224819794","text":"Area contains an additional Breach","type":"enchant"},{"id":"enchant.stat_2747603858","text":"Unique Bosses of Corrupted Maps drop an additional Vaal Item","type":"enchant"},{"id":"enchant.stat_2056176052","text":"Artillery Ballista Projectiles fall in two perpendicular lines instead","type":"enchant"},{"id":"enchant.stat_726779274","text":"Your Smothering Towers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_3541635261","text":"Players and Monsters take #% increased Physical Damage","type":"enchant"},{"id":"enchant.stat_1665106429","text":"Grants #% to Cold Resistance per 2% Quality","type":"enchant"},{"id":"enchant.stat_3137138073","text":"Player's Life and Mana Recovery from Flasks are instant","type":"enchant"},{"id":"enchant.stat_3044601282","text":"Your Imbuing Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_1684204928","text":"Enemies Taunted by you deal #% more Area Damage","type":"enchant"},{"id":"enchant.stat_3747734818","text":"Area contains hunted traitors","type":"enchant"},{"id":"enchant.stat_2166020726","text":"Your Empowering Towers also grant #% increased Damage","type":"enchant"},{"id":"enchant.stat_3434272371","text":"Your Freezebolt Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_339673147","text":"Storm Burst has a 15% chance to create an additional Orb","type":"enchant"},{"id":"enchant.stat_504023787","text":"Area contains an additional Tormented Betrayer","type":"enchant"},{"id":"enchant.stat_153004860","text":"# to Armour while you have Fortify","type":"enchant"},{"id":"enchant.stat_3481854423","text":"Unique Boss is accompanied by Bodyguards","type":"enchant"},{"id":"enchant.stat_1992047981","text":"Area contains an extra Gloom Shrine","type":"enchant"},{"id":"enchant.stat_4089551985","text":"Your Temporal Towers have #% increased Range","type":"enchant"},{"id":"enchant.delirium_reward_perandus","text":"Delirium Reward Type: Perandus Items (\u00d7#)","type":"enchant"},{"id":"enchant.stat_1076056376","text":"Area has #% chance to contain Gifts of the Red Queen per Mortal Fragment used","type":"enchant"},{"id":"enchant.stat_3989543665","text":"Area contains # additional packs of Monsters that deal Physical Damage","type":"enchant"},{"id":"enchant.stat_335520087","text":"Earthshatter deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_3444629796","text":"#% increased Effect of Curses on you while on Consecrated Ground","type":"enchant"},{"id":"enchant.stat_1959522666","text":"All Towers in range of your Empowering Towers have #% chance to deal Double Damage","type":"enchant"},{"id":"enchant.delirium_reward_essences","text":"Delirium Reward Type: Essences (\u00d7#)","type":"enchant"},{"id":"enchant.stat_2649372092","text":"Area has #% chance to contain Gifts of the Sacrificed per Sacrifice Fragment used","type":"enchant"},{"id":"enchant.stat_3123392503","text":"Strongbox Monsters are Enraged","type":"enchant"},{"id":"enchant.stat_1357120250","text":"Your Chilling Towers freeze enemies for # seconds while they are affected by chilling beams","type":"enchant"},{"id":"enchant.delirium_reward_labyrinth","text":"Delirium Reward Type: Labyrinth Items (\u00d7#)","type":"enchant"},{"id":"enchant.stat_2410280305","text":"Your Fireball Towers have #% increased Cast Speed","type":"enchant"},{"id":"enchant.delirium_reward_prophecies","text":"Delirium Reward Type: Prophecy Items (\u00d7#)","type":"enchant"},{"id":"enchant.stat_634375806","text":"20% chance to Summon an additional Skeleton Warrior with Summon Skeleton","type":"enchant"},{"id":"enchant.stat_117905700","text":"Your Fireball Towers have #% increased Range","type":"enchant"},{"id":"enchant.delirium_reward_abyss","text":"Delirium Reward Type: Abyss Items (\u00d7#)","type":"enchant"},{"id":"enchant.stat_884220218","text":"#% chance to Avoid interruption from Stuns while Casting Storm Burst","type":"enchant"},{"id":"enchant.stat_2745149002","text":"Enemies Maimed by you take #% increased Damage Over Time","type":"enchant"},{"id":"enchant.stat_2130041903","text":"#% increased Pack Size in Unidentified Maps","type":"enchant"},{"id":"enchant.stat_4019701925","text":"Area contains # additional Clusters of Mysterious Barrels","type":"enchant"},{"id":"enchant.stat_865263728","text":"#% increased Rallying Cry Buff Effect","type":"enchant"},{"id":"enchant.stat_1994562755","text":"Area contains Metamorph Monsters","type":"enchant"},{"id":"enchant.stat_57434274","text":"#% increased Experience gain (Maps)","type":"enchant"},{"id":"enchant.stat_3384161880","text":"Enemies inside Glacial Cage take #% increased Damage","type":"enchant"},{"id":"enchant.stat_1207515735","text":"Area contains # additional Clusters of Mysterious Barrels","type":"enchant"},{"id":"enchant.stat_3564826949","text":"Areas can contain Abysses","type":"enchant"},{"id":"enchant.stat_2662268382","text":"#% chance to Avoid Elemental Ailments while you have Elusive","type":"enchant"},{"id":"enchant.stat_4059221381","text":"Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1 second","type":"enchant"},{"id":"enchant.stat_639766324","text":"Your Imbuing Towers also grant #% increased Damage","type":"enchant"},{"id":"enchant.delirium_reward_fragments","text":"Delirium Reward Type: Fragments (\u00d7#)","type":"enchant"},{"id":"enchant.stat_4173465567","text":"Your Arc Towers repeats # additional Times","type":"enchant"},{"id":"enchant.stat_3003096493","text":"Delirium Reward Type: #","type":"enchant"},{"id":"enchant.stat_1480568810","text":"The First 3 Possessed Monsters have a #% chance to drop an additional Gilded Scarab","type":"enchant"},{"id":"enchant.stat_3798342608","text":"Area contains # additional Clusters of Mysterious Barrels","type":"enchant"},{"id":"enchant.stat_977063976","text":"Players' Vaal Skills do not apply Soul Gain Prevention","type":"enchant"},{"id":"enchant.stat_3340686967","text":"The First 3 Possessed Monsters have a #% chance to drop an additional Map","type":"enchant"},{"id":"enchant.delirium_reward_maps","text":"Delirium Reward Type: Map Items (\u00d7#)","type":"enchant"},{"id":"enchant.stat_1277406505","text":"Your Imbuing Towers also grant Onslaught","type":"enchant"},{"id":"enchant.stat_2685482716","text":"Your Fireball Towers Projectiles fire in a circle","type":"enchant"},{"id":"enchant.stat_1486948114","text":"Penance Brand has #% increased Area of Effect","type":"enchant"},{"id":"enchant.stat_889454763","text":"Your Chilling Towers have #% increased Duration","type":"enchant"},{"id":"enchant.stat_3416709884","text":"Players gain an additional Vaal Soul on Kill","type":"enchant"},{"id":"enchant.stat_696413077","text":"An additional Map drops on Completing Area","type":"enchant"},{"id":"enchant.stat_1070816711","text":"Area contains an additional Abyss","type":"enchant"},{"id":"enchant.delirium_reward_gems","text":"Delirium Reward Type: Gems (\u00d7#)","type":"enchant"},{"id":"enchant.stat_3305072079","text":"Recover #% of Life when you Kill an Enemy while you have Rage","type":"enchant"},{"id":"enchant.stat_945725535","text":"#% increased Rallying Cry Buff Effect","type":"enchant"},{"id":"enchant.stat_2911217910","text":"Your Stone Gaze Cage Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_1261917923","text":"Your Summoning Towers summon # additional Minions","type":"enchant"},{"id":"enchant.stat_118036057","text":"Your Smothering Towers also grant #% increased Movement Speed","type":"enchant"},{"id":"enchant.stat_1843683045","text":"Your Sentinel Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_441374889","text":"Your Arc Towers have #% chance to inflict Sap","type":"enchant"},{"id":"enchant.stat_3802588863","text":"Your Freezebolt Towers have #% chance to inflict Brittle","type":"enchant"},{"id":"enchant.stat_1727791743","text":"Delirium Reward Type: #","type":"enchant"},{"id":"enchant.stat_1525452114","text":"Delirium Reward Type: #","type":"enchant"},{"id":"enchant.stat_3891165938","text":"Your Imbuing Towers also grant #% increased Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_3640837971","text":"Minions summoned by Your Sentinel Towers have #% increased Life","type":"enchant"},{"id":"enchant.stat_3045497140","text":"Items dropped by Corrupted Vaal Monsters have #% chance to be Corrupted","type":"enchant"},{"id":"enchant.delirium_reward_talismans","text":"Delirium Reward Type: Talismans (\u00d7#)","type":"enchant"},{"id":"enchant.stat_6032025","text":"Your Arc Towers have # additional chains","type":"enchant"},{"id":"enchant.stat_4039396512","text":"Your Flamethrower Towers have #% increased Cast Speed","type":"enchant"},{"id":"enchant.stat_1789548201","text":"Your Lightning Storm Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_2244550200","text":"Delirium Reward Type: #","type":"enchant"},{"id":"enchant.delirium_reward_blight","text":"Delirium Reward Type: Incubators (\u00d7#)","type":"enchant"},{"id":"enchant.stat_2693668441","text":"Delirium Reward Type: #","type":"enchant"},{"id":"enchant.stat_261996832","text":"Elemental Ailments inflicted on Enemies Exposed by you have #% increased Duration","type":"enchant"},{"id":"enchant.stat_3709502856","text":"Enemies Hindered by you have #% increased Life Regeneration rate","type":"enchant"},{"id":"enchant.stat_1248361993","text":"Your Flamethrower Towers have #% chance to inflict Scorch","type":"enchant"},{"id":"enchant.stat_2731937118","text":"Your Shock Nova Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_2764047332","text":"Your Smothering Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_373209496","text":"Area contains an additional Tormented Heretic","type":"enchant"},{"id":"enchant.stat_197351228","text":"Your Lightning Storm Towers have #% increased Impact Delay","type":"enchant"},{"id":"enchant.stat_2449293016","text":"Cages created by Your Glacial Cage Towers are #% larger","type":"enchant"},{"id":"enchant.stat_1669553893","text":"Area contains # additional Clusters of Mysterious Barrels","type":"enchant"},{"id":"enchant.stat_1378482149","text":"Minions summoned by Your Summoning Towers have #% increased Movement Speed","type":"enchant"},{"id":"enchant.stat_1282857477","text":"Minions summoned by Your Scout Towers have #% increased Life","type":"enchant"},{"id":"enchant.stat_2410117075","text":"Your Seismic Towers have #% increased Range","type":"enchant"},{"id":"enchant.stat_2538402671","text":"Your Temporal Towers also grant Stun Immunity","type":"enchant"},{"id":"enchant.stat_3564606017","text":"Your Empowering Towers also grant #% increased Cast Speed","type":"enchant"},{"id":"enchant.stat_3198887051","text":"Your Temporal Towers also grant you #% reduced action speed","type":"enchant"},{"id":"enchant.stat_3830917556","text":"Your Seismic Towers have #% increased length and range of Cascades","type":"enchant"},{"id":"enchant.stat_2242331554","text":"Your Shock Nova Towers deal full damage to Lightning Enemies","type":"enchant"},{"id":"enchant.stat_4006050359","text":"Volatile Dead Consumes up to 1 additional corpse","type":"enchant"},{"id":"enchant.stat_1317250154","text":"The First 3 Possessed Monsters have a #% chance to drop an additional Polished Scarab","type":"enchant"},{"id":"enchant.stat_1971866993","text":"Minions summoned by Your Sentinel Towers have #% increased Movement Speed","type":"enchant"},{"id":"enchant.stat_279246355","text":"Area is inhabited by an additional Invasion Boss","type":"enchant"},{"id":"enchant.stat_3651039490","text":"Minions summoned by Your Summoning Towers have #% increased Life","type":"enchant"},{"id":"enchant.stat_3006815533","text":"Your Seismic Towers have #% increased Stun Duration","type":"enchant"},{"id":"enchant.stat_4024383498","text":"Your Temporal Towers effects decay #% faster","type":"enchant"},{"id":"enchant.stat_906949000","text":"Your Smothering Towers also grant #% chance to be Frozen, Shocked and Ignited","type":"enchant"},{"id":"enchant.stat_471027242","text":"Rogue Exiles have #% increased Maximum Life","type":"enchant"},{"id":"enchant.stat_124877078","text":"Unique Boss deals #% increased Damage","type":"enchant"},{"id":"enchant.stat_2125952342","text":"Your Towers deal #% increased Damage per Type of Tower Active","type":"enchant"},{"id":"enchant.stat_4265846487","text":"This Map's Quality also applies to Rarity of Items found","type":"enchant"},{"id":"enchant.stat_4143730600","text":"Rogue Exiles drop an additional Jewel","type":"enchant"},{"id":"enchant.stat_2462686988","text":"Tectonic Slam has #% fissure branching chance","type":"enchant"},{"id":"enchant.stat_1080855680","text":"Rogue Exiles deal #% increased Damage","type":"enchant"},{"id":"enchant.stat_425606182","text":"Map has #% Quality","type":"enchant"},{"id":"enchant.stat_42482990","text":"Minions summoned by Your Scout Towers inflict Malediction on Hit","type":"enchant"},{"id":"enchant.stat_1619284089","text":"Your Stone Gaze Towers have #% increased Cooldown Recovery Rate","type":"enchant"},{"id":"enchant.stat_971955285","text":"Minions summoned by Your Scout Towers have #% increased Movement Speed","type":"enchant"},{"id":"enchant.stat_307092526","text":"Your Shock Nova Towers repeats # additional Times","type":"enchant"},{"id":"enchant.stat_1080470148","text":"Area contains # additional Clusters of Mysterious Barrels","type":"enchant"},{"id":"enchant.stat_21144785","text":"Your Shock Nova Towers have #% increased area of effect per repeat","type":"enchant"},{"id":"enchant.stat_3760667977","text":"Unique Boss drops # additional Unique Item","type":"enchant"},{"id":"enchant.stat_395808938","text":"Area contains an additional Essence","type":"enchant"},{"id":"enchant.stat_3550168289","text":"Area is inhabited by # additional Rogue Exile","type":"enchant"},{"id":"enchant.stat_4148328809","text":"Minions summoned by Your Sentinel Towers Leech #% of Damage as Life","type":"enchant"},{"id":"enchant.stat_1463704577","text":"Area contains an additional Tormented Graverobber","type":"enchant"},{"id":"enchant.stat_2862290356","text":"Area is Alluring","type":"enchant"},{"id":"enchant.stat_2392278281","text":"The First 3 Possessed Monsters have a #% chance to drop an additional Unique Item","type":"enchant"},{"id":"enchant.stat_1959158336","text":"Unique Boss has #% increased Life","type":"enchant"},{"id":"enchant.stat_3208939528","text":"#% increased Shield Charge Damage per Enemy Hit","type":"enchant"},{"id":"enchant.stat_3352207460","text":"Your Stone Gaze Towers have #% increased Petrification Delay","type":"enchant"},{"id":"enchant.stat_1439991839","text":"Monsters Imprisoned by Essences have a #% chance to contain a Remnant of Corruption","type":"enchant"},{"id":"enchant.stat_3169825208","text":"Enemies Petrified by Your Stone Gaze Towers take #% increased Damage","type":"enchant"},{"id":"enchant.stat_2563159607","text":"Your Smothering Towers also grant #% increased Damage","type":"enchant"},{"id":"enchant.stat_3789079511","text":"The First 3 Possessed Monsters have a #% chance to drop an additional Rusted Scarab","type":"enchant"},{"id":"enchant.stat_3094610721","text":"Your Seismic Towers have an additional Cascade","type":"enchant"},{"id":"enchant.stat_439316158","text":"Your Shock Nova Towers have #% increased effect of Shock","type":"enchant"},{"id":"enchant.stat_3354028437","text":"Your Lightning Storm Towers create Storms centred on Enemies","type":"enchant"},{"id":"enchant.stat_1498186316","text":"Caster Damage Modifiers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_3514984677","text":"Mana Modifiers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_2090693207","text":"Hits against Enemies Unnerved by you have #% increased Spell Critical Strike Chance","type":"enchant"},{"id":"enchant.stat_3849821286","text":"Your Lightning Storm Towers have #% increased explosion Area of Effect","type":"enchant"},{"id":"enchant.stat_931294424","text":"Has # White Sockets","type":"enchant"},{"id":"enchant.stat_1308141466","text":"Life Modifiers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_2702369635","text":"Grants #% to Lightning Resistance per 2% Quality","type":"enchant"},{"id":"enchant.stat_2677401098","text":"Quality does not increase Defences","type":"enchant"},{"id":"enchant.stat_1615727675","text":"Has no Green Sockets","type":"enchant"},{"id":"enchant.stat_3196512240","text":"Chaos Modifiers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_320043039","text":"Has no Red Sockets","type":"enchant"},{"id":"enchant.stat_3300369861","text":"Defence Modifiers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_3206904707","text":"Cold Modifiers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_3243861579","text":"Attribute Modifiers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_4166834934","text":"#% increased Ancestral Blademaster Totem Damage","type":"enchant"},{"id":"enchant.stat_1582465837","text":"Sigil of Power requires #% increased Mana Spent to gain a Stage","type":"enchant"},{"id":"enchant.stat_3639275092","text":"#% increased Attribute Requirements","type":"enchant"},{"id":"enchant.stat_1335369947","text":"Physical Modifiers have #% increased Effect","type":"enchant"},{"id":"enchant.stat_3837805260","text":"Has no Blue Sockets","type":"enchant"}]},{"label":"Crafted","entries":[{"id":"crafted.stat_3299347043","text":"# to maximum Life","type":"crafted"},{"id":"crafted.stat_1671376347","text":"#% to Lightning Resistance","type":"crafted"},{"id":"crafted.stat_387439868","text":"#% increased Elemental Damage with Attack Skills","type":"crafted"},{"id":"crafted.stat_4220027924","text":"#% to Cold Resistance","type":"crafted"},{"id":"crafted.stat_3372524247","text":"#% to Fire Resistance","type":"crafted"},{"id":"crafted.stat_4015621042","text":"#% increased Energy Shield (Local)","type":"crafted"},{"id":"crafted.stat_1859333175","text":"Can have up to 3 Crafted Modifiers","type":"crafted"},{"id":"crafted.stat_2250533757","text":"#% increased Movement Speed","type":"crafted"},{"id":"crafted.stat_1509134228","text":"#% increased Physical Damage","type":"crafted"},{"id":"crafted.stat_1050105434","text":"# to maximum Mana","type":"crafted"},{"id":"crafted.stat_2901986750","text":"#% to all Elemental Resistances","type":"crafted"},{"id":"crafted.stat_2974417149","text":"#% increased Spell Damage","type":"crafted"},{"id":"crafted.stat_2016708976","text":"#% to Quality","type":"crafted"},{"id":"crafted.stat_4277795662","text":"#% to Cold and Lightning Resistances","type":"crafted"},{"id":"crafted.stat_4052037485","text":"# to maximum Energy Shield (Local)","type":"crafted"},{"id":"crafted.stat_2154246560","text":"#% increased Damage","type":"crafted"},{"id":"crafted.stat_210067635","text":"#% increased Attack Speed (Local)","type":"crafted"},{"id":"crafted.stat_3441501978","text":"#% to Fire and Lightning Resistances","type":"crafted"},{"id":"crafted.stat_3032590688","text":"Adds # to # Physical Damage to Attacks","type":"crafted"},{"id":"crafted.stat_587431675","text":"#% increased Global Critical Strike Chance","type":"crafted"},{"id":"crafted.stat_3489782002","text":"# to maximum Energy Shield","type":"crafted"},{"id":"crafted.stat_1062208444","text":"#% increased Armour (Local)","type":"crafted"},{"id":"crafted.stat_1940865751","text":"Adds # to # Physical Damage (Local)","type":"crafted"},{"id":"crafted.stat_3261801346","text":"# to Dexterity","type":"crafted"},{"id":"crafted.stat_4080418644","text":"# to Strength","type":"crafted"},{"id":"crafted.stat_2915988346","text":"#% to Fire and Cold Resistances","type":"crafted"},{"id":"crafted.stat_2375316951","text":"#% increased Critical Strike Chance","type":"crafted"},{"id":"crafted.stat_328541901","text":"# to Intelligence","type":"crafted"},{"id":"crafted.stat_2482852589","text":"#% increased maximum Energy Shield","type":"crafted"},{"id":"crafted.stat_280731498","text":"#% increased Area of Effect","type":"crafted"},{"id":"crafted.stat_124859000","text":"#% increased Evasion Rating (Local)","type":"crafted"},{"id":"crafted.stat_378817135","text":"#% to Fire and Chaos Resistances","type":"crafted"},{"id":"crafted.stat_3393628375","text":"#% to Cold and Chaos Resistances","type":"crafted"},{"id":"crafted.stat_681332047","text":"#% increased Attack Speed","type":"crafted"},{"id":"crafted.stat_3079007202","text":"#% chance to Trigger a Socketed Spell when you Use a Skill","type":"crafted"},{"id":"crafted.stat_1754445556","text":"Adds # to # Lightning Damage to Attacks","type":"crafted"},{"id":"crafted.stat_2264295449","text":"# to Melee Strike Range","type":"crafted"},{"id":"crafted.stat_983749596","text":"#% increased maximum Life","type":"crafted"},{"id":"crafted.stat_677564538","text":"Non-Channelling Skills have # to Total Mana Cost","type":"crafted"},{"id":"crafted.stat_3556824919","text":"#% to Global Critical Strike Multiplier","type":"crafted"},{"id":"crafted.stat_2387423236","text":"Adds # to # Cold Damage","type":"crafted"},{"id":"crafted.stat_1334060246","text":"Adds # to # Lightning Damage","type":"crafted"},{"id":"crafted.stat_2451402625","text":"#% increased Armour and Evasion (Local)","type":"crafted"},{"id":"crafted.stat_4251717817","text":"#% increased Area Damage","type":"crafted"},{"id":"crafted.stat_3962278098","text":"#% increased Fire Damage","type":"crafted"},{"id":"crafted.stat_321077055","text":"Adds # to # Fire Damage","type":"crafted"},{"id":"crafted.stat_2063695047","text":"Gain #% of Non-Chaos Damage as extra Chaos Damage","type":"crafted"},{"id":"crafted.stat_1782086450","text":"#% faster start of Energy Shield Recharge","type":"crafted"},{"id":"crafted.stat_3321629045","text":"#% increased Armour and Energy Shield (Local)","type":"crafted"},{"id":"crafted.stat_1999113824","text":"#% increased Evasion and Energy Shield (Local)","type":"crafted"},{"id":"crafted.stat_4291461939","text":"Regenerate # Mana per second","type":"crafted"},{"id":"crafted.stat_2891184298","text":"#% increased Cast Speed","type":"crafted"},{"id":"crafted.stat_1589917703","text":"Minions deal #% increased Damage","type":"crafted"},{"id":"crafted.stat_1002362373","text":"#% increased Melee Damage","type":"crafted"},{"id":"crafted.stat_4067062424","text":"Adds # to # Cold Damage to Attacks","type":"crafted"},{"id":"crafted.stat_2551600084","text":"# to Level of Socketed AoE Gems","type":"crafted"},{"id":"crafted.stat_3465022881","text":"#% to Lightning and Chaos Resistances","type":"crafted"},{"id":"crafted.stat_3023957681","text":"#% chance to gain Onslaught for 4 seconds on Kill","type":"crafted"},{"id":"crafted.stat_538848803","text":"# to Strength and Dexterity","type":"crafted"},{"id":"crafted.stat_809229260","text":"# to Armour","type":"crafted"},{"id":"crafted.stat_2748665614","text":"#% increased maximum Mana","type":"crafted"},{"id":"crafted.stat_3736589033","text":"# to Total Mana Cost of Skills","type":"crafted"},{"id":"crafted.stat_737908626","text":"#% increased Critical Strike Chance for Spells","type":"crafted"},{"id":"crafted.stat_1573130764","text":"Adds # to # Fire Damage to Attacks","type":"crafted"},{"id":"crafted.stat_2421446548","text":"Channelling Skills have # to Total Mana Cost","type":"crafted"},{"id":"crafted.stat_2144192055","text":"# to Evasion Rating","type":"crafted"},{"id":"crafted.stat_658456881","text":"# to Minimum Frenzy Charges","type":"crafted"},{"id":"crafted.stat_1172810729","text":"#% chance to deal Double Damage","type":"crafted"},{"id":"crafted.stat_2231156303","text":"#% increased Lightning Damage","type":"crafted"},{"id":"crafted.stat_2301191210","text":"#% chance to Blind Enemies on hit","type":"crafted"},{"id":"crafted.stat_1652515349","text":"# to maximum number of Raised Zombies","type":"crafted"},{"id":"crafted.stat_1839076647","text":"#% increased Projectile Damage","type":"crafted"},{"id":"crafted.stat_2428829184","text":"# to maximum number of Skeletons","type":"crafted"},{"id":"crafted.stat_4055307827","text":"#% to Chaos Damage over Time Multiplier","type":"crafted"},{"id":"crafted.stat_1379411836","text":"# to all Attributes","type":"crafted"},{"id":"crafted.stat_3483999943","text":"#% chance to Avoid being Chilled","type":"crafted"},{"id":"crafted.stat_1519615863","text":"#% chance to cause Bleeding on Hit","type":"crafted"},{"id":"crafted.stat_310246444","text":"#% increased Damage while Leeching","type":"crafted"},{"id":"crafted.stat_3885634897","text":"#% chance to Poison on Hit (Local)","type":"crafted"},{"id":"crafted.stat_1310194496","text":"#% increased Global Physical Damage","type":"crafted"},{"id":"crafted.stat_3523867985","text":"#% increased Armour, Evasion and Energy Shield (Local)","type":"crafted"},{"id":"crafted.stat_114734841","text":"Flasks applied to you have #% increased Effect","type":"crafted"},{"id":"crafted.stat_4154259475","text":"# to Level of Socketed Support Gems","type":"crafted"},{"id":"crafted.stat_3706959521","text":"# to Minimum Endurance Charges","type":"crafted"},{"id":"crafted.stat_3484657501","text":"# to Armour (Local)","type":"crafted"},{"id":"crafted.stat_3325883026","text":"Regenerate # Life per second","type":"crafted"},{"id":"crafted.stat_3291658075","text":"#% increased Cold Damage","type":"crafted"},{"id":"crafted.stat_789117908","text":"#% increased Mana Regeneration Rate","type":"crafted"},{"id":"crafted.stat_691932474","text":"# to Accuracy Rating (Local)","type":"crafted"},{"id":"crafted.stat_3759663284","text":"#% increased Projectile Speed","type":"crafted"},{"id":"crafted.stat_736967255","text":"#% increased Chaos Damage","type":"crafted"},{"id":"crafted.stat_674553446","text":"Adds # to # Chaos Damage to Attacks","type":"crafted"},{"id":"crafted.stat_472520716","text":"#% of Damage taken gained as Mana over 4 seconds when Hit","type":"crafted"},{"id":"crafted.stat_3593843976","text":"#% of Physical Attack Damage Leeched as Life","type":"crafted"},{"id":"crafted.stat_1999711879","text":"# to Minimum Power Charges","type":"crafted"},{"id":"crafted.stat_474294393","text":"#% reduced Mana Cost of Skills","type":"crafted"},{"id":"crafted.stat_4064396395","text":"Attacks with this Weapon Penetrate #% Elemental Resistances","type":"crafted"},{"id":"crafted.stat_2947215268","text":"#% increased Damage during any Flask Effect","type":"crafted"},{"id":"crafted.stat_725880290","text":"#% chance to Impale Enemies on Hit with Attacks","type":"crafted"},{"id":"crafted.stat_2008255263","text":"#% increased Critical Strike Chance during Flask Effect","type":"crafted"},{"id":"crafted.stat_2379781920","text":"#% increased Elemental Damage if you've dealt a Critical Strike Recently","type":"crafted"},{"id":"crafted.stat_2672805335","text":"#% increased Attack and Cast Speed","type":"crafted"},{"id":"crafted.stat_3375935924","text":"Minions have #% increased Attack Speed","type":"crafted"},{"id":"crafted.stat_829382474","text":"# to Level of Socketed Melee Gems","type":"crafted"},{"id":"crafted.stat_967627487","text":"#% increased Damage over Time","type":"crafted"},{"id":"crafted.stat_2067062068","text":"Projectiles Pierce # additional Targets","type":"crafted"},{"id":"crafted.stat_53045048","text":"# to Evasion Rating (Local)","type":"crafted"},{"id":"crafted.stat_2176571093","text":"# to Level of Socketed Projectile Gems","type":"crafted"},{"id":"crafted.stat_770672621","text":"Minions have #% increased maximum Life","type":"crafted"},{"id":"crafted.stat_1535626285","text":"# to Strength and Intelligence","type":"crafted"},{"id":"crafted.stat_2831165374","text":"Adds # to # Lightning Damage to Spells","type":"crafted"},{"id":"crafted.stat_1177358866","text":"#% increased Movement Speed if you haven't been Hit Recently","type":"crafted"},{"id":"crafted.stat_573223427","text":"#% chance to gain Arcane Surge when you Kill an Enemy","type":"crafted"},{"id":"crafted.stat_2316658489","text":"# to Armour and Evasion Rating","type":"crafted"},{"id":"crafted.stat_3005472710","text":"#% chance to Avoid Elemental Ailments","type":"crafted"},{"id":"crafted.stat_536929014","text":"#% to Critical Strike Multiplier if you've Shattered an Enemy Recently","type":"crafted"},{"id":"crafted.stat_3031766858","text":"Shock nearby Enemies for # Seconds when you Focus","type":"crafted"},{"id":"crafted.stat_1514829491","text":"#% chance to Avoid being Frozen","type":"crafted"},{"id":"crafted.stat_205619502","text":"#% chance to Trigger Level 1 Blood Rage when you Kill an Enemy","type":"crafted"},{"id":"crafted.stat_2469416729","text":"Adds # to # Cold Damage to Spells","type":"crafted"},{"id":"crafted.stat_4000101551","text":"Minions have #% increased Cast Speed","type":"crafted"},{"id":"crafted.stat_3828613551","text":"#% to Quality of Socketed Gems","type":"crafted"},{"id":"crafted.stat_51994685","text":"#% increased Flask Life Recovery rate","type":"crafted"},{"id":"crafted.stat_2300185227","text":"# to Dexterity and Intelligence","type":"crafted"},{"id":"crafted.stat_2908886986","text":"#% chance to deal Double Damage while Focussed","type":"crafted"},{"id":"crafted.stat_2309614417","text":"#% chance to Freeze","type":"crafted"},{"id":"crafted.stat_1896971621","text":"#% increased Mine Throwing Speed","type":"crafted"},{"id":"crafted.stat_3336890334","text":"Adds # to # Lightning Damage (Local)","type":"crafted"},{"id":"crafted.stat_709508406","text":"Adds # to # Fire Damage (Local)","type":"crafted"},{"id":"crafted.stat_1004011302","text":"#% increased Cooldown Recovery Rate","type":"crafted"},{"id":"crafted.stat_3917489142","text":"#% increased Rarity of Items found","type":"crafted"},{"id":"crafted.stat_1133016593","text":"Adds # to # Fire Damage to Spells","type":"crafted"},{"id":"crafted.stat_1452809865","text":"#% increased Flask Charges gained","type":"crafted"},{"id":"crafted.stat_1335054179","text":"#% chance to Ignite","type":"crafted"},{"id":"crafted.stat_3741323227","text":"#% increased Flask Effect Duration","type":"crafted"},{"id":"crafted.stat_314741699","text":"#% increased Attack Speed while a Rare or Unique Enemy is Nearby","type":"crafted"},{"id":"crafted.stat_1037193709","text":"Adds # to # Cold Damage (Local)","type":"crafted"},{"id":"crafted.stat_1538773178","text":"#% chance to Shock","type":"crafted"},{"id":"crafted.stat_289885185","text":"Chaos Skills have #% increased Skill Effect Duration","type":"crafted"},{"id":"crafted.stat_4262448838","text":"#% chance to Avoid being Stunned","type":"crafted"},{"id":"crafted.stat_174664100","text":"Minions have #% increased Movement Speed","type":"crafted"},{"id":"crafted.stat_782230869","text":"#% increased Effect of Non-Damaging Ailments","type":"crafted"},{"id":"crafted.stat_311641062","text":"#% chance for Flasks you use to not consume Charges","type":"crafted"},{"id":"crafted.stat_2523334466","text":"Adds # to # Chaos Damage if you've dealt a Critical Strike Recently","type":"crafted"},{"id":"crafted.stat_67280387","text":"Gain #% of Maximum Life as Extra Maximum Energy Shield","type":"crafted"},{"id":"crafted.stat_4223377453","text":"#% increased Brand Attachment range","type":"crafted"},{"id":"crafted.stat_1533563525","text":"#% of Physical Damage Converted to Fire Damage","type":"crafted"},{"id":"crafted.stat_3500911418","text":"Regenerate #% of Life per second during any Flask Effect","type":"crafted"},{"id":"crafted.stat_2312652600","text":"#% Chance to avoid being Stunned during Flask Effect","type":"crafted"},{"id":"crafted.stat_3240769289","text":"#% of Physical Damage Converted to Lightning Damage","type":"crafted"},{"id":"crafted.stat_803737631","text":"# to Accuracy Rating","type":"crafted"},{"id":"crafted.stat_30642521","text":"You can apply one fewer Curse","type":"crafted"},{"id":"crafted.stat_2022851697","text":"You have Vaal Pact while Focussed","type":"crafted"},{"id":"crafted.stat_3182498570","text":"#% increased Movement Speed during Flask effect","type":"crafted"},{"id":"crafted.stat_2866361420","text":"#% increased Armour","type":"crafted"},{"id":"crafted.stat_1149326139","text":"Cannot roll Caster Modifiers","type":"crafted"},{"id":"crafted.stat_1539825365","text":"# to Armour during Soul Gain Prevention","type":"crafted"},{"id":"crafted.stat_3374165039","text":"#% increased Totem Placement speed","type":"crafted"},{"id":"crafted.stat_3762412853","text":"Attacks with this Weapon Penetrate #% Chaos Resistance","type":"crafted"},{"id":"crafted.stat_3324747104","text":"#% of Damage Leeched as Life while Focussed","type":"crafted"},{"id":"crafted.stat_3992439283","text":"#% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby","type":"crafted"},{"id":"crafted.stat_871270154","text":"Regenerate #% of Life per second during Flask Effect","type":"crafted"},{"id":"crafted.stat_836936635","text":"Regenerate #% of Life per second","type":"crafted"},{"id":"crafted.stat_1950806024","text":"#% to Cold Damage over Time Multiplier","type":"crafted"},{"id":"crafted.stat_2238019079","text":"Regenerate # Energy Shield per second while a Rare or Unique Enemy is Nearby","type":"crafted"},{"id":"crafted.stat_2034658008","text":"#% increased Damage per Power Charge","type":"crafted"},{"id":"crafted.stat_1583385065","text":"Non-Vaal Skills deal #% increased Damage during Soul Gain Prevention","type":"crafted"},{"id":"crafted.stat_3382807662","text":"#% to Fire Damage over Time Multiplier","type":"crafted"},{"id":"crafted.stat_2133341901","text":"#% of Physical Damage Converted to Cold Damage","type":"crafted"},{"id":"crafted.stat_4126210832","text":"Hits can't be Evaded","type":"crafted"},{"id":"crafted.stat_3032585258","text":"#% chance to gain a Frenzy Charge on Critical Strike","type":"crafted"},{"id":"crafted.stat_3237948413","text":"#% of Physical Attack Damage Leeched as Mana","type":"crafted"},{"id":"crafted.stat_3824033729","text":"#% of Damage Taken from Hits is Leeched as Life during Flask Effect","type":"crafted"},{"id":"crafted.stat_2106365538","text":"#% increased Evasion Rating","type":"crafted"},{"id":"crafted.stat_902747843","text":"#% increased Damage per Frenzy Charge","type":"crafted"},{"id":"crafted.stat_4122424929","text":"Cannot roll Attack Modifiers","type":"crafted"},{"id":"crafted.stat_3515686789","text":"#% increased Damage per Endurance Charge","type":"crafted"},{"id":"crafted.stat_3143208761","text":"#% increased Attributes","type":"crafted"},{"id":"crafted.stat_2915373966","text":"Gain #% of Cold Damage as Extra Chaos Damage","type":"crafted"},{"id":"crafted.stat_2161689853","text":"#% increased Rarity of Items Dropped by Slain Rare or Unique Enemies","type":"crafted"},{"id":"crafted.stat_2062792091","text":"#% chance to Trigger Socketed Spells when you Focus","type":"crafted"},{"id":"crafted.stat_720398262","text":"#% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention","type":"crafted"},{"id":"crafted.stat_2402136583","text":"Gain #% of Lightning Damage as Extra Chaos Damage","type":"crafted"},{"id":"crafted.stat_3267282390","text":"#% increased Effect of Fortify on you while Focussed","type":"crafted"},{"id":"crafted.stat_2992263716","text":"Recover #% of Mana and Energy Shield when you Focus","type":"crafted"},{"id":"crafted.stat_1349659520","text":"Your Critical Strike Chance is Lucky while Focussed","type":"crafted"},{"id":"crafted.stat_1572897579","text":"You have Onslaught during Soul Gain Prevention","type":"crafted"},{"id":"crafted.stat_1840751341","text":"#% increased Duration of Ailments you inflict while Focussed","type":"crafted"},{"id":"crafted.stat_118398748","text":"#% increased Trap Throwing Speed","type":"crafted"},{"id":"crafted.stat_696707743","text":"#% chance to Dodge Spell Hits","type":"crafted"},{"id":"crafted.stat_1468606528","text":"10% Chance to Trigger Level 10 Summon Spectral Wolf on Kill","type":"crafted"},{"id":"crafted.stat_3342989455","text":"#% of Physical Damage from Hits taken as Fire Damage","type":"crafted"},{"id":"crafted.stat_1101403182","text":"#% reduced Damage taken from Damage Over Time","type":"crafted"},{"id":"crafted.stat_4253454700","text":"#% Chance to Block (Shields)","type":"crafted"},{"id":"crafted.stat_3251705960","text":"#% increased Rarity of Items found during Flask Effect","type":"crafted"},{"id":"crafted.stat_2590156965","text":"#% chance to Dodge Attack Hits while Focussed","type":"crafted"},{"id":"crafted.stat_1423639565","text":"Minions have #% to all Elemental Resistances","type":"crafted"},{"id":"crafted.stat_2137912951","text":"#% increased Mine Damage","type":"crafted"},{"id":"crafted.stat_683273571","text":"#% increased Mana Cost of Skills during Flask Effect","type":"crafted"},{"id":"crafted.stat_849152640","text":"Skills Cost no Mana while Focussed","type":"crafted"},{"id":"crafted.stat_2628163981","text":"#% increased Attack and Cast Speed while Focussed","type":"crafted"},{"id":"crafted.stat_1599775597","text":"Gain #% of Fire Damage as Extra Chaos Damage","type":"crafted"},{"id":"crafted.stat_561307714","text":"#% Chance to Block Spell Damage","type":"crafted"},{"id":"crafted.stat_3319896421","text":"Gain #% of Physical Damage as Extra Chaos Damage","type":"crafted"},{"id":"crafted.stat_1588539856","text":"#% of Damage is taken from Mana before Life while Focussed","type":"crafted"},{"id":"crafted.stat_1785942004","text":"#% Chance to Trigger Level 18 Summon Spectral Wolf on Kill","type":"crafted"},{"id":"crafted.stat_2941585404","text":"#% increased Trap Damage","type":"crafted"},{"id":"crafted.stat_3753650187","text":"#% additional Physical Damage Reduction while Focussed","type":"crafted"},{"id":"crafted.stat_3922006600","text":"Socketed Gems are Supported by Level # Blood Magic","type":"crafted"},{"id":"crafted.stat_2174134106","text":"Warcries cannot Exert Travel Skills","type":"crafted"},{"id":"crafted.stat_1412217137","text":"#% increased Flask Mana Recovery rate","type":"crafted"},{"id":"crafted.stat_1653010703","text":"#% to Non-Ailment Chaos Damage over Time Multiplier","type":"crafted"},{"id":"crafted.stat_1766730250","text":"You are Immune to Ailments while Focussed","type":"crafted"},{"id":"crafted.stat_2353576063","text":"#% increased Effect of your Curses","type":"crafted"},{"id":"crafted.stat_2530372417","text":"#% Chance to Block Attack Damage","type":"crafted"},{"id":"crafted.stat_3244118730","text":"#% of Evasion Rating is Regenerated as Life per second while Focussed","type":"crafted"},{"id":"crafted.stat_3500359417","text":"Minions Recover #% of their Life when you Focus","type":"crafted"},{"id":"crafted.stat_80079005","text":"#% of Lightning Damage Leeched as Life","type":"crafted"},{"id":"crafted.stat_350598685","text":"# to Weapon Range","type":"crafted"},{"id":"crafted.stat_3848282610","text":"#% of Fire Damage Leeched as Life","type":"crafted"},{"id":"crafted.stat_2879723104","text":"Prefixes Cannot Be Changed","type":"crafted"},{"id":"crafted.stat_3999401129","text":"#% of Cold Damage Leeched as Life","type":"crafted"},{"id":"crafted.stat_429867172","text":"# to maximum number of Summoned Totems","type":"crafted"},{"id":"crafted.stat_2797971005","text":"# Life gained for each Enemy hit by your Attacks","type":"crafted"},{"id":"crafted.stat_3464137628","text":"Suffixes Cannot Be Changed","type":"crafted"},{"id":"crafted.stat_3836017971","text":"Light Radius is based on Energy Shield instead of Life","type":"crafted"},{"id":"crafted.stat_2477381238","text":"#% reduced Enemy Block Chance","type":"crafted"},{"id":"crafted.stat_301104070","text":"Flasks gain a Charge when you take a Critical Strike","type":"crafted"},{"id":"crafted.stat_1435748744","text":"Curse Skills have #% increased Skill Effect Duration","type":"crafted"},{"id":"crafted.stat_3767873853","text":"Reflects # Physical Damage to Melee Attackers","type":"crafted"},{"id":"crafted.stat_1519474779","text":"#% increased Effect of Non-Damaging Ailments on you","type":"crafted"},{"id":"crafted.stat_1316278494","text":"#% increased Warcry Speed","type":"crafted"},{"id":"crafted.stat_3909846940","text":"Item drops on Death if Equipped by an Animated Guardian","type":"crafted"},{"id":"crafted.stat_1578737937","text":"Attack Projectiles Return to you from final Target","type":"crafted"},{"id":"crafted.stat_2166444903","text":"#% Chance to Block Attack Damage while Dual Wielding","type":"crafted"},{"id":"crafted.stat_1702195217","text":"#% Chance to Block Attack Damage","type":"crafted"},{"id":"crafted.stat_832404842","text":"#% reduced Enemy Stun Threshold with this Weapon","type":"crafted"},{"id":"crafted.stat_1445684883","text":"Reflects # to # Physical Damage to Attackers on Block","type":"crafted"},{"id":"crafted.stat_2517001139","text":"#% increased Stun Duration on Enemies","type":"crafted"},{"id":"crafted.stat_3485067555","text":"#% increased Chill Duration on Enemies","type":"crafted"},{"id":"crafted.stat_1073942215","text":"#% increased Freeze Duration on Enemies","type":"crafted"},{"id":"crafted.stat_3668351662","text":"#% increased Shock Duration on Enemies","type":"crafted"},{"id":"crafted.stat_1086147743","text":"#% increased Ignite Duration on Enemies","type":"crafted"},{"id":"crafted.stat_1871765599","text":"#% chance to Avoid being Shocked","type":"crafted"},{"id":"crafted.stat_1783006896","text":"#% chance to Avoid being Ignited","type":"crafted"},{"id":"crafted.stat_238314698","text":"Cannot roll Modifiers with Required Level above #","type":"crafted"},{"id":"crafted.stat_2362265695","text":"#% chance to Avoid being Knocked Back","type":"crafted"}]},{"label":"Veiled","entries":[{"id":"veiled.mod_63099","text":"of the Veil","type":"veiled"},{"id":"veiled.mod_65000","text":"Veiled","type":"veiled"},{"id":"veiled.mod_5769","text":"Elreon's Veiled","type":"veiled"},{"id":"veiled.mod_3258","text":"Leo's Veiled","type":"veiled"},{"id":"veiled.mod_48007","text":"of Aisling's Veil","type":"veiled"},{"id":"veiled.mod_48408","text":"of Riker's Veil","type":"veiled"},{"id":"veiled.mod_47933","text":"Vorici's Veiled","type":"veiled"},{"id":"veiled.mod_11536","text":"of Janus' Veil","type":"veiled"},{"id":"veiled.mod_44855","text":"Korell's Veiled","type":"veiled"},{"id":"veiled.mod_3975","text":"of Hillock's Veil","type":"veiled"},{"id":"veiled.mod_8541","text":"Tora's Veiled","type":"veiled"},{"id":"veiled.mod_39023","text":"Haku's Veiled","type":"veiled"},{"id":"veiled.mod_65163","text":"of Cameria's Veil","type":"veiled"},{"id":"veiled.mod_6779","text":"Guff's Veiled","type":"veiled"},{"id":"veiled.mod_63772","text":"Catarina's Veiled","type":"veiled"},{"id":"veiled.mod_38872","text":"Gravicius' Veiled","type":"veiled"},{"id":"veiled.mod_62955","text":"of Jorgin's Veil","type":"veiled"},{"id":"veiled.mod_14269","text":"Vagan's Veiled","type":"veiled"},{"id":"veiled.mod_6131","text":"Rin's Veiled","type":"veiled"},{"id":"veiled.mod_55787","text":"It That Fled's Veiled","type":"veiled"}]},{"label":"Monster","entries":[{"id":"monster.metamorph_reward_currency","text":"Drops additional Currency Items (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_rare_armour","text":"Drops additional Rare Armour (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_rare_weapons","text":"Drops additional Rare Weapons (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_rare_jewellery","text":"Drops additional Rare Jewellery (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_rare_weapon","text":"Drops a Rare Weapon (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_map","text":"Drops a Map Item (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_map_fragments","text":"Drops additional Map Fragments (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_maps","text":"Drops additional Maps (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_rare_talismans","text":"Drops additional Rare Talismans (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_catalysts","text":"Drops additional Catalysts (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_perandus_coins","text":"Drops additional Perandus Coins (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_uniques","text":"Drops additional Unique Items (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_veiled_armour","text":"Drops additional Veiled Armour (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_incursion_weapon","text":"Drops an Incursion Weapon (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_veiled_weapon","text":"Drops a Veiled Weapon (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_essences","text":"Drops additional Essences (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_abyssal_jewel","text":"Drops an Abyssal Jewel (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_divination_cards","text":"Drops additional Divination Cards (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_unique","text":"Drops a Unique Item (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_silver_coins","text":"Drops additional Silver Coins (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_incursion_jewellery","text":"Drops additional Incursion Jewellery (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_quality_gems","text":"Drops additional Quality Gems (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_incursion_armour","text":"Drops additional Incursion Armour (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_currency_shards","text":"Drops additional Currency Shards (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_jewels","text":"Drops additional Jewels (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_legion_incubators","text":"Drops additional Legion Incubators (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_enchanted_helmet","text":"Drops an Enchanted Helmet (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_fossils","text":"Drops additional Fossils (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_prophecies","text":"Drops Itemised Prophecies (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_elder_armour","text":"Drops additional Elder Armour (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_shaper_armour","text":"Drops additional Shaper Armour (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_abyssal_jewels","text":"Drops additional Abyssal Jewels (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_shaper_weapon","text":"Drops a Shaper Weapon (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_shaper_or_elder_jewellery","text":"Drops additional Shaper or Elder Jewellery (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_valuable_currency_shards","text":"Drops additional valuable Currency Shards (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_unique_weapon","text":"Drops a Unique Weapon (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_unique_jewellery","text":"Drops additional Unique Jewellery (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_unique_armour","text":"Drops additional Unique Armour (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_breach_splinters","text":"Drops additional Breach Splinters (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_enchanted_boots","text":"Drops Enchanted Boots (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_prophecy","text":"Drops an Itemised Prophecy (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_harbinger_currency","text":"Drops additional Harbinger Currency (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_atlas_jewellery","text":"Drops additional Atlas Jewellery (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_blight_oils","text":"Drops additional Blight Oils (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_veiled_jewellery","text":"Drops additional Veiled Jewellery (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_polished_scarabs","text":"Drops additional Polished Scarabs (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_enchanted_gloves","text":"Drops Enchanted Gloves (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_elder_weapon","text":"Drops an Elder Weapon (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_rusted_scarabs","text":"Drops additional Rusted Scarabs (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_offering_to_the_goddess","text":"Drops an Offering to the Goddess (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_stygian_vise","text":"Drops a Stygian Vise (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_blighted_map","text":"Drops a Blighted Map (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_breachstone","text":"Drops a Breachstone (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_valuable_gem","text":"Drops a valuable Gem (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_league_unique","text":"Drops a League-specific Unique Item (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_gilded_scarabs","text":"Drops additional Gilded Scarabs (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_30_quality_weapon","text":"Drops a 30% Quality Weapon (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_beachhead_unique_map","text":"Drops a Beachhead Unique Map (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_breach_blessing","text":"Drops a Breach Blessing (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_6_linked_weapon","text":"Drops a 6-linked Weapon (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_6_linked_unique_body_armour","text":"Drops a 6-linked Unique Body Armour (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_resonator","text":"Drops a Resonator (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_abyss_unique","text":"Drops an Abyss Unique Item (\u00d7#)","type":"monster"},{"id":"monster.metamorph_reward_talisman_unique","text":"Drops a Talisman Unique Item (\u00d7#)","type":"monster"}]},{"label":"Delve","entries":[{"id":"delve.delve_scorched_fossil","text":"More Fire modifiers; No Cold modifiers (Scorched Fossil)","type":"delve"},{"id":"delve.delve_frigid_fossil","text":"More Cold modifiers; No Fire modifiers (Frigid Fossil)","type":"delve"},{"id":"delve.delve_metallic_fossil","text":"More Lightning modifiers; No Physical modifiers (Metallic Fossil)","type":"delve"},{"id":"delve.delve_jagged_fossil","text":"More Physical modifiers; No Chaos modifiers (Jagged Fossil)","type":"delve"},{"id":"delve.delve_aberrant_fossil","text":"More Chaos modifiers; No Lightning modifiers (Aberrant Fossil)","type":"delve"},{"id":"delve.delve_pristine_fossil","text":"More Life modifiers; No Armour, Energy Shield or Evasion modifiers (Pristine Fossil)","type":"delve"},{"id":"delve.delve_dense_fossil","text":"More Armour, Energy Shield or Evasion modifiers; No Life modifiers (Dense Fossil)","type":"delve"},{"id":"delve.delve_corroded_fossil","text":"More Poison or Bleeding modifiers; No Elemental modifiers (Corroded Fossil)","type":"delve"},{"id":"delve.delve_prismatic_fossil","text":"More Elemental modifiers; No Poison or Bleeding modifiers (Prismatic Fossil)","type":"delve"},{"id":"delve.delve_aetheric_fossil","text":"More Caster modifiers; Fewer Attack modifiers (Aetheric Fossil)","type":"delve"},{"id":"delve.delve_serrated_fossil","text":"More Attack modifiers; Fewer Caster modifiers (Serrated Fossil)","type":"delve"},{"id":"delve.delve_lucent_fossil","text":"More Mana modifiers; No Speed modifiers (Lucent Fossil)","type":"delve"},{"id":"delve.delve_shuddering_fossil","text":"More Speed modifiers; No Mana modifiers (Shuddering Fossil)","type":"delve"},{"id":"delve.delve_bound_fossil","text":"More Minion and Aura modifiers (Bound Fossil)","type":"delve"},{"id":"delve.delve_perfect_fossil","text":"Improved Quality (Perfect Fossil)","type":"delve"},{"id":"delve.delve_enchanted_fossil","text":"Has a Labyrinth Enchantment (Enchanted Fossil)","type":"delve"},{"id":"delve.delve_encrusted_fossil","text":"More sockets; Can have white sockets (Encrusted Fossil)","type":"delve"},{"id":"delve.delve_faceted_fossil","text":"More Socketed Gem Level modifiers (Faceted Fossil)","type":"delve"},{"id":"delve.delve_bloodstained_fossil","text":"Has a Vaal modifier (Bloodstained Fossil)","type":"delve"},{"id":"delve.delve_hollow_fossil","text":"Has an Abyssal socket (Hollow Fossil)","type":"delve"},{"id":"delve.delve_fractured_fossil","text":"Creates a mirrored copy (Fractured Fossil)","type":"delve"},{"id":"delve.delve_glyphic_fossil","text":"Has a Corrupt Essence modifier (Glyphic Fossil)","type":"delve"},{"id":"delve.delve_tangled_fossil","text":"Can have any Fossil modifiers (Tangled Fossil)","type":"delve"},{"id":"delve.delve_sanctified_fossil","text":"Numeric modifier values are lucky; High Level modifiers are more common (Sanctified Fossil)","type":"delve"},{"id":"delve.delve_gilded_fossil","text":"Item is overvalued by vendors (Gilded Fossil)","type":"delve"}]}] \ No newline at end of file